

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





*{
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
  }
/* Ensure dropdown is properly positioned */
.navbar-nav .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000; /* Ensure it appears above other elements */
}

/* Show dropdown on hover (for desktop only) */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
}

/* Show dropdown on click (for mobile) */
.navbar-nav .dropdown-menu.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure the dropdown appears above other elements */
.navbar-nav .dropdown {
  position: relative;
  z-index: 1050;
}

  .navbar {
      background-color: #1c1e2e;
      padding: 35px!important;
    }
  
    .navbar-brand {
      font-weight: bold;
      font-size: 1.5rem;
      text-align: center;
    }
  
    .navbar-collapse {
      justify-content: space-between;
    }
  
    .navbar-nav .nav-link {
      font-size: 1.1rem;
      font-weight: bold;
      color: #D6295E;
    }

    .navbar-nav .nav-link:hover {
      color: #FFF;
    }

    .navbar-toggler-icon{
      background-color: #D6295E;
      border-color: #D6295E!important;
    }
    .navbar-toggler{
      background-color: #D6295E!important;
      border-color: #D6295E!important;
      color: #D6295E!important;
    }
  .dropdown-menu{
    background-color: #1f2130!important;
    --bs-dropdown-link-color: #fff!important;
    --bs-dropdown-link-active-bg: #D6295E!important;
    --bs-dropdown-link-hover-color: #fff!important;
    --bs-dropdown-link-hover-bg: #D6295E!important;
  }
    .btn-book-space,
    .btn-book-tour {
      background-color: #D6295E!important;
      color: white!important;
      font-weight: 600!important;
      height: 100%!important; /* Full height of the navbar */
      border-radius: 0!important; /* No border-radius for uniformity */
      padding: 25px!important; /* Horizontal padding for better spacing */
      display: flex!important;
      align-items: center!important;
      justify-content: center!important;
    }
    .btn-book-space:hover,
    .btn-book-tour:hover {
      background-color: #1f2130!important;
    }
    /* .btn-book-tour {
      background-color: #D6295E!important;
    } */
  
    .navbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
  
    /* Enable hover dropdown functionality */
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }
  
    /* Adjust dropdown menu style */
    .dropdown-menu {
      margin-top: 0;
      border-radius: 0;
    }
  
    @media (max-width: 767px) {
      .navbar-center {
        position: static;
        transform: none;
        margin-bottom: 10px;
      }
  
      .navbar-collapse {
        flex-direction: column;
      }
  
      .btn-book-space,
      .btn-book-tour {
        width: 100%!important;
        height: auto!important; /* Reset height on mobile for stacking */
        margin-bottom: 5px!important;
      }
  
      .navbar-nav {
        justify-content: center;
        margin-bottom: 10px;
      }
  
      /* Ensure dropdowns work on click for mobile */
      .nav-item.dropdown:hover .dropdown-menu {
        display: none;
      }
  
      .nav-item.dropdown.show .dropdown-menu {
        display: block;
      }
      .navbar {
        padding: 0px!important;
      }
    }
  
  
    .hero-section {
      display: flex;
      flex-wrap: wrap;
      height: 100vh;
    }
  
    .hero-left {
      background-color: #FFF;
      /* color: white; */
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* text-align: center; */
    }
  
    .hero-left h3 {
      /* font-size: 2.5rem; */
      font-weight: bold;
      line-height: 1.5;
      color: #D6295E;
    }
  
    .hero-left p {
      margin-top: 1rem;
      font-size: 1.0rem;
      /* line-height: 1.8; */
    }
    .answer-p{
      color: #D6295E;
    }
  
    .hero-left .hero-btn-book-space {
      margin-top: 2rem;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      background-color: #D6295E;
      color: white;
      border: none;
      border-radius: 0;
    }
    
    .hero .overlay .hero-btn-book-space{
        margin-top: 2rem;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      background-color: #D6295E;
      color: white;
      border: none;
      border-radius: 0;
    }
  
    .hero-left .hero-btn-book-space:hover {
      background-color: #1f2130;
      text-decoration: none;
      color: white;
    }
    
    .hero .overlay .hero-btn-book-space:hover {
      background-color: #1f2130;
      text-decoration: none;
      color: white;
    }
  
    .hero-right {
      background-image: url('../images/Wellness\ room\ 1.jpg'); /* Replace with your image URL */
      background-size: cover;
      background-position: center;
      flex: 1;
    }
  
    @media (max-width: 767px) {
      .hero-section {
        flex-direction: column;
        height: auto;
      }
  
      .hero-left {
        padding: 2rem;
      }
  
      .hero-left h1 {
        font-size: 2rem;
      }
  
      .hero-left p {
        font-size: 1rem;
      }
  
      .hero-left .btn-book-space {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
      .hero-right {
          min-height: 300px; /* Ensure image shows properly in mobile */
          height: 50vh; /* Optional for better control */
        }
    }
  
  /* hero slider */
  .hero-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .hero-carousel-cell {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(14, 29, 51, 0.2), rgba(14, 29, 51, 0.48));
    z-index: 1;
  }
  
  .hero-inner {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    z-index: 2;
  }
  
  .hero-subtitle {
    font-family: 'Roboto Slab', serif;
    font-size: 2.2rem;
    line-height: 1.2em;
    font-weight: 600;
    /* font-style: italic; */
    letter-spacing: 3px;
    color: #1f2130;
    margin-bottom: 5px;
  }
  
  .hero-title {
    font-family: Beautique-Display, sans-serif;
    font-weight:600;
    font-size: 2.5rem;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }
  
  .hero-btn {
    border: 1px solid #1f2130;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    background: #D6295E;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
  }
  
  .hero-btn:hover {
    background: #1f2130;
    color: #fff;
  }
  
  /* Custom Arrow Styling */
  .flickity-prev-next-button {
    width: 80px;
    height: 80px;
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
  
  .flickity-prev-next-button:hover {
    background: transparent;
  }
  
  .flickity-prev-next-button .arrow {
    fill: white;
  }
  
  .flickity-prev-next-button.previous {
    left: 10px;
  }
  
  .flickity-prev-next-button.next {
    right: 10px;
  }
  
  /* Page Dots */
  
  .flickity-page-dots .dot {
    background:#ffffff;
  }
  
  .flickity-page-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
  }
  
  .hero-dot {
    width: 30px;
    height: 4px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.6);
    border: 0 solid white;
    border-radius: 0;
    transition: all 0.3s ease;
  }
  
  .hero-dot.is-selected {
    background: #D6295E;
  }
  .hero-sub-points{
    background-color: #D6295E;
  }
  .hero-sub-child-points{
    border: 2px solid #000;
    text-align: center;
    vertical-align: middle;
  }
  .hero-sub-child-points h3{
    color: #fff;
  }
  
  
  /* hero section media queries */
  @media screen and (min-width: 344px) and (max-width: 932px) {
    .hero-subtitle{
      font-size: 1.4rem;
    }
    .hero-title{
      font-size: 0.5rem;
    }
    .flickity-prev-next-button{
      top: 55%;
      width: 30px;
      height: 30px;
    }
  }
  @media screen and (min-width: 1024px) and (max-width: 1368px) {
    .hero-subtitle{
      font-size: 2.4rem;
    }
    .hero-title{
      font-size: 1rem;
    }
  }
  /* hero slider end */
  
  
  .section-dark {
    background-color: #1f2130;
    color: #fff;
    padding: 50px 30px;
    text-align: center;
  }
  
  .section-light {
    background-color: #e8dfd2;
    padding: 50px 30px;
  }
  
  .section-light h6 {
    text-transform: uppercase;
    color: #D6295E;
    /* letter-spacing: 2px; */
    margin-bottom: 1rem;
  }
  
  .section-light h1, .section-light h4 {
    color: #1d1d1d;
    margin-bottom: 1.5rem;
  }
  
  .section-dark h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .btn-custom {
    color: #fff;
    background-color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
  }
  
  .btn-custom:hover {
    background-color: #444;
  }
  
  .btn-light-custom {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .btn-light-custom:hover {
    background-color: #444;
  }
  
  .image-section {
    background-size: cover;
    background-position: center;
    height: 300px;
    min-height: 300px;
  }
  
  @media (min-width: 768px) {
    .image-section {
      height: 400px;
    }
  
    .section-dark h1 {
      font-size: 2.2rem;
    }
  }

  .main-right {
    background-color: #fff;
    /* background-color: #dc2b64; */
    /* color: #000; */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /* text-align: center; */
  }
  
  .main-right h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #D6295E;
    letter-spacing: 2px;
    text-align: center;
  }
  .main-right h6{
    color: #1f2130;
    font-weight: 600;
    text-align: left!important;
  }
  .main-right p {
    /* margin-top: 1rem; */
    font-size: 1.0rem;
    /* line-height: 1.8; */
  }
  .main-left {
    background-image: url('../images/Reception\ 2\ \(2\).webp'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  .main-right .hero-btn-book-space {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #D6295E;
    color: white;
    border: none;
    border-radius: 0;
  }

  .main-right .hero-btn-book-space:hover {
    background-color: #1f2130;
    text-decoration: none;
    color: white;
  }

  @media (max-width: 767px) {
    .hero-section {
      flex-direction: column;
      height: auto;
    }
  
    .main-right {
      padding: 2rem;
    }
  
    .main-right h1 {
      font-size: 2rem;
    }
  
    .main-right p {
      font-size: 1rem;
    }
    .main-right .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    }
    /* .hero-left .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    } */
    .main-left {
        min-height: 300px; /* Ensure image shows properly in mobile */
        height: 50vh; /* Optional for better control */
      }
  }
  
  
  .flex-right {
    background-color: #fff;
    /* background-color: #dc2b64; */
    /* color: #000; */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
  }
  
  .flex-right h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #252433;
    letter-spacing: 2px;
  }
  .flex-right h6{
    color: #1f2130;
    font-weight: 600;
  }
  .flex-right p {
    margin-top: 1rem;
    font-size: 1.0rem;
    /* line-height: 1.8; */
  }
  .flex-left {
    background-image: url('../images/Cubical.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  @media (max-width: 767px) {
    .hero-section {
      flex-direction: column;
      height: auto;
    }
  
    .flex-right {
      padding: 2rem;
    }
  
    .flex-right h1 {
      font-size: 2rem;
    }
  
    .flex-right p {
      font-size: 1rem;
    }
  
    /* .hero-left .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    } */
    .flex-left {
        min-height: 300px; /* Ensure image shows properly in mobile */
        height: 50vh; /* Optional for better control */
      }
  }
  
  
  .unlimited-left {
    background-color: #FFF;
    /* color: white; */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
  }
  
  .unlimited-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #252433;
    letter-spacing: 2px;
  }
  
  .unlimited-left p {
    margin-top: 1rem;
    font-size: 1.0rem;
    /* line-height: 1.8; */
  }
  .unlimited-right {
    background-image: url('../images/Reception\ 6.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  @media (max-width: 767px) {
    .hero-section {
      flex-direction: column;
      height: auto;
    }
  
    .unlimited-left {
      padding: 2rem;
    }
  
    .unlimited-left h1 {
      font-size: 2rem;
    }
  
    .unlimited-left p {
      font-size: 1rem;
    }
  
    /* .hero-left .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    } */
    .unlimited-right {
        min-height: 300px; /* Ensure image shows properly in mobile */
        height: 50vh; /* Optional for better control */
      }
  }
  
  .suite-right {
    background-color: #FFF;
    /* color: white; */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
  }
  
  .suite-right h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #252433;
    letter-spacing: 2px;
  }
  
  .suite-right p {
    margin-top: 1rem;
    font-size: 1.0rem;
    /* line-height: 1.8; */
  }
  .suite-left {
    background-image: url('../images/Passage.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  @media (max-width: 767px) {
    .hero-section {
      flex-direction: column;
      height: auto;
    }
  
    .suite-right {
      padding: 2rem;
    }
  
    .suit-right h1 {
      font-size: 2rem;
    }
  
    .suite-right p {
      font-size: 1rem;
    }
  
    /* .hero-left .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    } */
    .suite-left {
        min-height: 300px; /* Ensure image shows properly in mobile */
        height: 50vh; /* Optional for better control */
      }
  }
  
  .meet-left {
    background-color: #FFF;
    /* color: white; */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
  }
  
  .meet-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #252433;
    letter-spacing: 2px;
  }
  
  .meet-left p {
    margin-top: 1rem;
    font-size: 1.0rem;
    /* line-height: 1.8; */
  }
  .meet-right {
    background-image: url('../images/Boardroom\ 1.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  @media (max-width: 767px) {
    .hero-section {
      flex-direction: column;
      height: auto;
    }
  
    .meet-left {
      padding: 2rem;
    }
  
    .meet-left h1 {
      font-size: 2rem;
    }
  
    .meet-left p {
      font-size: 1rem;
    }
  
    /* .hero-left .btn-book-space {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    } */
    .meet-right {
        min-height: 300px; /* Ensure image shows properly in mobile */
        height: 50vh; /* Optional for better control */
      }
  }
  
  
  footer {
    background-color: #1c1e2e;
    color: #fff;
    padding: 50px 20px;
    /* border: 2px dotted #1f2130; */
    /* border-bottom: 2px solid #1f2130; */
  }
  
  footer .footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
  }
  
  footer .footer-phone {
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0;
  }
  
  footer .footer-phone a{
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #fff;
    text-decoration: none;
  }
  
  footer .footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
  }
  
  footer .footer-links a:hover {
    text-decoration: none;
    color: #D6295E;
  }
  
  footer .social-icons a {
    font-size: 28px;
    color: #fff;
    margin-right: 15px;
  }
  
  footer .social-icons a:hover {
    opacity: 0.7;
    color: #D6295E;
  }
  
  footer .already-member {
    margin: 20px 0;
    font-size: 16px;
  }
  
  footer .already-member a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  footer .already-member a:hover {
    text-decoration: none;
    color: #1f2130;
  }
  .footer-btn-book-space,
    .footer-btn-book-tour {
      background-color: #D6295E!important;
      color: white!important;
      font-weight: 600!important;
      height: 100%!important; /* Full height of the navbar */
      border-radius: 0!important; /* No border-radius for uniformity */
      padding: 25px!important; /* Horizontal padding for better spacing */
      display: flex!important;
      align-items: center!important;
      justify-content: center!important;
    }
    .footer-btn-book-space:hover,
    .footer-btn-book-tour:hover {
      background-color: #1f2130!important;
    }
  @media (min-width: 768px) {
    footer .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      text-align: left;
    }
  
    footer .footer-phone {
      font-size: 28px;
    }
  
    footer .footer-links {
      margin-left: 50px;
    }
  }
  
  
  
  .styled-i {
    /* font-family: Arial, sans-serif; */
    /* font-size: 48px; */
    font-weight: bold;
    /* color: #000; Main color for the text */
    position: relative;
  }
  
  .custom-i {
    /* display: inline-block; */
    position: relative;
  }
  
  /* .custom-i::before {
    content: 'i';
    color: transparent; /* Hides the original dot *
  } */
  
  .custom-i::after {
    content: '';
    position: absolute;
    top: 6px; /* Adjust position as needed */
    left: 48%;
    transform: translateX(-50%);
    width: 8px; /* Dot width */
    height: 8px; /* Dot height */
    background-color: #1f2130; /* Color of the dot */
    border: 2px #1f2130 solid;
    border-radius: 50%;
  }
  .custom-si {
    /* display: inline-block; */
    position: relative;
  }
  .custom-si::after {
    content: '';
    position: absolute;
    top: 6px; /* Adjust position as needed */
    left: 48%;
    transform: translateX(-50%);
    width: 8px; /* Dot width */
    height: 8px; /* Dot height */
    background-color: #1f2130; /* Color of the dot */
    border: 2px #1f2130 solid;
    border-radius: 50%;
  }
  .custom-ii {
    /* display: inline-block; */
    position: relative;
  }
  .custom-ii::after {
    content: '';
    position: absolute;
    top: 6px; /* Adjust position as needed */
    left: 48%;
    transform: translateX(-50%);
    width: 8px; /* Dot width */
    height: 8px; /* Dot height */
    background-color: #D6295E; /* Color of the dot */
    border: 2px #D6295E solid;
    border-radius: 50%;
  }
  
  /* .custom-i {
    color: #000; /* Color of the vertical line of the "i" *
  } */
  
  
  
  @media screen and (min-width: 344px) and (max-width: 932px) {
    .hero-subtitle{
      font-size: 1.4rem;
    }
    .hero-title{
      font-size: 0.8rem;
    }
    .flickity-prev-next-button{
      top: 55%;
      width: 30px;
      height: 30px;
    }
    .custom-i::after{
        top:3px;
    }
    .custom-ii::after{
        top:3px;
    }
    .custom-sii::after{
        top:5px;
    }
  }
  @media screen and (min-width: 1024px) and (max-width: 1368px) {
    .hero-subtitle{
      font-size: 2.4rem;
    }
    .hero-title{
      font-size: 2rem;
    }
  }
  


  .location-section {
    display: flex;
    flex-wrap: wrap;
    /* height: 100vh; */
  }

  .location-right {
    background-color: #FFF;
    /* color: #fff; */
    flex: 1 1 50%;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .location-right h4 {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .location-right p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    cursor: pointer;
  }

  .location-right .phone {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
  }

  .location-right .phone a {
    text-decoration: none;
    color: #fff;
  }

  .location-right .phone a:hover {
    text-decoration: underline;
  }

  .location-left {
    flex: 1 1 50%;
    position: relative;
  }

  .location-left iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  @media (max-width: 768px) {
    .location-right {
      padding: 30px 20px;
      text-align: center;
    }

    .location-left {
      flex: 1 1 100%;
      height: 50vh;
    }

    .location-right {
      height: auto;
    }
  }


  .membership-options {
    text-align: center;
}
.membership-options h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}
.membership-options h2:hover {
    color: #D6295E;
}
.image-container {
    background-size: cover;
    background-position: center;
    height: 75vh;
    transition: background-image 0.5s ease-in-out;
    background-image: url('../images/Cubical.webp');
}



  .feature-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}
