  :root {
            --primary-gold: #D4AF37;
            --primary-red: #B22222;
            --primary-cream: #FFF8F0;
            --primary-brown: #654321;
            --accent-green: #228B22;
            --accent-pink: #FF69B4;
            --text-dark: #333333;
            --text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        .tamil-font {
            font-family: 'Noto Sans Tamil', sans-serif;
        }
        
        /* Google Translate Custom Styling */
        #google_translate_element {
            display: inline-block;
            margin-left: 15px;
        }
        
        .goog-te-gadget {
            font-family: 'Poppins', sans-serif !important;
        }
        
        .goog-te-gadget-simple {
            background: rgba(255,255,255,0.1) !important;
            border: 1px solid rgba(255,255,255,0.3) !important;
            border-radius: 20px !important;
            padding: 5px 15px !important;
            color: white !important;
            font-size: 14px !important;
            cursor: pointer !important;
        }
        
        .goog-te-menu-value span {
            color: white !important;
        }
        
        .goog-te-menu-value span:nth-child(3) {
            display: none !important;
        }
        
        .goog-te-gadget-icon {
            display: none !important;
        }
        
        /* Hide Google Translate Banner */
        .goog-te-banner-frame {
            display: none !important;
        }
        
        .skiptranslate {
            display: none !important;
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--primary-red);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
        }
        
        .top-bar a:hover {
            color: var(--primary-gold);
        }
        
        /* Main Header */
        .main-header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .main-header.scrolled {
            padding: 5px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }
        
        .logo h1 {
            color: var(--primary-red);
            font-size: 28px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }
        
        .logo .gold {
            color: var(--primary-gold);
        }
        
        .logo .tagline {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
            font-style: italic;
        }
        
        /* Navigation */
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-red);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--primary-gold);
            color: var(--primary-red) !important;
            padding: 10px 25px !important;
            border-radius: 25px;
            font-weight: 600 !important;
        }
        
        .nav-cta:hover {
            background: var(--primary-red);
            color: white !important;
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--primary-red);
            cursor: pointer;
        }
        
  
 

         /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--primary-red);
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            /*height: 100vh;*/
            height: 100%;
            background: white;
            z-index: 1001;
            transition: left 0.3s ease;
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
            padding: 80px 30px 30px;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav-menu li {
            margin-bottom: 20px;
        }
        
        .mobile-nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s;
        }
        
        .mobile-nav-menu a:hover,
        .mobile-nav-menu a.active {
            color: var(--primary-red);
        }
        
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--primary-red);
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
        }
        
        .menu-overlay.active {
            display: block;
        }
        
        
     
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 1200px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Button Styles */
        .btn-gold {
            background: var(--primary-gold);
            color: var(--primary-red);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-gold:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-red {
            background: var(--primary-red);
            color: white;
            border: 2px solid var(--primary-red);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-red:hover {
            background: transparent;
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(139,0,0,0.2);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            color: var(--primary-red);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary-gold);
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        /* About Section */
        .about-section {
            background: var(--primary-cream);
        }
        
        /* Facilities Section */
        .facility-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
            text-align: center;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
        }
        
        .facility-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        .facility-title {
            color: var(--primary-red);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Rooms Section */
   
        
  
   
        
    
        
       
    
        
        /* Hall Specification Section */
    
   
   



        
        /* Services Section */
        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gold);
            color: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
        }
        
        .service-title {
            color: var(--primary-red);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Video Parallax Section */
    
        
     
    
     
        
     
      
        
        /* Gallery Section */
      
  
  
    
        
   
      
        /* Contact Section */
   
       
        
        /* Footer */

    
        
   
    
        
     
      
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary-gold);
            color: var(--primary-red);
            transform: translateY(-3px);
        }
      
        /* Policy Badges */
        .policy-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 14px;
        }
        
        .policy-badge.allowed {
            border-left: 4px solid var(--accent-green);
        }
        
        .policy-badge.not-allowed {
            border-left: 4px solid var(--primary-red);
        }
        
        /* Stats Counter */
        .stats-counter {
            background: var(--primary-red);
            color: white;
            padding: 50px 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
        }
        
        .stat-box .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }
        
        .stat-box .label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* FAQ Section */
      
        
     
       
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-stats {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px 30px;
                transition: right 0.3s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .btn-gold,
            .btn-red {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .top-bar .col-md-6 {
                text-align: center !important;
                margin-bottom: 5px;
            }
            
            .goog-te-gadget-simple {
                padding: 3px 10px !important;
                font-size: 12px !important;
            }
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        /* About Section */
.about-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

/* Swapping Images Container */
.about-images-swap {
    position: relative;
    height: 500px;
    margin-right: 30px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: absolute;
    width: 80%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* First Image - Starts on top */
.image-wrapper.image-1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-2deg);
    animation: swapTop 6s infinite ease-in-out;
}

/* Second Image - Starts at bottom */
.image-wrapper.image-2 {
    width: 70%;
    height: 320px;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 8px solid white;
    transform: rotate(2deg);
    animation: swapBottom 6s infinite ease-in-out;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}






/* Swapping Animation Keyframes */
@keyframes swapTop {
    0%, 40% {
        top: 0;
        left: 0;
        z-index: 2;
        transform: rotate(-2deg) scale(1);
        width: 80%;
        height: 380px;
    }
    50%, 90% {
        top: 120px;
        left: 20%;
        z-index: 1;
        transform: rotate(2deg) scale(0.9);
        width: 70%;
        height: 320px;
        border: 8px solid white;
    }
    100% {
        top: 0;
        left: 0;
        z-index: 2;
        transform: rotate(-2deg) scale(1);
        width: 80%;
        height: 380px;
        border: none;
    }
}

@keyframes swapBottom {
    0%, 40% {
        bottom: 0;
        right: 0;
        z-index: 1;
        transform: rotate(2deg) scale(0.9);
        width: 70%;
        height: 320px;
        border: 8px solid white;
    }
    50%, 90% {
        bottom: 120px;
        right: 20%;
        z-index: 2;
        transform: rotate(-2deg) scale(1);
        width: 80%;
        height: 380px;
        border: none;
    }
    100% {
        bottom: 0;
        right: 0;
        z-index: 1;
        transform: rotate(2deg) scale(0.9);
        width: 70%;
        height: 320px;
        border: 8px solid white;
    }
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 30px;
    right: -15px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.3);
    z-index: 3;
    animation: badgeFloat 3s infinite ease-in-out;
}

