:root{
    --main-color:#0f1215;
    --white:#fff;
    --blue:#d0e4ff;
    --gray:#798596;

}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}
/*================ NAVBAR ================*/
.offcanvas{
  background-color: #0b6f77 !important;
}
.navbar-brand{
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo{
    width: 280px ;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.ljm-new{
     width:38%;
     margin: 0 auto;
}
@media (max-width: 991px){
    .navbar-logo{
        width: 160px;
    }
    .ljm-new{
     width: 100%;
     text-align: center;
}
}

@media (max-width: 576px){
    .navbar-logo{
        width: 160px;
    }
}
#nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{
    background:transparent;
    padding:20px 0;
    transition:.4s ease;
}

.navbar.scrolled{
    background: #0b6f77;
    padding:12px 0;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

#two-tab,#three-tab{
  font-size: 10px;
}
.carpet {
  font-size: 12px;
}
.nav-link{
    color:#fbfafa !important;
    font-weight:600;
}

.nav-link:hover{
    color:#cba652;
}

.property-btn{
    background:#d2b06c;
    color:#fff;
    padding:14px 28px;
    font-weight:600;
}
/* ===== wrapper ===== */
.wrapper {
  width: 100%;
  overflow-x: hidden;
}

.hero-section {
  height: 100vh;
  position: relative;
}

.video-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;  
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); 
  pointer-events: none;
}

/* ===== about-us ===== */
.about-us {
  /* min-height: 120vh; */
  background: #ffffff;
  position: relative;
  z-index: 2;
  padding: 100px 0px;
  
}
.concept {
  position: absolute;
  top: 25%;
  left: 2%;
  text-align:start;
  color: #fff;
  z-index: 2;
  width: 100%;
}

.concept h1 {
  font-size: 45px;
font-family: "Playfair Display", serif;
  letter-spacing: 2px;
  line-height: 1.2;
   text-shadow: 
    0px 2px 4px rgba(0,0,0,0.6),
    0px 8px 20px rgba(0,0,0,0.5),
    0px 0px 30px rgba(255,255,255,0.15);
}

.concept p {
  font-size: 18px;
  margin-top: 15px;
  opacity: 0.9;
}
.hero-title {
  perspective: 800px;
  overflow: hidden;
  /* font-style: italic; */
}

.hero-title .char {
  display: inline-block;
  transform-origin: 50% 100%;
}
.hero-sub{
  font-size: 14px;
}
@media (max-width: 992px) {
    
.hero-section {
  height: 90vh;
  position: relative;
}

.video-wrapper {
  height: 90vh;
  width: 100%;
  position: relative;
  overflow: hidden;  
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  /* .about-us {
    padding: 60px 40px;
  } */
}

@media (max-width: 576px) {
  
  .hero-section,
  .video-wrapper {
    /* height:70vh; */
  }

  .about-us {
    padding: 50px 0px;
   
  }
  .concept h1 {
  font-size: 25px;
  
}

.concept p {
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.9;
}
}


/* -------------------------- about us ------------- */
.about-us{

  background: #fff;
  color: #000;
  overflow: hidden;
}
p{
  text-align: justify;
}
.about-title{
  font-size: 30px;
    font-family: "Playfair Display", serif;
     text-align: center;
}
.about-container{
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE WRAPPER */
.about-img{
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
}


/* MOBILE */
@media(max-width:768px){
  .about-container{
    flex-direction: column;
  }

  .about-img,
  .about-content{
    width: 100%;
  }
}
/* FOOTER BASE */
.footer {
  background: radial-gradient(circle at top, #111 0%, #050507 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}



/* KEEP CONTENT ABOVE */
.footer .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
.footer p {
  color: #ccc;
  font-size: 14px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  position: relative;
  color: #aaa;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #c5a46d;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #fff;
}

.footer-links li:hover::after {
  width: 90px;
}

/* FORM */
.footer-form {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(15px);
}

.footer-form input {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
}

.footer-form input::placeholder {
  color: #aaa;
}

/* BUTTON */
.footer-form button {
  background: linear-gradient(135deg, #c5a46d, #a07d4a);
  border: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197,164,109,0.3);
}

/* SOCIAL */
.social-icons i {
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #444;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #c5a46d;
  color: #000;
  box-shadow: 0 0 12px rgba(197,164,109,0.6);
}
.brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 48px;
    padding: 0 30px;
    background: #0b6f77;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brochure-btn:hover {
    background: #095b62;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 111, 119, 0.25);
}
.appartment{
    background-color: #F3F7F8;
}
@media(min-width:768px){
    .about-title{
        font-size: 60px;
     font-family: "Playfair Display", serif;
}
.about-tag {
    font-size: 20px;
}
}
/* floor plan===================== */
.floor-plan-section{
    background:#f3f5f7;
}

.floor-tabs{
    margin-bottom:-2px;
}

.floor-tabs .nav-link{
    background:#ececec;
    border:none;
    border-radius:8px 8px 0 0;
    color:#777;
    font-weight:700;
    text-transform:uppercase;
    padding:15px 35px;
    margin-right:8px;
    transition:.3s;
}

.floor-tabs .nav-link.active{
    background:#fff;
    color:#333;
}

.floor-content{
    background:#fff;
    border-radius:0 10px 10px 10px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.floor-box{
    text-align:center;
}

.floor-box img{
    max-width:100%;
    width:700px;
    margin:auto;
    display:block;
}

.floor-box h4{
    margin-top:20px;
    color:#666;
    font-weight:600;
    font-size:24px;
}

.floor-box span{
    color:#444;
    font-weight:700;
}
.about-text2{
  width: 100%;
}
@media(max-width:768px){

.floor-tabs .nav-link{
    padding:12px 15px;
    font-size:14px;
}

.floor-box h4{
    font-size:18px;
}

}

@media (min-width:991px) {
    
  .concept {
  position: absolute;
  top: 25%;
  left: 2%;
  text-align:start;
  color: #fff;
  z-index: 2;
  width: 50%;
}
  .hero-sub{
  font-size: 20px;
}
  .about-text2{
  width: 80%;
}
.carpet {
  font-size: 16px;
}
.about-title{
  text-align: start;
}
p{
  text-align: start;
}
.about-title3{
  font-family: "Playfair Display", serif;
  font-size: 45px;
}
#two-tab,#three-tab{
  font-size: 14px;
}
}

/* amenities================================ */
.amenities-section{
    background:#fff;
}

.amenity-card{
    overflow:hidden;
    border-radius:12px;
    height:100%;
}

.amenity-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    transition:.5s;
    display:block;
}

.amenity-card:hover img{
    transform:scale(1.08);
}

/* Bottom Box */

.amenities-info{

    background:#f7f7f7;
    border-radius:12px;
    padding:18px 25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.amenity-item{

    display:flex;
    align-items:center;
    gap:15px;

    flex:1;
    justify-content:center;
}

.amenity-item img{

    width:42px;
    height:42px;
    object-fit:contain;
}

.amenity-item span{

    font-size:16px;
    color:#666;
    font-weight:500;
}

.divider{

    width:1px;
    height:42px;
    background:#d8d8d8;
}

.circle{

    width:48px;
    height:48px;

    border:3px solid #777;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;
    color:#666;
    font-weight:300;
}

/*--------------- Tablet ----------------*/

@media(max-width:991px){

.amenity-card img{

    height:200px;
}

.amenities-info{

    justify-content:center;
    gap:30px;
}

.amenity-item{

    flex:0 0 calc(50% - 20px);
}

.divider{

    display:none;
}

}

/*--------------- Mobile ----------------*/

@media(max-width:576px){

.amenity-card img{

    height:200px;
}

.amenities-info{

    padding:20px;
}

.amenity-item{

    flex:100%;
    justify-content:flex-start;
}

.amenity-item span{

    font-size:18px;
}

.amenity-item img{

    width:36px;
    height:36px;
}

.circle{

    width:40px;
    height:40px;
    font-size:28px;
}

}
.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Overlay */

.gallery-card .overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,0) 100%
    );

    opacity: 0;
    transform: translateY(30px);
    transition: .4s ease;
}