.feature-item img {
    width: 65%; /* Adjust icon size */
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}
.feature-item p {
    font-weight: 700;
    font-size: 8px;
    /* display: none; */
    /* visibility: hidden; */
}
.feature-item:hover p {
  color: #D6295E;
  display: grid;
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.feature-item:hover img {
    transform: scale(1.1);
}



.privacy-section{
  position: relative;
    background: url('../images/medium_Gold___Stone.webp') no-repeat center center/cover;
    height: 25vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: #FFF;
    text-align: center;
}
.privacy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.privacy-content{
  position: relative;
  z-index: 2;
}

#popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .popup-content {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      width: 100%;
      max-width: 400px;
      position: relative;
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .popup-content h2 {
      margin: 0 0 15px;
      color: #252433;
      font-size: 22px;
      text-transform: uppercase;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: #D6295E;
      color: white;
      border: none;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      font-size: 16px;
      cursor: pointer;
    }

    .popup-content form input,
    .popup-content form select {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
    }

    .button-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .button-group button {
      padding: 12px;
      background-color: #D6295E;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
    }

    .button-group button:hover {
      opacity: 0.95;
    }


.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.whatsapp-left,
.callback-btn-float {
  background-color: #25D366;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.callback-btn-float {
  background-color: #D6295E; /* Offix primary color */
}

.callback-btn-float:hover,
.whatsapp-left:hover {
  transform: scale(1.1);
}
