#about {
  padding: 80px 0;
}

#about .meet {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

#about .welcome {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #b3e5dc;
}

#about .write-up {
  font-size: 1rem;
  line-height: 1.7;
  color: #e9e9e9;
}

#about img {
  border-radius: 20px;
}

@media (max-width: 991px) {
  #about .meet {
    text-align: center;
    font-size: 1.6rem;
  }
  #about .write-up {
    text-align: center;
  }
  #about .download-brochure {
    margin: 0 auto;
    display: block;
  }
}




/* Hover Effects for Amenities */
    #amenities .amenity-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-color: #d0d0d0;
    }
    #amenities .amenity-card:hover img {
      transform: scale(1.1);
    }


    /* Gallery Hover Effects */
    #gallery .gallery-card:hover img {
      transform: scale(1.08);
    }
    #gallery .gallery-card:hover .overlay {
      opacity: 1;
    }
    @media (max-width: 768px) {
      #gallery h2 {
        font-size: 1.6rem;
      }
    }

    
    #location .map-wrapper:hover .lct-img {
    transform: scale(1.03);
  }
  #location .map-wrapper:hover .overlay {
    opacity: 1;
  }
  #toggle-master {
    transition: transform 0.3s ease;
  }
  #toggle-master.active {
    transform: rotate(180deg);
  }

  #floorplan .animated-arrow {
    transition: transform 0.3s ease;
  }
  #floorplan .animated-arrow.active {
    transform: rotate(180deg);
  }
  #floorplan .floor-image-wrapper img:hover {
    transform: scale(1.02);
    filter: blur(1px);
  }
  @media (max-width: 991px) {
    #floorplan .row {
      flex-direction: column-reverse;
    }
    #floorplan .col-lg-6 {
      padding: 2rem 1.5rem !important;
    }
  }

  
  
  /* Active Menu Item Styling */
  .amenity-menu li {
    cursor: pointer;
    padding: 12px 0;
    font-weight: 400;
    transition: all 0.3s ease;
  }

  .amenity-menu li.active {
    color: #0a7e6e;
    font-weight: 700;
  }

  .amenity-menu li:hover {
    color: #0a7e6e;
    font-weight: 600;
  }

  @media(max-width:991px){
    .amenity-menu {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-bottom:15px;
    }
    .amenity-menu li {
      padding:8px 12px;
      font-size:14px;
      flex:1 1 45%;
      text-align:center;
      margin-bottom:8px;
    }
  }

  @media(max-width:575px){
    .amenity-menu li {
      font-size:13px;
      flex:1 1 100%;
    }
    #amenity-main-img {
      max-height:300px;
    }
    #amenity-desc {
      font-size:14px;
    }
  }


  /* Sticky Contact Bar - Desktop */
.sticky-contact-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #0a0a0a 40%, #0a7e6e 100%);;
  border-radius: 8px 0 0 8px;
  padding: 10px 5px;
  z-index: 9999;
  max-width : 82px;
}

.sticky-contact-bar .contact-menu li {
  margin: 15px 0;
  text-align: center;
}

.sticky-contact-bar .contact-menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.sticky-contact-bar .contact-menu li a i {
  font-size : 20px;
  margin-bottom : 4px;
}

.sticky-contact-bar .contact-menu li a:hover {
  color: #0a7e6e;
}

/* Mobile Responsive */
@media(max-width:991px){
  .sticky-contact-bar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    padding: 5px 0;
    max-width : 100%;
  }
  .sticky-contact-bar .contact-menu {
    display: flex;
    justify-content: space-around;
  }
  .sticky-contact-bar .contact-menu li {
    margin: 0;
  }
  .sticky-contact-bar .contact-menu li a {
    flex-direction: column;
    font-size: 10px;
  }
  .sticky-contact-bar .contact-menu li a img {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
  }
}



/* Navbar base */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    background: transparent;
    background: linear-gradient(135deg, #0a0a0a 40%, #0a7e6e 100%); /* semi-transparent dark */
    backdrop-filter: blur(10px);    /* blur only the background */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.navbar-container {
    width: 91.666%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.navbar-logo {
    height: 44px;
    width: auto;
    margin-right: 3rem;
    transition: all 0.4s ease;
}

.navbar-menu {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    color: #fff;
}
.nav-link{
    padding : 0;
}
.menu-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

/* Buttons */
.nav-btn,
.nav-items {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.nav-btn {
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: none;
    padding: 8px 12px;
}

.nav-items {
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid #F7F7ED;
}

.navCta {
    text-transform: uppercase;
    color: #0a7e6e;
    background: #fff;
    border: none;
}

.nav-btn:hover,
.nav-items:hover,
.navCta:hover {
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(48, 46, 45, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 50;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.mobile-menu.open {
    left: 0;
}

.mobile-close {
    cursor: pointer;
    margin-bottom: 2rem;
}

.hamburger{
    color : #fff;
}

.mobile-menu-items a {
    display: block;
    margin-bottom: 1rem;
}

/* Responsive */
.d-lg-none {
    display: block;
}

.d-lg-flex {
    display: none;
}

@media(min-width:1024px) {
    .d-lg-none {
        display: none;
    }

    .d-lg-flex {
        display: flex !important;
    }
}


/* Animations
********** */
/* Navbar scrolled */
.navbar-scrolled {
    background: rgba(0, 0, 0, 0.34); /* semi-transparent dark */
    backdrop-filter: blur(10px);    /* blur only the background */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}


.animated-hr-1 {
  width: 0%; /* Start from 0 */
  border-top: 2px solid #0a7e6e;
  margin: 0 auto; /* Center horizontally */
  animation: expandHr 2s ease-in-out infinite alternate;
}

@keyframes expandHr {
  from { width: 0%; }
  to { width: 60%; }
}

.animated-hr-2 {
  width: 0%; /* Start from 0 */
  border-top: 2px solid #0a7e6e;
  margin: 0 auto; /* Center horizontally */
  animation: expandHr2 2s ease-in-out infinite alternate;
}

@keyframes expandHr2 {
  from { width: 40%; }
  to { width: 10%; }
}


/* GSAP Animations */
#navbar {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-btn, .nav-items {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-btn:hover, .nav-items:hover {
  color: #ffd700;
  transform: translateY(-2px);
}