.floating-badge i {
    animation: badgeRotate 3s infinite linear;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes badgeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Content Styling */
.about-content {
    padding-left: 40px;
}

.section-title {
    color: var(--primary-red);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-red));
    border-radius: 2px;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Button Styles */
.btn-gold, .btn-red {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(45deg, var(--primary-gold), #ffd700);
    color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-red {
    background: linear-gradient(45deg, var(--primary-red), #c41e3a);
    color: white;
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.3);
}

.btn-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(178, 34, 34, 0.4);
    color: white;
}

.btn-gold i, .btn-red i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i, .btn-red:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-images-swap {
        height: 450px;
    }
    
    .image-wrapper.image-1 {
        height: 350px;
    }
    
    .image-wrapper.image-2 {
        height: 280px;
    }
    
    @keyframes swapTop {
        0%, 40% {
            height: 350px;
        }
        50%, 90% {
            height: 280px;
        }
        100% {
            height: 350px;
        }
    }
    
    @keyframes swapBottom {
        0%, 40% {
            height: 280px;
        }
        50%, 90% {
            height: 350px;
        }
        100% {
            height: 280px;
        }
    }
}

@media (max-width: 992px) {
    .about-images-swap {
        height: 400px;
        margin-right: 0;
        margin-bottom: 50px;
    }
    
    .image-wrapper.image-1 {
        width: 75%;
        height: 300px;
    }
    
    .image-wrapper.image-2 {
        width: 65%;
        height: 250px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    @keyframes swapTop {
        0%, 40% {
            height: 300px;
        }
        50%, 90% {
            height: 250px;
        }
        100% {
            height: 300px;
        }
    }
    
    @keyframes swapBottom {
        0%, 40% {
            height: 250px;
        }
        50%, 90% {
            height: 300px;
        }
        100% {
            height: 250px;
        }
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-images-swap {
        height: 350px;
    }
    
    .image-wrapper.image-1 {
        width: 80%;
        height: 250px;
    }
    
    .image-wrapper.image-2 {
        width: 70%;
        height: 200px;
    }
    
    .floating-badge {
        right: -10px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content p {
        font-size: 1.05rem;
    }
    
    .btn-gold, .btn-red {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-images-swap {
        height: 300px;
    }
    
    .image-wrapper.image-1 {
        height: 200px;
    }
    
    .image-wrapper.image-2 {
        height: 160px;
    }
    
    @keyframes swapTop {
        0%, 40% {
            height: 200px;
        }
        50%, 90% {
            height: 160px;
        }
        100% {
            height: 200px;
        }
    }
    
    @keyframes swapBottom {
        0%, 40% {
            height: 160px;
        }
        50%, 90% {
            height: 200px;
        }
        100% {
            height: 160px;
        }
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .floating-badge {
        top: 20px;
        right: -5px;
    }
}



/* Venue Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-tagline {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    color: var(--primary-red);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-sub-heading {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-sub-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

/* Stats Cards */
.amenities-stats {
    padding: 40px 0;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #9a1a1a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.stat-content {
    padding: 10px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Amenity Cards */
.amenity-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.amenity-content h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.amenity-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Policy Cards */













/* Additional Information */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.info-card h4 {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 1rem;
}

.info-list li i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-sub-heading {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .amenity-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .amenity-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .amenity-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-sub-heading {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    

 
}


/* Image Gallery with Stats */
/* Simple Gallery Cards - Text Definitely Visible */
.gallery-card-simple {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: 300px;
    transition: transform 0.3s ease;
}

.gallery-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-image-simple {
    width: 100%;
    height: 100%;
}

.gallery-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card-simple:hover .gallery-image-simple img {
    transform: scale(1.1);
}

/* Text Overlay - ALWAYS VISIBLE */
.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        transparent 100%);
    color: white;
    z-index: 10;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37; /* Gold color */
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: 'Poppins', sans-serif;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-family: 'Poppins', sans-serif;
}

/* If still not visible, try this ULTIMATE visible version */
.text-overlay-ultimate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.85); /* Solid black background */
    color: white;
    z-index: 100;
    border-top: 3px solid #D4AF37; /* Gold border on top */
}

.stat-big-ultimate {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0;
    line-height: 1;
    text-shadow: 3px 3px 6px #000;
}

.stat-title-ultimate {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0 0 0;
    color: white;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-card-simple {
        height: 250px;
    }
    
    .stat-big {
        font-size: 3rem;
    }
    
    .stat-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-card-simple {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .text-overlay {
        padding: 20px;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .gallery-card-simple {
        height: 200px;
    }
    
    .text-overlay {
        padding: 15px;
    }
    
    .stat-big {
        font-size: 2.2rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}
        

/* Hero Video Section - No Content */
.hero-video-section {
    position: relative;
    height: 114vh;
    min-height: 600px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #FFD700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-video-section {
        min-height: 500px;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .video-control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-video-section {
        min-height: 400px;
    }
    
    .video-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Infrastructure Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Gallery Grid with GLightbox */
.gallery-grid {
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}











/* GLightbox Custom Styling */
.glightbox-container {
    background: rgba(0, 0, 0, 0.95);
}

.gslide-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.gslide-description {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.gclose {
    color: var(--primary-gold);
    font-size: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gclose:hover {
    color: var(--primary-red);
    opacity: 1;
    transform: scale(1.1);
}

.gprev, .gnext {
    color: var(--primary-gold);
    font-size: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gprev:hover, .gnext:hover {
    color: var(--primary-red);
    opacity: 1;
    transform: scale(1.1);
}

/* Load More Button */
#loadMoreGallery {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

#loadMoreGallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    
  
    
   
}

@media (max-width: 768px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
 
    
  
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
 
    
   
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question h4 {
    margin: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 500px;
    background: white;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ CTA */
.faq-cta {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border-top: 5px solid var(--primary-gold);
}

.faq-cta h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
}

.faq-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

/* Animation for FAQ opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer.active {
    animation: slideDown 0.4s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-answer.active {
        padding: 20px 25px;
    }
    
    .faq-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .faq-cta {
        padding: 30px 25px;
    }
    
    .faq-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-answer.active {
        padding: 15px 18px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-cta {
        padding: 25px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.4rem;
    }
}

/* Footer */
.footer {
    background: #222222;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-logo .gold {
    color: var(--primary-gold);
}

.footer-logo p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

/* Footer Contact Split Layout */
.footer-contact {
    height: 100%;
}

.footer-contact h4 {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-map h4 {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Contact Information Compact */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info li i {
    color: var(--primary-gold);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
    text-align: center;
}

.contact-info li p {
    color: #ddd;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.contact-info li a:hover {
    color: var(--primary-gold);
}

.contact-info li a:last-child {
    margin-bottom: 0;
}

/* Map Container */
.footer-map {
    height: 100%;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    height: calc(100% - 40px);
}

.map-container iframe {
    display: block;
    border: none;
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments for Split Layout */
@media (max-width: 992px) {
    .footer-contact h4,
    .footer-map h4 {
        font-size: 17px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .contact-info li {
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .contact-info li i {
        font-size: 16px;
    }
    
    .contact-info li p,
    .contact-info li a {
        font-size: 13px;
    }
    
    .map-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .col-lg-4:last-child .row {
        flex-direction: column;
    }
    
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-contact,
    .footer-map {
        height: auto;
    }
    
    .footer-contact h4,
    .footer-map h4 {
        text-align: center;
    }
    
    .contact-info li {
        text-align: left;
    }
    
    .map-container {
        height: 180px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .contact-info li {
        flex-direction: row;
        text-align: left;
    }
    
    .map-container {
        height: 160px;
    }
}