
        :root {
            --glass-blue: rgba(74, 144, 226, 0.85);
            --deep-maroon: #8B0000;
            --sacred-gold: #D4AF37;
            --pure-white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-blue: #1A365D;
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .scripture-font {
            font-family: 'Crimson Text', serif;
            font-style: italic;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
        }

        header.scrolled {
            padding: 0.6rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-strong);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
        }

        .logo-crest {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .logo-crest::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3), transparent 70%);
        }

        .logo-text {
            margin-left: 1rem;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0.2rem;
            color: var(--dark-blue);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.9rem;
            color: var(--deep-maroon);
            font-weight: 500;
            letter-spacing: 1px;
        }


/* Replace the .logo-crest styles with this */
.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05); /* Subtle pop on hover */
}


        .nav-desktop {
            display: flex;
            align-items: center;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
        }

        .nav-desktop li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--deep-maroon);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sacred-gold);
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: -2rem;
            width: 800px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-strong);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 100;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .has-mega-menu:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .mega-menu-column h4 {
            font-size: 1rem;
            color: var(--deep-maroon);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(139, 0, 0, 0.1);
        }

        .mega-menu-column a {
            display: block;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            color: #555;
            transition: all 0.3s ease;
        }

        .mega-menu-column a:hover {
            color: var(--deep-maroon);
            padding-left: 0.5rem;
        }

        .mega-menu-column i {
            margin-right: 0.5rem;
            color: var(--glass-blue);
            width: 18px;
            text-align: center;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/1.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/4.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/elders.jpg');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--deep-maroon);
            color: white;
            border: 2px solid var(--deep-maroon);
        }

        .btn-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--dark-blue);
            transform: translateY(-5px);
        }

        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--sacred-gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        /* Vision & Mission */
        .vision-mission {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            box-shadow: var(--shadow-soft);
            margin-top: -50px;
            position: relative;
            z-index: 3;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .vm-card {
            background: rgba(248, 249, 250, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--sacred-gold);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background: var(--glass-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .vm-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .vm-card p {
            color: #555;
            font-size: 1rem;
        }

        /* Ministries */
        .ministries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .ministry-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .ministry-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .ministry-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .ministry-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .ministry-overlay h4 {
            color: white;
            font-size: 1.3rem;
        }

        .ministry-content {
            padding: 1.5rem;
        }

        .ministry-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .ministry-link {
            color: var(--deep-maroon);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .ministry-link i {
            transition: transform 0.3s ease;
        }

        .ministry-link:hover i {
            transform: translateX(5px);
        }

        /* Leadership Preview */
        .leadership-preview {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 4rem;
            margin-top: 3rem;
        }

        .leaders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .leader-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
        }

        .leader-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: 600;
        }

        .leader-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }

        .leader-card p {
            color: var(--deep-maroon);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .leader-card .scripture-font {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }


        /* Leadership Avatar with Image Support */
.leader-avatar-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leader-avatar-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.leader-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.leader-card:hover .leader-avatar-image {
    transform: scale(1.05);
}

.leader-card:hover .leader-avatar-fallback {
    transform: scale(1.05);
}

        /* Institutions */
        .institutions {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            box-shadow: var(--shadow-soft);
        }

        .institution-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .institution-card:last-child {
            margin-bottom: 0;
        }

        .institution-img {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .institution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .institution-card:hover .institution-img img {
            transform: scale(1.05);
        }

        .institution-content h3 {
            font-size: 1.8rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .institution-content p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Events & Announcements */
        .events {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
            border-radius: 20px;
            padding: 4rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
        }

        .event-date {
            background: var(--deep-maroon);
            color: white;
            padding: 1rem;
            text-align: center;
        }

        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }

        .event-date .month {
            font-size: 1rem;
            font-weight: 500;
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--dark-blue);
        }

        .event-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sacred-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }


.footer-logo {
    display: flex;
    justify-content: flex-start; /* Aligns with the heading and text below */
}

/* On mobile, center the logo if you prefer a centered layout */
@media (max-width: 768px) {
    .footer-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo {
        justify-content: center;
    }
}



        

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--sacred-gold);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

       



 /* Chatbot Styles */
    .chatbot-container {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
    }

    .chatbot-toggle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--deep-maroon), var(--glass-blue));
        color: white;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: var(--shadow-strong);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .chatbot-toggle:hover {
        transform: scale(1.1);
    }

    .chatbot-window {
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 350px;
        height: 500px;
        background: white;
        border-radius: 15px;
        box-shadow: var(--shadow-strong);
        display: none;
        flex-direction: column;
        overflow: hidden;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .chatbot-window.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .chatbot-header {
        background: linear-gradient(135deg, var(--dark-blue), var(--deep-maroon));
        color: white;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chatbot-title {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .chatbot-title i {
        font-size: 1.2rem;
    }

    .chatbot-title h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .chatbot-status {
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
        margin-left: 0.5rem;
    }

    .chatbot-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .chatbot-close:hover {
        opacity: 1;
    }

    .chatbot-messages {
        flex: 1;
        padding: 1.5rem;
        overflow-y: auto;
        background: #f8f9fa;
    }

    .chatbot-welcome {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .chatbot-avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .message-content {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow-soft);
        max-width: 85%;
    }

    .message-content p {
        margin: 0.5rem 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .quick-questions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .quick-btn {
        background: var(--light-gray);
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        color: var(--dark-blue);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .quick-btn:hover {
        background: var(--glass-blue);
        color: white;
        border-color: var(--glass-blue);
    }

    .message {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .message.user {
        flex-direction: row-reverse;
    }

    .message.bot .message-content {
        background: white;
    }

    .message.user .message-content {
        background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
        color: white;
    }

    .chatbot-input {
        padding: 1rem;
        border-top: 1px solid #eee;
        display: flex;
        gap: 0.5rem;
        background: white;
    }

    .chatbot-input input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 25px;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .chatbot-input input:focus {
        border-color: var(--glass-blue);
    }

    #chatbotSend {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--deep-maroon), var(--glass-blue));
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    #chatbotSend:hover {
        transform: scale(1.1);
    }

    /* Typing indicator */
    .typing-indicator {
        display: flex;
        gap: 0.3rem;
        padding: 1rem;
    }

    .typing-dot {
        width: 8px;
        height: 8px;
        background: var(--glass-blue);
        border-radius: 50%;
        animation: typing 1.4s infinite;
    }

    .typing-dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes typing {
        0%, 60%, 100% {
            transform: translateY(0);
        }
        30% {
            transform: translateY(-10px);
        }
    }

    /* Mobile responsiveness */
    @media (max-width: 480px) {
        .chatbot-window {
            width: 300px;
            height: 450px;
            right: -1rem;
        }
        
        .chatbot-container {
            bottom: 1rem;
            right: 1rem;
        }
    }











        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .vm-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .institution-card {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .hero-content h2 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .section {
                padding: 3rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .vision-mission, .leadership-preview, .institutions, .events {
                padding: 2.5rem 1.5rem;
            }
            
            .events-grid, .ministries-grid, .leaders-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .logo-text h1 {
                font-size: 1.4rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 2000;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-nav a {
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav a i {
            transition: transform 0.3s ease;
        }

        .mobile-nav a.active i {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(248, 249, 250, 0.8);
            border-radius: 10px;
            margin: 0.5rem 0 1rem;
        }

        .mobile-submenu.active {
            max-height: 500px;
            padding: 1rem;
        }

        .mobile-submenu a {
            font-size: 0.95rem;
            padding: 0.7rem 1rem;
            color: #555;
        }

        .mobile-submenu a:hover {
            color: var(--deep-maroon);
        }
    





