 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            width: 100%;
            height: 100%;
        }

        body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            
            /* CRITICAL FIX: This hides the horizontal scrollbar caused by 100vw width */
            overflow-x: hidden !important; 
        }

        /* =========================================
           2. HEADER & NAVIGATION
           ========================================= */
        header {
            background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: opacity 0.3s ease;
            width: 100%;
        }

        header.fade-out {
            opacity: 0.7;
        }

        header:hover.fade-out {
            opacity: 1; /* Restore opacity on hover */
        }

        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
        }

        .special-box {
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: bold;
            color: #fff;
            background: #111;
            border-radius: 20px;
            text-align: center;
            animation: glow 1.8s infinite alternate;
        }

        .special-box a {
            color: white !important;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #00eaff; }
            to { box-shadow: 0 0 20px #00eaff; }
        }

        /* =========================================
           3. HERO SECTION (FIXED & FULL SCREEN)
           ========================================= */
        .hero-footer {
            position: relative;
            
            /* THE NUCLEAR FIX: Forces full viewport width */
            width: 100vw; 
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            
            /* Height Settings */
            min-height: 100vh; 
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            
            /* Background */
            background: linear-gradient(135deg, #0a192f 0%, #112d45 50%, #0a192f 100%);
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
            
            padding: 80px 20px; 
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Dark Overlay */
        .hero-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.5) 100%);
            z-index: 1;
        }

        .hero-footer > * {
            position: relative;
            z-index: 2;
        }

        .badge {
            display: inline-block;
            background-color: rgba(255, 215, 0, 0.15);
            color: #ffd700;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 215, 0, 0.4);
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: slideInDown 0.8s ease;
        }

        .hero-footer h1 {
            font-family: 'Playfair Display', serif;
            /* Fluid Typography: Scales between 2rem and 4.5rem */
            font-size: clamp(2rem, 5vw, 4.5rem);
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            padding: 0 10px;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .hero-footer p {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            margin-bottom: 40px;
            color: #e0e0e0;
            padding: 0 15px;
            max-width: 800px;
            line-height: 1.6;
            animation: slideInUp 0.8s ease 0.4s backwards;
        }

        .button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            animation: slideInUp 0.8s ease 0.6s backwards;
        }

        .cta-button {
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            min-width: 160px;
        }

        .primary {
            background-color: #ffd700;
            color: #0a192f;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .secondary {
            background-color: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.6);
        }

        .cta-button:hover {
            transform: translateY(-5px);
        }

        .primary:hover {
            background-color: #ffed4e;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }

        .secondary:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: #fff;
        }

        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* =========================================
           4. SECTIONS (General)
           ========================================= */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a3a52;
            text-align: center;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #ff6b35;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        h3 {
            color: #2c5aa0;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* =========================================
           5. FEATURES
           ========================================= */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid #ff6b35;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* =========================================
           6. TESTIMONIALS
           ========================================= */
        .testimonials-section {
            background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
            color: white;
            width: 100%;
            max-width: 100%; /* Ensure full width background */
        }

        /* Special handling to ensure full width background for this section */
        #testimonials-wrapper {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
            padding: 5rem 0;
        }

        #testimonials-wrapper .content-limit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials-section h2 {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #ffd700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* =========================================
           7. GALLERY
           ========================================= */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 1;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .gallery-item > div {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover > div {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: white;
            font-size: 2.5rem;
            transform: scale(0.8);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay span {
            transform: scale(1);
        }

        /* =========================================
           8. NEWS
           ========================================= */
       .news-section {
    background: #f8f9fa;
    width: 100%;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
}

.news-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .news-card-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .news-card-content {
            padding: 2rem;
        }

        .news-date {
            color: #ff6b35;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .news-card h4 {
            color: #1a3a52;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* =========================================
           9. CONTACT
           ========================================= */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1a3a52;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        .submit-btn {
            background: #ff6b35;
            color: white;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            width: 100%;
            transition: background 0.3s, transform 0.2s;
        }

        .submit-btn:hover {
            background: #ff5722;
            transform: translateY(-2px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid #1a3a52;
        }

        .info-item h4 {
            color: #ff6b35;
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            padding: 0;
            background: transparent;
            box-shadow: none;
            border: none;
        }

        .social-links a {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
            color: #ff6b35;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: #ff6b35;
            color: white;
            transform: translateY(-3px);
        }

        /* =========================================
           10. FOOTER
           ========================================= */
        footer {
            background: #1a3a52;
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: #ffd700;
            font-size: 1.2rem;
        }

        .footer-section a {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s, padding 0.3s;
        }

        .footer-section a:hover {
            color: #ffd700;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            color: #8a9bb0;
            font-size: 0.9rem;
        }

        /* =========================================
           11. MODAL
           ========================================= */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 200;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: transparent;
            padding: 0;
            max-width: 800px;
            width: 90%;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: transparent;
            color: white;
            border: 2px solid white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: white;
            color: #1a3a52;
            transform: rotate(90deg);
        }

        .modal-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        /* =========================================
           12. RESPONSIVE MEDIA QUERIES
           ========================================= */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #1a3a52;
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(255,255,255,0.1);
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            /* Mobile Hero Adjustments */
            .hero-footer {
                padding: 120px 20px 60px 20px;
            }
            
            .button-group {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 3rem 1.5rem;
            }
        }
        .gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
