 @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&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');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Poppins", sans-serif;
            color: #d4af37;
        }
        
        /* Navbar Styles */
        .navbar {
            background: rgba(26, 28, 30, 0.95);
            backdrop-filter: blur(10px);
            padding:15px 10px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .navbar.scrolled {
            background: rgba(26, 28, 30, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            height: 50px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #d4af37;
            font-size: 1.1rem;
 font-family: 'Open Sans', sans-serif;
             font-weight: 500;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f4e97b);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        
        .nav-links a:hover::before {
            width: 100%;
        }
        
        /* Burger Menu */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .burger:hover {
            transform: scale(1.1);
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: #d4af37;
            margin: 3px 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
            border-radius: 2px;
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .burger-container {
    display: none;
    align-items: center;
    gap: 10px; /* Adjust space between mob-logo and burger */
}

@media (max-width: 768px) {
    .burger-container {
        display: flex;
    }
}

        /* Mobile Menu */
        .nav-links.mobile {
            position: fixed;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 28, 30, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            transform: translateY(-100vh);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .mob-logo{
          display: none;
        }
        .flex-container{
          display: flex;
        }
        @media (max-width: 768px) {
           .mob-logo{
          display: block;
          height: 35px;
        }
        }

        .nav-links.mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-links.mobile a {
            font-size: 1.3rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            text-align: center;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.4s ease forwards;
        }
        
        .nav-links.mobile.active a:nth-child(1) { animation-delay: 0.1s; }
        .nav-links.mobile.active a:nth-child(2) { animation-delay: 0.15s; }
        .nav-links.mobile.active a:nth-child(3) { animation-delay: 0.2s; }
        .nav-links.mobile.active a:nth-child(4) { animation-delay: 0.25s; }
        .nav-links.mobile.active a:nth-child(5) { animation-delay: 0.3s; }
        .nav-links.mobile.active a:nth-child(6) { animation-delay: 0.35s; }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .nav-links.mobile a:hover {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 8px;
        }
        
        /* Content spacing for fixed navbar */
        .content {
            margin-top: 100px;
            padding: 2rem;
            text-align: center;
        }
        
        .content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #d4af37, #f4e97b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .content p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 860px) {
          .logo{
            height:35px ;
          }
          
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links:not(.mobile) {
                display: none;
            }
            
            .burger {
                display: flex;
            }
            
            .navbar {
                padding: 10px 8px;
            }
            
            .logo {
                height: 35px;
            }
            
            .content h1 {
                font-size: 2rem;
            }
            
            .content p {
                font-size: 1rem;
                padding: 0 1rem;
            }
        }
        
        /* Overlay for mobile menu */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Pulse animation for logo */
        @keyframes pulse {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
            }
        }
        
        .logo {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Slider Starts */
        .swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
a{
    text-decoration: none;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  padding-top: 80px;
}
@media (max-width: 860px) {
.swiper-slide img {
    padding-top: 67px;
  }
}
/* Optional: Adjust height for smaller screens */
@media (max-width: 768px) {
  .swiper {
    height: auto;
    width: 100%;
  }
.swiper-slide img {
padding-top: 64px;
}
}
/* Swiper Ends  */
/* Landmark Starts  */
.landmark-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: auto;
        }

        .section-title-land {
            text-align: center;
            font-size: 32px;
            color: #d4af37;
            text-transform: uppercase;
            margin-bottom: 60px;
            font-weight: 300;
            font-family: serif;
            letter-spacing: 1px;
        }

        .landmark-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            align-items: flex-start;
        }

        /* Left side */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 10px;
            flex: 1 1 60%;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 6px 10px;
            flex-direction: column;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .feature img {
            width: 47px;
            height: 47px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .feature p {
            margin: 0;
            color: black;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.5;
        }

        /* Right side - Building Image with Video */
        .building-image {
            flex: 1 1 35%;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 750px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .building-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .video-container:hover img {
            transform: scale(1.05);
        }

        /* Play Button Overlay */
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .play-button:hover {
            background: rgba(212, 175, 55, 1);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 3px;
        }

        /* Video Overlay */
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .video-wrapper {
            position: relative;
            width: 90%;
            max-width: 800px;
            aspect-ratio: 16/9;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
            background: #000;
        }

        .close-button {
            position: absolute;
            top: -40px;
            right: 0;
            background: #d4af37;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-button:hover {
            background: #b8941f;
        }     .video-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}


        /* Responsive */
        @media (max-width: 1000px) {
            .landmark-container {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .building-image {
                order: -1;
                margin-bottom: 30px;
            }

            .building-image img {
                height: 300px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .feature {
                gap: 10px;
            }

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-button::after {
                border-left: 15px solid white;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }

        @media screen and (max-width: 600px) {
            .section-title-land {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .landmark-section {
                padding: 20px 10px;
            }

            .building-image img {
                height: 250px;
            }

            .play-button {
                width: 50px;
                height: 50px;
            }

            .play-button::after {
                border-left: 12px solid white;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
            }

            .video-wrapper {
                width: 95%;
            }
             .video-container iframe {
    height: 250px;
  }
        }

        @media screen and (max-width: 400px) {
            .building-image img {
                height: 200px;
            }
        }
/* Landmark Ends */
/* Project Config Starts */

        .project-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                        url('images/shethbedroom.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .content-container {
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }

        .section-title {
            color: white;
            font-size: 35px;
            font-weight: 300;
            letter-spacing: 2px;
            font-family: serif;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
        }


        .table-container {
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .config-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .config-table thead {
            background:#191C1F;
        }

        .config-table th {
            padding: 15px 10px;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
        }

        .config-table th:first-child {
            border-radius: 10px 0 0 0;
        }

        .config-table th:last-child {
            border-radius: 0 10px 0 0;
        }

        .config-table tbody tr {
            background: white;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .config-table tbody tr:hover {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .config-table tbody tr:last-child {
            border-bottom: none;
        }

        .config-table td {
            padding: 20px 10px;
            text-align: center;
            font-size: 1rem;
            color: #333;
            border: none;
        }

        .config-table td:first-child {
            font-weight: 600;
            color: #2c3e50;
        }

        .config-table td:nth-child(2) {
            font-weight: 600;
        }

        .click-here-btn {
            background:#d4af37;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .click-here-btn:hover {
            background: #d8bb59;
            transform: translateY(-2px);
            color: #000;
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }
 .mobile-card-list {
  display: none;
}

.card-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 350px;
}

.card-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.card-item .area {
  font-size: 15px;
  color: black;
  margin-bottom: 5px;
}

.mobile-card-list h1{
  text-align: center;
  font-size: 25px;
  margin-bottom: 30px;
}
/* Hide table and show cards on mobile */
@media (max-width: 768px) {
  .config-table {
    display: none;
  }
  .project-section{
    min-height: 70vh;
  }
  .card-item .click-here-btn{
    font-size: 13px;
    padding: 7px 10px;
  }

  .mobile-card-list {
    display: block;
  }
}


        /* Responsive Design */
        @media (max-width: 768px) {
          .content-container{
            display: none;
          }
            .project-section {
                padding: 20px 10px;
                /* background-attachment: scroll; */
            }
            .section-title {
                font-size: 18px;
                margin-bottom: 4px;
            }
        
            .config-table th,
            .config-table td {
                padding: 15px 12px;
                font-size: 0.9rem;
            }

            .config-table th {
                font-size: 1rem;
            }

            .click-here-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 550px) {
         

            .config-table th,
            .config-table td {
                padding: 7px 4px;
                font-size: 12px;
            }

            .config-table th {
                font-size: 0.9rem;
            }

            .click-here-btn {
                padding: 2px 5px;
                font-size: 0.65rem;
            }
        }
        @media (max-width: 410px) {
          .content-container{
            display: none;
          }
               .click-here-btn {
                padding: 3px 5px;
                font-size: 8px;
            }
                 .config-table th,
            .config-table td {
                padding: 4px 2px;
                font-size: 0.7rem;
            }
             .config-table th {
                font-size: 0.7rem;
            }

        }
       
        /* Additional animation for table rows */
        .config-table tbody tr {
            animation: fadeInUp 0.6s ease-out forwards;
            animation-delay: calc(var(--row-index) * 0.1s);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Project Configuration Ends  */

/* Gallery Starts */
/* Responsive button layout */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.filter-btn {
  background: #333;
  color: #fff;
  border: 1px solid #555;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s ease;
  white-space: nowrap;
}

/* Mobile button fix */
@media (max-width: 600px) {
  .filter-btn {
    flex: 1 1 calc(45% - 10px);
    font-size: 14px;
    padding: 10px 12px;
    text-align: center;
  }
}

/* Video wrapper styling */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.main-gallery{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Force height for video cards */
.gallery-item[data-category="video"] {
  background: black;
}

    .gallery-container {
        padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 15px;
      color: #d4af37;
        font-family: serif;
    }

    .title-underline {
      width: 80px;
      height: 3px;
      background: transparent;
      margin: 0 auto 30px;
    }

    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 30px;
      gap: 10px;
    }

    .filter-btn {
      background: #333;
      color: #fff;
      border: 1px solid #555;
      padding: 10px 20px;
      font-size: 15px;
      cursor: pointer;
      border-radius: 20px;
      transition: 0.3s ease;
    }

    .filter-btn.active {
      background: linear-gradient(135deg, #c9a96e, #d4b570);
      color: #000;
      font-weight: 600;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      /* border-radius: 10px; */
      cursor: pointer;
      background: #2a2a2a;
      height: 250px;
      border: 2px solid black;
      display: block;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item.hidden {
      display: none;
    }
/* Commented Code */
    /* .gallery-item[data-category="plans"] img { */
      /* filter: blur(4px); Floor Plan Comment  */
      /* pointer-events: none; */
    /* } */

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(5px);
      justify-content: center;
      align-items: center;
      padding: 10px;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      position: relative;
      width: 100%;
      max-width: 600px;
    }

    .modal-image {
      width: 100%;
      height: auto;
      max-height: 80vh;
      border-radius: 10px;
      object-fit: contain;
    }

    .close {
      position: absolute;
      top: -15px;
      right: -15px;
      color: #fff;
      font-size: 26px;
      font-weight: bold;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.6);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close:hover {
      background: rgba(201, 169, 110, 0.3);
      color: #c9a96e;
    }

    @media (max-width: 600px) {
      .gallery-title {
        font-size: 2rem;
      }
      .gallery-container {
        padding: 50px 10px;
      }
      .filter-btn {
        flex: 1 1 calc(50% - 20px);
        text-align: center;
        font-size: 14px;
        padding: 10px;
      }

      .gallery-item {
        height: 200px;
      }

      .modal-image {
        max-height: 70vh;
      }
    }
    .image-wrapper {
  width: 100%;
  height: 85%;
  overflow: hidden;
}

.gallery-item p.caption {
  margin: 9px 0 0;
  letter-spacing: .7px;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  font-family: sans-serif;
  height: 15%;
}
.gallery-item[data-category="amenities"] p.caption {
  display: block;
}

.gallery-item:not([data-category="amenities"]) p.caption {
  display: none;
}

/* Gallery Ends */
  /* <!-- Amenties Separate Section Starts  --> */
       .amenities-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            border-radius: 10px;
        }
.amenties-main-container{
  background-color: #F6F6F6;
}
        .amenities-title {
            text-align: center;
            font-size: 32px;
            color: #d4af37;
            font-family: serif;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 40px;
            position: relative;
        }

        .amenities-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            /* background-color: #d4af37; */
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-button {
            background: transparent;
            border: 2px solid rgba(71, 71, 72, 0.98);
            color: #d4af37;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            min-width: 200px;
        }

        .tab-button:first-child {
            border-radius: 5px 0 0 5px;
        }

        .tab-button:last-child {
            border-radius: 0 5px 5px 0;
        }

        .tab-button.active {
            background-color: #d4af37;
            color: black;
        }

        .tab-button:hover:not(.active) {
            background-color: rgba(200, 168, 130, 0.1);
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .cards-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            margin-bottom: 20px;
        }

        .amenity-card {
            min-width: 270px;
            background: white;
            border-radius: 10px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .amenity-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background-color: #f8f8f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #666;
        }

        .amenity-title {
            font-size: 16px;
            font-weight: 600;
            color: #656363;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border: 2px solid #d4af37;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
            color: #d4af37;
        }

        .slider-btn:hover {
            background-color: #d4af37;
            color: white;
        }

        .slider-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .slider-btn:disabled:hover {
            background: white;
            color: #d4af37;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }
.amenity-card img{
  height: 90px;
}
        /* Responsive Design */
        @media (max-width: 768px) {
            .amenities-section {
                padding: 30px 15px;
            }
.amenity-card img{
  height: 60px;
}
            .amenities-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .tab-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .tab-button {
                border-radius: 5px !important;
                min-width: 250px;
                border: 2px solid #d4af37 !important;
            }

            .amenity-card {
                min-width: 230px;
            }

            .slider-controls {
                gap: 15px;
            }

            .slider-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .amenities-title {
                font-size: 1.5rem;
                letter-spacing: 2px;
            }

            .tab-button {
                min-width: 200px;
                padding: 12px 20px;
                font-size: 12px;
            }

            .amenity-card {
                min-width: 180px;
                padding: 15px 5px;
            }

            .amenity-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .amenity-title {
                font-size: 14px;
            }
        }
          /* <!-- Amenties Separate Section Ends  --> */
              /* Location Advantages Starts */
.loc-bg {
            background: url('/images/imgi_50_location-background.webp') no-repeat center center fixed;
            background-size: cover;
        }

        .overlay-loc {
            background-color: rgba(0, 0, 0, 0.6);
            min-height: 100vh;
            padding: 40px 10px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .location-container {
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            max-width: 1100px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
            gap: 20px;
        }

        .location-list {
            flex: 1;
            min-width: 260px;
            max-height: 80vh;
            overflow-y: auto;
            font-size: 12px;
            scrollbar-width: thin;
        }

        .location-list h2 {
            font-size: 30px;
            text-align: center;
            color: #fff;
            font-family: serif;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-section {
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-header {
            background: rgba(255, 215, 0, 0.1);
            color: gold;
            font-size: 15px;
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .faq-header:hover {
            background: rgba(255, 215, 0, 0.2);
        }

        .faq-header.active {
            background: rgba(255, 215, 0, 0.15);
        }

        .faq-icon {
            font-size: 16px;
            font-weight: bold;
            transition: transform 0.3s ease;
            color: gold;
        }

        .faq-header.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-content.active {
            max-height: 400px;
            overflow-y: auto;
        }

        .location-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            margin: 5px 0;
            border-left: 3px solid gold;
            border-radius: 3px;
            font-size: 14px;
        }

        .location-item span {
            font-weight: 500;
            color: #ccc;
        }

        .map-image {
            flex: 1;
            min-width: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-image img {
            width: 100%;
            max-width: 500px;
            object-fit: contain;
            border: 2px solid white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            cursor: zoom-in;
        }

        /* Modal Styling */
        .map-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }

        .map-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            cursor: zoom-out;
        }

        @media (max-width: 768px) {
            .location-container {
                flex-direction: column;
                padding: 15px;
            }

            .location-list h2 {
                font-size: 18px;
            }

            .location-item {
                font-size: 13px;
                padding: 6px 12px;
            }

            .faq-header {
                font-size: 14px;
                padding: 10px 12px;
            }

            .map-image img {
                max-width: 100%;
            }
        }

        /* Custom scrollbar for webkit browsers */
        .location-list::-webkit-scrollbar,
        .faq-content::-webkit-scrollbar {
            width: 6px;
        }

        .location-list::-webkit-scrollbar-track,
        .faq-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .location-list::-webkit-scrollbar-thumb,
        .faq-content::-webkit-scrollbar-thumb {
            background: rgba(255, 215, 0, 0.5);
            border-radius: 3px;
        }

.map-thumbnail {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.map-thumbnail img {
    width: 100%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.play-button-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: #d4af37;
    border-radius: 50%;
    padding: 2px 10px 2px 13px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.play-button-map:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #d4af37;
}

.youtube-embed-map {
    display: none;
    width: 100%;
    max-width: 500px;
}

.youtube-embed-map iframe {
    width: 100%;
    height: 280px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

        /* Location Advantage ends  */
             /* <!-- Viviana Mall Section Starts   --> */
 .journey-section {
            padding: 50px 20px 90px 20px;
            background-color: #f6f6f6;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .journey-content {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .journey-text {
            flex: 1 1 500px;
            min-width: 300px;
        }

        .journey-text h2 {
            color: #d4af37;
            font-size: 36px;
            font-family: Georgia, serif;
            font-weight: 300;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .subtitle {
            color: #d4af37;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
        }

        .stat {
            text-align: left;
            position: relative;
            padding-right: 10px;
        }

        .stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #ccc;
        }

        .stat h3 {
            color: #d4af37;
            font-size: 28px;
            margin: 0 0 8px 0;
            font-weight: 700;
        }

        .stat p {
            font-size: 13px;
            color: #333;
            margin: 0;
            font-weight: 500;
            line-height: 1.3;
        }

        .journey-image {
            flex: 1 1 400px;
            min-width: 300px;
            text-align: center;
        }

        .journey-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .journey-image img:hover {
            transform: translateY(-5px);
        }

        /* Tablet View */
        @media (max-width: 1024px) {
            .journey-section {
                padding: 40px 20px 50px 20px;
            }
            
            .journey-content {
                gap: 30px;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .journey-section {
                padding: 30px 15px 30px 15px;
            }

            .journey-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .journey-text {
                flex: none;
                width: 100%;
            }

            .journey-text h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .subtitle {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                max-width: 400px;
                margin: 0 auto;
            }

            .stat {
                text-align: center;
                padding-right: 0;
            }

            .stat:not(:last-child)::after {
                display: none;
            }

            .stat h3 {
                font-size: 24px;
                margin-bottom: 6px;
            }

            .stat p {
                font-size: 12px;
            }

            .journey-image {
                flex: none;
                width: 100%;
                padding: 0;
            }

            .journey-image img {
                border-radius: 8px;
                max-width: 90%;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
            .journey-section {
                padding: 20px 10px 30px 10px;
            }

            .journey-text h2 {
                font-size: 24px;
            }

            .subtitle {
                font-size: 15px;
            }

          
            .stat h3 {
                font-size: 22px;
            }

            .stat p {
                font-size: 11px;
            }
        }

                 /* <!-- Viviana Mall Section Ends   --> */
               /* <!-- Contact Section Starts --> */
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1600px;
      margin: auto;
      box-shadow: 0 0 20px rgba(255,255,255,0.1);
    }

   .map-container {
    flex: 1;
 position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
    .form-container {
      flex: 1;
      background: url('images/shethgarden.webp') no-repeat center center/cover;
      position: relative;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
    }

    .form-container::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.8); /* dark overlay */
      z-index: 0;
    }

    .form-container * {
      position: relative;
      z-index: 1;
    }

    .contact-title {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 10px;
      font-family: serif;
      color: #fff;
    }

    .title-underline {
      width: 60px;
      height: 3px;
      background: transparent;
      margin: 0 auto 40px;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group input {
      width: 100%;
      padding: 14px 20px 14px 50px;
      background-color: #fff;
      border: 1px solid #333;
      color: black;
      border-radius: 4px;
      font-size: 16px;
    }

    .form-group input::placeholder {
      color: #525151;
    }

    .form-group .icon {
      position: absolute;
      z-index: 10;
      font-size: 22px;
      color: rgb(86, 84, 84);
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .submit-btn {
      width: 100%;
      padding: 15px;
      background: #d4af37;
      border: none;
      font-size: 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      color: #000;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: #efc849;
    }

    .loading, .success-message, .error-message {
      text-align: center;
      margin-top: 15px;
      display: none;
    }

    .success-message {
      color: #4caf50;
    }

    .error-message {
      color: #f44336;
    }

    .contact-info {
      margin-top: 30px;
      text-align: center;
    }

    .phone-number {
      display: inline-block;
      margin-top: 10px;
      font-size: 1.2rem;
      color: #ffd700;
      text-decoration: none;
    }

    .phone-number:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .map-container,
      .form-container {
        width: 100%;
        min-height: 400px;
      }

      .form-container {
        padding: 20px;
      }

      .form-group input {
        font-size: 15px;
      }

      .contact-title {
        font-size: 2rem;
      }
    }
               /* <!-- Contact Section Ends --> */
                /* <!-- Testimonial Section Starts --> */
    .testimonial-main-container{
      padding: 90px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
    }
    .testimonial-section-title {
      font-size: 32px;
      font-weight: 300;
      font-family: serif;
      color: #d4af37;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .testimonial-title-line {
      width: 100px;
      height: 2px;
      background-color: #d4af37;
      margin: 0 auto 30px auto;
    }

    .testimonial-video-container {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
    }

    .testimonial-thumbnail-img {
      width: 100%;
      height: auto;
      display: block;
      cursor: pointer;
    }

    .testimonial-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 70px;
      height: 70px;
      background-color: #d4af37;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .testimonial-play-btn::before {
      content: '';
      border-style: solid;
      border-width: 12px 0 12px 20px;
      border-color: transparent transparent transparent white;
      display: inline-block;
      margin-left: 5px;
    }

    .testimonial-video-element {
      width: 100%;
      height: auto;
      display: none;
    }

    @media (max-width: 768px) {
      .testimonial-section-title {
        font-size: 22px;
      }

      .testimonial-play-btn {
        width: 50px;
        height: 50px;
      }

      .testimonial-play-btn::before {
        border-width: 8px 0 8px 14px;
      }
    .testimonial-main-container{
      padding: 40px 10px;
    }
    }
                /* <!-- Testimonial Section Ends --> */
                /* Thank You page Start*/
                 .thankcontainer {
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .thankcontent {
      text-align: center;
    }

    .circle {
      background-color: #383A3A;
      padding: 1rem;
      border-radius: 9999px;
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle span {
      color: white;
      font-size: 1.75rem;
      font-weight: bold;
    }

    h1 {
      font-size: 1.875rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .thankcontent p {
      font-size: 1rem;
      margin-bottom: 1rem;
      font-weight: 500;
      color: #191C1F;
    }

    .thank-button {
      display: inline-block;
      background-color: #383A3A;
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .button:hover {
      background-color: #4b5561;
    }
                /* Thank You page Ends  */
/* Modal Start */
.modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Modal Box */
    .modal-box {
      background-color: #ccc;
      width: 90%;
      max-width: 500px;
      border-radius: 4px;
      overflow: hidden;
    }

    .modal-header {
      background-color: #1c1c1c;
      color: #fff;
      padding: 15px;
      font-size: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header span {
      cursor: pointer;
      font-size: 20px;
    }

    .modal-body {
      padding: 20px;
    }

    .modal-body p {
      font-size: 14px;
      color: #191C1F;
      margin-bottom: 15px;
    }

    .input-group {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      background: #fff;
      border-radius: 4px;
    }

    .input-group span {
      padding: 10px;
      background: #1c1c1c;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
    }
    .input-group span i {
      font-size: 19px;
      /* font-weight: 300; */
    }
    .input-group input {
      flex: 1;
      padding: 10px;
      border: none;
      outline: none;
    }

    .submit-btn-mod {
      background-color: #1c1c1c;
      color: #fff;
      padding: 10px 25px;
      border: 1px solid #fff;
      cursor: pointer;
      margin: 0 auto;
      font-family: poppins, sans-serif;
      display: block;
      border-radius: 4px;
    }

    @media (max-width: 480px) {
      .modal-box {
        width: 95%;
      }
    }
/* Modal Ends */
/* Floor Plan Modal Starts  */

/* Floor Plan Modal Ends  */

/* <!-- Footer Starts --> */

.footer {
  background-color: #262829;
  padding: 20px 7px 5px 7px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.qr-code {
  width: 80px;
}

.footer p {
  font-size: 12px;
  line-height: 1.6;
  margin: 2px 0;
  color: #fff;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.disclaimer {
  font-size: 10px !important;
  color: #aaa;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 600px) {
  .qr-code {
    width: 90px;
  }
.disclaimer{
    font-size: 8px;
  }
  .footer p {
    font-size: 10px;
  }
}

                /* <!-- Footer Ends  --> */
     .mobile-buttons {
      display: none; /* Hidden by default on larger screens */
    }

    @media (max-width: 768px) {
      .mobile-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: #fff;
        border-top: 1px solid #ccc;
      }

      .mobile-buttons a {
        flex: 1;
        text-align: center;
        padding: 10px;
        text-decoration: none;
        font-weight: bold;
        color: white;
      }

      .enquire-now {
        background-color: #262829;
        border-right: 2px solid white;
      }

      .call-now {
        background-color: #262829;
      }
    }
    .high-cont{
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }