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

        :root {
            --primary: #2c3e50;
            --secondary: #c9a96e;
            --accent: #1a252f;
            --light: #f8f9fa;
            --text: #333;
            --border: #e1e8ed;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background: var(--light);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }


.recognition-card img {width: 40%;height: auto;}
        html {
            overflow-x: hidden;
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgb(255 255 255 / 32%);
            z-index: 1000;
            padding: 0.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-family: ;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
            flex-shrink: 0;
        }
        
        .logo img {
            width: 73%;
            max-width: 150px;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .enquire-btn {
            background: #ff6701;
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        .enquire-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Hero Banner Slider */
        .hero-banner {
            margin-top: 0px;
            position: relative;
            overflow: hidden;
            height: 729px;
        }

        .hero-slides-container {
            display: flex;
            transition: transform 0.8s ease-in-out;
            height: 100%;
        }

        .hero-banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(0 0 0 / 42%), rgb(0 0 0 / 0%));
        }

        .hero-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-banner-content h1 {
            font-family: ;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero-banner-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
            line-height: 1.6;
        }

        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: var(--primary);
            border: none;
            width: 60px;
            height: 60px;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .banner-arrow:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .banner-arrow.left {
            left: 30px;
        }

        .banner-arrow.right {
            right: 30px;
        }

        .banner-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .banner-dot.active {
            background: white;
            transform: scale(1.3);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 600px;
            border-radius: 10px;
            position: relative;
            animation: slideUp 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
            border-radius: 10px 10px 0 0;
            position: relative;
        }

        .modal-header h2 {
            font-family: ;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .modal-header p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2.5rem;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s;
            border-radius: 5px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .modal-submit-btn {
            background: var(--secondary);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: all 0.3s;
            font-size: 1rem;
            border-radius: 5px;
        }

        .modal-submit-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Overview Section */
        .overview {
            padding: 4rem 4%;
            background: white;
        }

        .overview-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: center;
        }

        .overview-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary), #4fc018);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 20px 20px 0 #ff7801;
            animation: fadeInLeft 1s ease-out;
            overflow: hidden;
        }

        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .overview-content {
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-title {
            font-family: ;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 13px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #ff7801;
        }

        .overview-subtitle {
            font-family: ;
            font-size: 1.8rem;
            margin: 3rem 0 1.5rem;
            color: var(--primary);
        }

        .overview-text {
            line-height: 1.8;
            color: #333;
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Features Grid */
        .features {
            padding: 3rem 5%;
            background: var(--light);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 1rem;
        }

        .feature-card {
            background: white;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .feature-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-content {
            padding: 2rem;
        }

        .feature-content h3 {
            font-family: ;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .feature-content p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Journey Timeline */
        .journey {
            padding: 2rem 9%;
            background: white;
            padding-bottom: 4%;
        }

        .journey-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .timeline {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-top: 1rem;
            position: relative;
            flex-wrap: wrap;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }

        .timeline-item {
            background: var(--primary);
            color: white;
            padding: 2rem 2rem;
            font-size: 17px;
            position: relative;
            z-index: 1;
            transition: all 0.3s;
            cursor: pointer;
            flex: 1;
            min-width: 150px;
        }

        .timeline-item:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }

        /* Content Section */
        .content-section {
            padding: 2rem 5%;
            background: var(--light);
            margin-top: 1%;
        }

        .content-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 5rem;
            align-items: center;
        }

        .content-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            overflow: hidden;
        }

        .content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content-text h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        /* FAQ Items */
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question h3 {
            color: #333;
            font-size: 22px;
            font-weight: 800;
            margin: 0;
            flex: 1;
            font-family: ;
        }

        .toggle-icon {
            font-size: 24px;
            font-weight: bold;
            color: #666;
            transition: transform 0.3s ease, color 0.3s ease;
            margin-left: 15px;
            min-width: 24px;
            text-align: center;
        }

        .faq-item.active .toggle-icon {
            transform: rotate(180deg);
            color: #007bff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px 25px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95em;
        }

        /* Amenities Section */
        .amenities {
            padding: 3rem 5%;
            background: white;
        }

        .amenities-container {
            max-width: 100%;
            margin: 10px auto;
            width: 1400px;
        }

        .amenities-filter {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: var(--primary);
            color: white;
            padding: 1rem 3rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #ff6a02;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .amenity-card {
            background: var(--light);
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s;
            border: 2px solid transparent;
            padding: 1rem;
            text-align: center;
        }

        .amenity-card:hover {
            background: var(--secondary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .amenity-card.hidden {
            display: none;
        }

        .amenity-card[data-category="facilities"] {
            background: rgba(201, 169, 110, 0.1);
        }

        .amenity-card[data-category="services"] {
            background: rgba(44, 62, 80, 0.1);
        }

        .amenity-card[data-category="recreational"] {
            background: rgba(26, 37, 47, 0.1);
        }

        /* Gallery Carousel */
        .gallery {
            padding: 2rem 5%;
            background: var(--accent);
            color: white;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            margin-top: 2rem;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 33.333%;
            padding: 0 1rem;
        }

        .carousel-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-image:hover {
            transform: scale(1.05);
        }

        .carousel-image.zoomed {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.5);
            z-index: 10000;
            width: 80vw;
            height: 80vh;
            max-width: 1200px;
            box-shadow: 0 20px 80px rgba(0,0,0,0.5);
        }

        .zoom-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            cursor: zoom-out;
        }

        .zoom-overlay.active {
            display: block;
        }

        .zoom-controls {
            position: fixed;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10001;
            display: none;
            gap: 1rem;
        }

        .zoom-controls.active {
            display: flex;
        }

        .zoom-btn {
            background: rgba(255,255,255,0.9);
            color: var(--primary);
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .zoom-btn:hover {
            background: var(--secondary);
            color: white;
            transform: scale(1.1);
        }

        .close-zoom {
            position: fixed;
            top: 30px;
            right: 30px;
            background: rgba(255,255,255,0.9);
            color: var(--primary);
            border: none;
            width: 50px;
            height: 50px;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10001;
            display: none;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-zoom.active {
            display: flex;
        }

        .close-zoom:hover {
            background: var(--secondary);
            color: white;
            transform: rotate(90deg) scale(1.1);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: var(--primary);
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: var(--secondary);
            color: white;
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        /* Testimonials Carousel */
        .testimonials {
            padding: 3rem 5%;
            background: white;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-carousel {
            position: relative;
            margin-top: 4rem;
            overflow: hidden;
            width: 100%;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
            width: 100%;
        }

        .testimonial-card {
            min-width: calc(50% - 1rem);
            padding: 0;
            position: relative;
            flex-shrink: 0;
        }

        .testimonial-card iframe {
            width: 100%;
            height: 400px;
            border-radius: 10px;
        }

        /* Client Speak */
        .client-speak {
            padding: 3rem 5%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .client-speak-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .client-carousel {
            position: relative;
            margin-top: 4rem;
            overflow: hidden;
            width: 100%;
        }

        .client-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
            width: 100%;
        }

       

        .testimonial-quote {
            font-size: 3rem;
            color: var(--secondary);
            font-family: ;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
        }

        .author-name {
            font-weight: 600;
            color: var(--primary);
        }

        .author-role {
            font-size: 0.9rem;
            color: #999;
        }

        /* Recognition */
        .recognition {
            padding: 3rem 5%;
            background: white;
        }

        .recognition-container {
            max-width: 1400px;
            margin: 0 auto;
        }
 .what {
    position: fixed;
    z-index: 9999;
    left: 6px;
    bottom: 20px;
    background: #4ccc5b;
    color: #fff;
    padding: 10px 0 0 12px;
    height: 55px;
    width: 54px;
    border-radius: 100px;
}
.what a i {
    font-size: 36px;
    color: #fff;
}

        .recognition-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8rem;
            margin-top: 1rem;
        }

        .recognition-card {
            background: rgb(255 255 255);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            border: solid #ccc 1px;
        }

        .recognition-card:hover {
            background: #ffffff;
            color: white;
            transform: scale(1.05);
        }

        .recognition-card h3 {
            font-family: ;
            font-size: 3rem;
            font-weight: 700;
        }

        /* Contact Section */
        .contact {
            padding: 4rem 5%;
            background: var(--accent);
            color: white;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h3 {
            font-family: ;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: #ff6701;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
        }

        .contact-form h4 {
            font-family: ;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .submit-btn {
            background: #ff6701 !important;
            color: white;
            padding: 1rem 3rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            padding: 2rem 5%;
            background: var(--primary);
            color: white;
            text-align: center;
        }

        footer h3 {
            font-family: ;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* ============================================
           MOBILE RESPONSIVE STYLES
           ============================================ */

        /* Tablets and Below (max-width: 1024px) */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 2rem;
            }

            .nav-links a {
                font-size: 0.85rem;
            }

            .overview-container,
            .content-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .carousel-item {
                min-width: 50%;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .client-card {
                min-width: calc(50% - 1rem);
            }
        }

        /* Mobile Devices (max-width: 768px) */
        @media (max-width: 768px) {
             .what {
    position: fixed;
    z-index: 9999;
    left: inherit;
    right: 20px;
    bottom: 150px;
    background: #4ccc5b;
    color: #fff;
    padding: 10px 0 0 12px;
    height: 55px;
    width: 54px;
    border-radius: 100px;
}
            /* Prevent horizontal overflow */
            * {
                max-width: 100%;
            }

            html, body {
                overflow-x: hidden;
                width: 100%;
            }

            /* Show mobile menu toggle */
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                order: 3;
            }

            /* Mobile Navigation */
            nav {
                padding: 1rem 4%;
                flex-wrap: wrap;
            }

            .logo img {
                width: 60%;
                max-width: 120px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 2rem 0;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                overflow-y: auto;
            }

            .nav-links.mobile-active {
                left: 0;
            }

            .nav-links a {
                width: 100%;
                padding: 1.5rem 2rem;
                text-align: left;
                border-bottom: 1px solid var(--border);
            }

            .enquire-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.75rem;
            }

            /* Hero Banner */
            .hero-banner {
                margin-top: 0px;
                height: 500px;
            }

            .hero-banner-content {
                padding: 0px 3.5rem;
            }

            .hero-banner-content h1 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .hero-banner-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .banner-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .banner-arrow.left {
                left: 10px;
            }

            .banner-arrow.right {
                right: 10px;
            }

            .banner-dots {
                bottom: 20px;
                gap: 8px;
            }

            .banner-dot {
                width: 10px;
                height: 10px;
            }

            /* Sections */
            .overview,
            .features,
            .journey,
            .content-section,
            .amenities,
            .gallery,
            .testimonials,
            .client-speak,
            .recognition,
            .contact {
                padding: 4rem 4%;
                overflow-x: hidden;
                width: 100%;
            }

            .overview-container,
            .features-container,
            .journey-container,
            .content-container,
            .amenities-container,
            .gallery-container,
            .testimonials-container,
            .client-speak-container,
            .recognition-container,
            .contact-container {
                width: 100%;
                max-width: 100%;
            }

            .overview-container,
            .content-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .overview-image,
            .content-image {
                height: 300px;
                box-shadow: 10px 10px 0 var(--secondary);
            }

            .section-title {
                font-size: 2.5rem;
            }

            .section-title::after {
                width: 60px;
            }

            .overview-subtitle {
                font-size: 1.5rem;
            }

            /* Features Grid */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2.5rem;
            }

            .feature-image {
                height: 200px;
            }

            .feature-content {
                padding: 1.5rem;
            }

            /* Timeline */
            .timeline {
                flex-direction: column;
                gap: 1rem;
            }

            .timeline::before {
                display: none;
            }

            .timeline-item {
                width: 100%;
                padding: 1.5rem;
                font-size: 15px;
            }

            /* Amenities */
            .amenities-filter {
                flex-direction: column;
                gap: 1rem;
            }

            .filter-btn {
                width: 100%;
                padding: 0.9rem 2rem;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .amenity-card {
                font-size: 1rem;
                padding: 1.5rem;
            }

            /* Gallery */
            .carousel-item {
                min-width: 100%;
                padding: 0 0.5rem;
            }

            .carousel-image {
                height: 300px;
            }

            .carousel-image.zoomed {
                width: 95vw;
                height: 70vh;
                transform: translate(-50%, -50%) scale(1);
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .zoom-controls {
                bottom: 20px;
                gap: 0.7rem;
            }

            .zoom-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .close-zoom {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            /* Testimonials */
            .testimonials {
                padding: 4rem 4%;
            }

            .testimonials-carousel {
                margin-top: 2.5rem;
            }

            .testimonial-track {
                gap: 1rem;
            }

            .testimonial-card {
                min-width: 100%;
                padding: 0;
            }

            .testimonial-card iframe {
                height: 300px;
            }

            /* Client Speak */
            .client-speak {
                padding: 4rem 4%;
            }

            .client-carousel {
                margin-top: 2.5rem;
            }

            .client-track {
                gap: 1rem;
            }

            .client-card {
                min-width: 100%;
                padding: 2rem 1.5rem;
            }

            .testimonial-quote {
                font-size: 2.5rem;
            }

            .testimonial-text {
                font-size: 1rem;
                line-height: 1.6;
            }

            .author-avatar {
                width: 45px;
                height: 45px;
            }

            .author-name {
                font-size: 1rem;
            }

            .author-role {
                font-size: 0.85rem;
            }

            /* Recognition */
            .recognition-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .recognition-card {
                padding: 2.5rem;
            }

            .recognition-card h3 {
                font-size: 2rem;
            }

            /* Contact */
            .contact-info h3 {
                font-size: 2rem;
            }

            .contact-item {
                font-size: 1rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .contact-form h4 {
                font-size: 1.6rem;
            }

            /* Modal */
            .modal-body {
                padding: 1.5rem;
            }

            .modal-header h2 {
                font-size: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* FAQ */
            .faq-question {
                padding: 15px 18px;
            }

            .faq-question h3 {
                font-size: 18px;
            }

            .toggle-icon {
                font-size: 20px;
                margin-left: 10px;
            }

            .content-text h3 {
                font-size: 2rem;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .hero-banner {
                height: 388px;
            }
            
            .none1{display:none; }

            .hero-banner-content h1 {
                font-size: 2rem;
            }

            .hero-banner-content p {
                font-size: 17px;
                font-weight: 900;
                line-height: 21px;
            }

            .section-title {
                font-size: 2rem;
            }

            .overview-image,
            .content-image {
                height: 250px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .banner-arrow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .banner-arrow.left {
                left: 5px;
            }

            .banner-arrow.right {
                right: 5px;
            }

            .modal-header {
                padding: 1.5rem;
            }

            .modal-header h2 {
                font-size: 1.6rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .testimonial-card iframe {
                height: 250px;
            }

            .client-card {
                padding: 1.5rem 1rem;
            }

            .testimonial-quote {
                font-size: 2rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }
        }

        /* Landscape Orientation */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero-banner {
                height: 100vh;
            }

            .hero-banner-content h1 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .hero-banner-content p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a,
            .enquire-btn,
            .filter-btn,
            .carousel-btn,
            .banner-arrow,
            .zoom-btn,
            .close-zoom {
                min-height: 44px;
            }
        }

        /* Print Styles */
        @media print {
            nav,
            .hero-banner,
            .enquire-btn,
            .modal-overlay,
            .banner-arrow,
            .carousel-btn,
            .zoom-controls,
            .close-zoom,
            .mobile-menu-toggle,
            footer {
                display: none !important;
            }

            body {
                font-size: 12pt;
                line-height: 1.5;
            }
        }


.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding: 30px;
}

.amenities-grid img {width: 64%;height: auto;text-align: center;margin: 0px auto;}

.amenity-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-grid;
  font-weight: 600;
}

.amenity-card i {
  font-size: 28px;
  color: #4f46e5;
  margin-bottom: 10px;
}

.amenity-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000;
  border: solid #dfdfdf 1px;
}

.amenity-card:hover i {
  color: #ff4d4d;
}


 .testimonials-section {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .client-carousel {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .client-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
        }

        .client-card {
            min-width: calc(33.333% - 20px);
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .testimonial-quote {
            font-size: 80px;
            line-height: 0;
            margin-bottom: 20px;
            font-family: Georgia, serif;
            opacity: 0.2;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 30px;
            min-height: 100px;
            color: #000;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--border);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .author-avatar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
        }

        .author-name {
            font-weight: 700;
            color: var(--dark);a
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #000;
        }

        .author-role {
            color: var(--gray);
            font-size: 0.9rem;
            color: #99d575;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ff6701;
            border: none;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
            color: var(--dark);
        }

        .carousel-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        /* Tablet */
        @media (max-width: 992px) {
            .client-card {
                min-width: calc(50% - 15px);
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .client-carousel {
                padding: 0 50px;
            }
        }

        /* Mobile */
        @media (max-width: 640px) {
            .client-card {
                min-width: 100%;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .client-carousel {
                padding: 0 40px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .client-card {
                padding: 30px 25px;
            }

            .testimonial-text {
                font-size: 0.95rem;
                min-height: auto;
            }
        }

        /* Auto-play indicator */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .auto-play-indicator {
            animation: pulse 2s ease-in-out infinite;
        }


 

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 11px;
            background-clip: text;
            position: relative;
            padding-bottom: 20px;
        }

        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            display: none;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px 25px;
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .video-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .play-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
            z-index: 2;
        }

        .testimonial-card:hover .play-icon {
            opacity: 1;
        }

        .play-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid var(--primary);
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 25px;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .testimonial-card {
                border-radius: 20px;
            }

            .video-info {
                padding: 15px 20px;
            }

            .video-title {
                font-size: 1rem;
            }

            .video-meta {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0px 0px;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .testimonial-card {
                border-radius: 16px;
            }
            
            .none1{display:none; }
        }

        /* Animation on scroll */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .testimonial-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .testimonial-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .testimonial-card:nth-child(6) {
            animation-delay: 0.6s;
        }



 .client-speak {
            width: 100%;
        }

        .client-speak-container {
            max-width: 1400px;
            margin: 0 auto;
        }

       

        .testimonials-section {
            position: relative;
        }

        .carousel-wrapper {
            position: relative;
            padding: 0 0px;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .carousel-item {
            flex: 0 0 calc(33.333% - 20px);
            min-width: calc(33.333% - 20px);
        }

        .client-card {
            background: white;
            border-radius: 24px;
            padding: 40px 35px;
            transition: all 0.4s ease;
            height: 100%;
        }

        .client-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(79, 70, 229, 0.3);
        }



        
        
        

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 35px;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
        }

        .dot:hover:not(.active) {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .carousel-item {
                flex: 0 0 calc(50% - 15px);
                min-width: calc(50% - 15px);
            }

            .section-title {
                font-size: 2.5rem;
            }

            .carousel-wrapper {
                padding: 0 60px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
           
           .none1{display:none; }

            .carousel-item {
                flex: 0 0 93%;
                /* min-width: 100%; */
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 7px;
            }

            .carousel-wrapper {
                padding: 0 50px;
            }

            .client-card {
                padding: 39px 50px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .carousel-btn.prev {
                left: 5px;
            }

            .carousel-btn.next {
                right: 5px;
            }

            .testimonial-quote {
                font-size: 70px;
            }

            .testimonial-text {
                font-size: 1rem;
                min-height: auto;
            }

            .carousel-dots {
                margin-top: 35px;
            }
        }

        @media (max-width: 480px) {
            .carousel-wrapper {
                padding: 0 0px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }



/* Mobile view - 2 cards per row */
@media (max-width: 768px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px;
    }
    
    .amenity-card {
        width: 100%;
    }
    
    .amenity-card img {
        width: 100%;
        height: auto;
        max-width: 60px;
        margin: 0 auto 8px;
        display: block;
    }
}

/* Tablet view - 3 cards per row (optional) */
@media (min-width: 769px) and (max-width: 1024px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Desktop view - 4 cards per row (optional) */
@media (min-width: 1025px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* Mobile view - 2 cards per row */
@media (max-width: 768px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px;
    }
    
    .amenity-card {
        width: 100%;
    }
    
    .amenity-card img {
        width: 100%;
        height: auto;
        max-width: 60px;
        margin: 0 auto 8px;
        display: block;
    }
}

/* Tablet view - 3 cards per row (optional) */
@media (min-width: 769px) and (max-width: 1024px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Desktop view - 5 cards per row */
@media (min-width: 1025px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}
/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    display: none;
}

.zoom-overlay.active {
    display: block;
}

/* Zoomed Image */
.gallery-item img.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 9999;
    max-width: 90vw;
    max-height: 90vh;
    cursor: move;
    transition: transform 0.3s ease;
}

/* Close Button */
.close-zoom {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    display: none;
    color: #333;
    line-height: 1;
}

.close-zoom.active {
    display: block;
}

.close-zoom:hover {
    background: #f0f0f0;
}

/* Zoom Controls */
.zoom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 25px;
    display: none;
    gap: 10px;
    z-index: 10000;
}

.zoom-controls.active {
    display: flex;
}

.zoom-controls button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    min-width: 40px;
}

.zoom-controls button:hover {
    background: #0052a3;
}
.image-wrapper {
    display: block;
}

.image-title {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
    display: block;
}

.image-title::after {
    content: '';
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ff7801;
}

.content-image {
    position: relative;
}

.content-image img {
    display: block;
    width: 100%;
    height: auto;
}