.gallery-card .overlay h4{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-card .overlay p{
    color: #ddd;
    font-size: 16px;
    margin: 0;
}

/* Hover */

.gallery-card:hover img{
    transform: scale(1.08);
}

.gallery-card:hover .overlay{
    opacity: 1;
    transform: translateY(0);
}

/* contact section================== */
.contact-section{
    background:#fff;
    border-top: 2px solid rgb(236, 234, 234);
    padding: 100px 0px;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:#222;
}

.map-wrapper{
    border-radius:10px;
    overflow:hidden;
    height:100%;
}

.map-wrapper iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

.custom-input{
    height:52px;
    border-radius:0;
    border:1px solid #ddd;
    box-shadow:none;
    font-size:15px;
}

.custom-input:focus{
    border-color:#0b7b8d;
    box-shadow:none;
}

.submit-btn{
    background:#0b7b8d;
    color:#fff;
    border-radius:30px;
    padding:10px 30px;
    font-weight:600;
    transition:.3s;
}

.submit-btn:hover{
    background:#065c69;
    color:#fff;
}

.contact-info p{
    margin-bottom:10px;
    color:#555;
    font-size:15px;
}

.contact-info a{
    color:#0b7b8d;
    text-decoration:none;
}

.contact-info a:hover{
    text-decoration:underline;
}

/* ---------- Large Tablet ---------- */

@media (max-width:991px){

.section-title{
    font-size:40px;
}

.map-wrapper iframe{
    height:350px;
}

.contact-info{
    text-align:center;
}

.submit-btn{
    width:100%;
}

}

/* ---------- Mobile ---------- */

@media (max-width:767px){

.contact-section{
    padding:60px 0;
}

.section-title{
    font-size:34px;
}

.map-wrapper iframe{
    height:280px;
}

.custom-input{
    height:48px;
    font-size:14px;
}

.contact-info p{
    font-size:14px;
    line-height:1.7;
}

.form-check-label{
    font-size:13px;
}

}

/* ---------- Small Mobile ---------- */

@media (max-width:575px){

.section-title{
    font-size:30px;
}

.map-wrapper iframe{
    height:240px;
}

.submit-btn{
    padding:12px;
}

}
/* ================ fancy box ================= */
.fancybox__container .fancybox__content{
    max-width: 1200px !important;
    width: 90vw;
    border-radius: 16px;
    overflow: hidden;
}

.fancybox__content img{
    width:100%;
    height:auto;
}
.whatsapp {
            width: 90px;
            height: 90px;
            border-radius: 30px;
            color: #fff;
            position: fixed;
            right: 20px;
            bottom: 20px;
            padding: 6px 16px;
            font-size: 2rem;
            z-index: 996;
            display: flex;
            justify-content: center;
            align-items: center;
        }
/* .fancybox__content img{
    width: 1000px !important;
    height: 600px !important;
    object-fit: cover;
    border-radius: 12px;
} */

.modal-content{

    border-radius:20px;
    border:none;
}

.form-control,
.form-select{

    height:40px;
    border-radius:12px;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{

    border-color:#0b7b84;
    box-shadow:none;
}

.btn-success{

    background:#0b7b84;
    border:none;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
}

.btn-success:hover{

    background:#06626b;
}