* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2c5282;
            --secondary: #f39c12;
            --dark: #1e3a5f;
            --light: #f8f9fa;
            --text: #2c3e50;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
            background: #000;
            position: relative;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .preloader.hide {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            color: var(--white);
        }

        .preloader-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            border: 4px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 12px 0;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            100% { left: 100%; }
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 8px;
            animation: fadeInLeft 1s;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .social-links {
            display: flex;
            gap: 15px;
            animation: fadeInRight 1s;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .social-links a {
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            padding: 5px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            transition: padding 0.3s;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            animation: fadeIn 1s;

    margin-left: -20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .logo-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
            animation: logoFloat 3s ease-in-out infinite;
            position: relative;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       .logo-text h2 {
    font-size: 19px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    } 
        .logo-text p {
            font-size: 12px;
            color: #7f8c8d;
            font-weight: 500;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            transition: all 0.3s;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .donate-btn {
            background: var(--secondary) !important;
            color: var(--white) !important;
            padding: 12px 35px !important;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .donate-btn:hover {
          background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 10;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background-color: var(--dark);
            transition: all 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 58, 95, 0.75);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 0 40px;
            animation: heroFadeIn 1.5s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            color: var(--secondary);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 30px;
            font-weight: 700;
            animation: slideDown 1s ease-out 0.3s both;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 5px 30px rgba(0,0,0,0.5);
            animation: slideUp 1s ease-out 0.5s both;
            color: var(--white);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 20px;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.8;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .hero-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .hero-btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.3);
            transition: left 0.5s;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(243, 156, 18, 0.6);
            background: #e67e22;
        }

        .hero-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .hero-btn-secondary:hover {
            background: var(--white);
            color: var(--dark);
            transform: translateY(-5px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 10;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-20px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        .scroll-indicator i {
            font-size: 40px;
            color: var(--white);
            opacity: 0.7;
        }

        /* Stats Section */
        .stats {
    background: var(--white);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--text);
    padding: 60px 40px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 3px solid var(--secondary);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.4s;
}

.stat-item:hover::after {
    width: 80%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stat-image {
    width: 40px;
    height: 40px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
}

.stat-number {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #7f8c8d;
}
.events {
    background: #fff;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.events-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1502635385003-ee1e6a1a742d?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.events .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop Grid - Side by Side */
.events-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.event-card-new {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.event-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.event-image-new {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.event-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.event-card-new:hover .event-image-new img {
    transform: scale(1.1);
}

.event-content-new {
    padding: 35px 30px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-time-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    z-index: 1;
}

.event-content-new h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 25px 0 15px;
    font-weight: 800;
    line-height: 1.3;
}

.event-pastor {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-location {
    color: #95a5a6;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.event-join-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    align-self: flex-start;
}

.event-join-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Events Navigation - Hidden by default on desktop */
.events-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.events-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.events-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.5);
    background: #e67e22;
}

.events-counter {
    font-size: 16px;
    font-weight: 700;
    color: #f39c12;
}
        /* About Section */
        .about {
            padding: 120px 40px;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        /* .about::before {
            content: '✝';
            position: absolute;
            font-size: 400px;
            color: rgba(243, 156, 18, 0.03);
            top: 50%;
            right: -100px;
            transform: translateY(-50%);
        } */

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 600px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 58, 95, 0.3);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .about-image:hover::after {
            opacity: 1;
        }

        .about-decorative {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 5px solid var(--secondary);
            border-radius: 30px;
            top: -30px;
            right: -30px;
            z-index: -1;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .about-text p {
            margin-bottom: 25px;
            color: #5a6c7d;
            font-size: 17px;
            line-height: 2;
        }

        .about-quote {
            font-style: italic;
            font-size: 22px;
            color: var(--dark);
            margin: 40px 0;
            padding: 35px 40px;
            border-left: 5px solid var(--secondary);
            background: var(--white);
            border-radius: 0 15px 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
        }

        .about-quote::before {
            content: '"';
            font-size: 80px;
            position: absolute;
            top: -20px;
            left: 20px;
            color: rgba(243, 156, 18, 0.2);
            font-family: Georgia, serif;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--white);
            border-radius: 15px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .about-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-feature i {
            font-size: 30px;
            color: var(--secondary);
        }

        .about-feature span {
            font-weight: 700;
            color: var(--dark);
        }

        /* Gallery Section */
        .gallery {
            padding: 120px 40px;
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:nth-child(1) { height: 400px; }
        .gallery-item:nth-child(2) { height: 300px; }
        .gallery-item:nth-child(3) { height: 350px; }
        .gallery-item:nth-child(4) { height: 300px; }

        .gallery-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.2) rotate(2deg);
        }


        /* Leadership Section */
        .leadership {
            background: var(--dark);
            color: var(--white);
            padding: 120px 40px;
            position: relative;
            overflow: hidden;
        }

        .leadership::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1), transparent 50%);
        }

        .leadership-slider {
            max-width: 1200px;
            margin: 60px auto 0;
            position: relative;
            min-height: 550px;
        }

        .leader-slide {
            display: none;
            opacity: 0;
        }

        .leader-slide.active {
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 80px;
            align-items: center;
            opacity: 1;
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .leader-image-container {
            position: relative;
        }

        .leader-image {
            width: 100%;
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            border: 5px solid var(--secondary);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            position: relative;
        }

        .leader-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(243, 156, 18, 0.1);
            z-index: 1;
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leader-decorative {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 5px solid rgba(243, 156, 18, 0.3);
            border-radius: 30px;
            bottom: -20px;
            left: -20px;
            z-index: -1;
        }

        .leader-content {
            text-align: left;
        }

        .leader-title {
            font-size: 16px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .leader-name {
            font-size: 48px;
            margin-bottom: 30px;
            font-weight: 900;
            line-height: 1.2;
        }

        .leader-bio {
            font-size: 17px;
            line-height: 2;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        .leader-social {
            display: flex;
            gap: 15px;
        }

        .leader-social a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
            font-size: 20px;
        }

        .leader-social a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--secondary);
            width: 40px;
            border-radius: 7px;
        }

        /* Ministries Section */
        .ministries {
            padding: 120px 40px;
            background: var(--light);
        }

        .ministries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .ministry-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .ministry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .ministry-card:hover::before {
            transform: scaleX(1);
        }

        .ministry-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .ministry-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .ministry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .ministry-card:hover .ministry-image img {
            transform: scale(1.15);
        }

        .ministry-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
            z-index: 2;
        }

        .ministry-content {
            padding: 40px 35px;
        }

        .ministry-card h3 {
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 18px;
            font-weight: 800;
        }

        .ministry-card p {
            color: #5a6c7d;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .learn-more {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            font-size: 15px;
        }

        .learn-more:hover {
            gap: 15px;
            color: #e67e22;
        }
.cta {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.7)), 
                url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.cta-reference {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-message {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.6);
    background: #e67e22;
}

   /* Contact Section */
        .contact {
            padding: 120px 40px;
            background: var(--dark);
            color: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 100px;
        }

        .contact-info {
            background: var(--secondary);
            padding: 70px 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
        }

        .contact-info-content {
            position: relative;
            z-index: 1;
        }

        .contact-icon {
            font-size: 80px;
            margin-bottom: 30px;
        }

        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 50px;
            font-weight: 900;
        }

        .contact-item {
            margin-bottom: 40px;
            padding-left: 60px;
            position: relative;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }

        .contact-item i {
            position: absolute;
            left: 12px;
            top: 12px;
            font-size: 22px;
        }

        .contact-item h4 {
            font-size: 14px;
            margin-bottom: 12px;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .contact-item p {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.6;
        }

        .contact-text h3 {
            font-size: 16px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .contact-text h2 {
            font-size: 52px;
            margin-bottom: 35px;
            font-weight: 900;
            line-height: 1.2;
        }

        .contact-text p {
            font-size: 17px;
            line-height: 2;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        /* Donation Section */
        .donation {
            padding: 120px 40px;
            background: var(--white);
        }

        .donation-box {
            max-width: 800px;
            margin: 60px auto 0;
            background: var(--white);
            padding: 80px 70px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .donation-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--secondary);
        }

        .donation-icon {
            font-size: 90px;
            margin-bottom: 35px;
            color: var(--secondary);
        }

        .donation-box h3 {
            font-size: 32px;
            margin-bottom: 50px;
            color: var(--dark);
            font-weight: 900;
        }

        .account-details {
            background: var(--light);
            padding: 50px;
            border-radius: 20px;
            margin-bottom: 35px;
            text-align: left;
            border: 2px solid #e9ecef;
        }

        .account-item {
            margin-bottom: 30px;
            padding: 20px;
            background: var(--white);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .account-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .account-item:last-child {
            margin-bottom: 0;
        }

        .account-label {
            font-size: 13px;
            color: #7f8c8d;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .account-value {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
        }

        .account-number {
            font-size: 32px;
            font-weight: 900;
            color: var(--secondary);
            letter-spacing: 4px;
        }

        .donation-quote {
            color: #5a6c7d;
            font-size: 16px;
            font-style: italic;
            margin-top: 35px;
            padding: 25px;
            background: var(--light);
            border-radius: 15px;
        }

        /* Footer */
        footer {
            background: #0d1b2a;
            color: var(--white);
            padding: 100px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--secondary);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            margin-bottom: 30px;
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-section p {
            color: #b0b0b0;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .footer-section ul li a::before {
            content: '→';
            color: var(--secondary);
            transition: transform 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }

        .footer-section ul li a:hover::before {
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 20px;
        }

        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #7f8c8d;
            font-size: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border-radius: 50px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
            background: #e67e22;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.6);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
.nav-menu {
    display: none;
    position: fixed;
    top: 200px; /* below header */
    right: -380px; /* hidden offscreen */
    width: 320px;
    height: auto;
    max-height: calc(100vh - 100px);
    background: var(--dark);
    flex-direction: column;
    padding: 40px 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.25);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    border-radius: 12px; /* softer rounding */
}

.nav-menu.active {
    display: flex;
    right: 20px; /* slides into view */
}

/* Menu links */
.nav-menu a {
    color: var(--white);
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle line */
    transition: all 0.3s ease;
    text-align: left; /* better than centered */
    font-weight: 500;
}

/* remove line on last item */
.nav-menu li:last-child a {
    border-bottom: none;
}

/* Hover effect */
.nav-menu a:hover {
    color: var(--secondary);
    padding-left: 8px; /* gentle slide */
}

/* Donate button */
.nav-menu .donate-btn {
    background: var(--secondary) ;
    color: var(--white) ;
    margin-top: 25px;
    padding: 34px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: block;
    width: 100%; /* full width */
    border-bottom: none;
    transition: background 0.3s;
}

.nav-menu .donate-btn:hover {
    background: #ff9933; /* lighter hover */
}

/* Hamburger icon */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}


            .hero h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 40px;
                margin-bottom: 15px;
            }

            .about-content,
            .contact-content,
            .leader-slide.active {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .leader-image {
                height: 400px;
            }

            .event-card {
                min-width: 80%;
            }

            .ministries-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
             .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
        }
@media (min-width: 769px) {
    .events-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}
/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
        overflow: hidden;
    }
    
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 0 20px;
    }
    
    .location {
        font-size: 11px;
    }
    
    /* Stats Section */
    .stats {
        padding: 60px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 2px solid var(--secondary);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-image {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Events Section */
    .events {
        padding: 60px 20px;
    }
    
    .events-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-card-new {
        margin: 0;
        width: 100%;
    }
    
    .event-content-new {
        padding: 30px 20px;
    }
    
    .event-content-new h3 {
        font-size: 20px;
    }
    
    .events-background {
        background-attachment: scroll;
    }
    
    /* Service Times */
    .service-times {
        padding: 60px 20px;
    }
    
    .service-times-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .service-time-item {
        padding: 25px 20px;
    }
    
    .service-time-item h3 {
        font-size: 18px;
    }
    
    .service-time-item p {
        font-size: 14px;
    }
    
    .service-icon-img {
        width: 60px;
        height: 60px;
    }
    
    /* About Section */
    .about {
        padding: 60px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-decorative {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-quote {
        font-size: 16px;
        padding: 25px 20px;
    }
    
    /* Sermons Section - Carousel Style */
    .sermons {
        padding: 60px 20px;
      
    }
    
     .sermon-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .sermon-card {
        display: none;
        min-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .sermon-card.active {
        display: block;
    }
    .sermon-thumbnail {
        height: 200px;
    }
    
    .sermon-info {
        padding: 25px 20px;
    }
    
    .sermon-card h3 {
        font-size: 20px;
    }
    
    .sermon-speaker {
        font-size: 14px;
    }
    
    /* Gallery Section */
    .gallery {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        display: block;
        position: relative;
        margin: 0;
    }
    
    .gallery-item {
        display: none;
        height: 300px !important;
        margin: 0;
    }
    
    .gallery-item.active {
        display: block;
    }
    
    .gallery-nav {
        padding: 0;
        margin-top: 30px;
    }
    
    .events-grid-new {
        display: block;
        position: relative;
    }
    
    .event-card-new {
        display: none;
    }
    
    .event-card-new.active {
        display: flex;
    }
    
    .events-nav {
        display: flex !important;
    }

    /* Leadership Section */
    .leadership {
        padding: 60px 20px;
    }
    
    .leader-slide.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leader-image {
        height: 300px;
    }
    
    .leader-name {
        font-size: 28px;
    }
    
    .leader-bio {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .leader-decorative {
        display: none;
    }
    
    /* Ministries Section - Carousel Style */
    .ministries {
        padding: 60px 20px;
    }
    
    .ministries-grid {
        display: block;
        position: relative;
        overflow: hidden;
        margin-top: 40px;
    }
    
    .ministry-card {
        display: none;
        min-width: 100%;
        margin: 0;
    }
    
    .ministry-card.active {
        display: block;
    }
    
    .ministry-image {
        height: 220px;
    }
    
    .ministry-content {
        padding: 30px 20px;
    }
    
    .ministry-card h3 {
        font-size: 22px;
    }
    
    /* Testimonials Section - Carousel Style */
    .testimonials {
        padding: 60px 20px;
    }
    
      .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .testimonial-card {
        display: none;
        padding: 30px 20px;
        margin: 0;
        width: 100%;
        min-height: auto;
    }
    
    .testimonial-card.active {
        display: block;
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-location {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta {
        padding: 50px 20px;
        background-attachment: scroll;
    }
    
    .cta h2 {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .cta-reference {
        font-size: 14px;
    }
    
    .cta-message {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 40px 25px;
    }
    
    .contact-icon {
        font-size: 50px;
    }
    
    .contact-info h3 {
        font-size: 28px;
    }
    
    .contact-item {
        padding-left: 50px;
        margin-bottom: 30px;
    }
    
    .contact-item::before {
        width: 40px;
        height: 40px;
    }
    
    .contact-item i {
        left: 10px;
        top: 10px;
        font-size: 20px;
    }
    
    .contact-text h2 {
        font-size: 28px;
    }
    
    .contact-text p {
        font-size: 15px;
    }
    
    /* Donation Section */
    .donation {
        padding: 60px 20px;
    }
    
    .donation-box {
        padding: 40px 20px;
        margin: 40px 0 0;
    }
    
    .donation-icon {
        font-size: 60px;
    }
    
    .donation-box h3 {
        font-size: 24px;
    }
    
    .account-details {
        padding: 30px 20px;
    }
    
    .account-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .account-value {
        font-size: 16px;
    }
    
    .account-number {
        font-size: 18px;
        letter-spacing: 2px;
        word-break: break-all;
    }
    
    .donation-quote {
        font-size: 13px;
        padding: 20px;
    }
    
    /* Map Section */
    .map-section {
        height: auto;
        min-height: 500px;
        padding: 0;
        position: relative;
    }
    
    .map-overlay-info {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin: 0;
        padding: 30px 20px;
        border-radius: 0;
        background: var(--white);
    }
    
    .map-overlay-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .map-info-item {
        margin-bottom: 20px;
        gap: 15px;
    }
    
    .map-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .map-info-text {
        font-size: 14px;
    }
    
    .map-info-text p {
        font-size: 14px;
    }
    
    .directions-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    iframe {
        height: 350px;
    }
    
    /* Replace the footer mobile styles with this: */

footer {
    padding: 40px 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1 1 100%;
}

/* Make Quick Links and Our Ministries appear side by side on mobile */
.footer-section:nth-child(2),
.footer-section:nth-child(3) {
    flex: 1 1 calc(50% - 15px);
}
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
    }
    
    /* Section Headers */
    .section-header {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title2 {
        font-size: 28px;
    }
    
    .section-label {
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title2 {
        font-size: 24px;
    }
    
    .logo-text h2 {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 1.2;
        white-space: normal; /* Allow wrapping on mobile */
        max-width: 200px;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .leader-name {
        font-size: 24px;
    }
    
    .contact-text h2 {
        font-size: 24px;
    }
}  @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0; }
        }

        @keyframes livePulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
            }
            50% {
                box-shadow: 0 10px 50px rgba(255, 0, 0, 0.8);
            }
        }

      /* Testimonials */
.testimonials {
    padding: 120px 40px;
    background: var(--light);
    overflow: hidden;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 5px solid var(--secondary);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Sermon Archive */
.sermons {
    padding: 120px 40px;
    background: var(--light);
}

.sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sermon-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.sermon-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.sermon-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.sermon-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.15);
}

.sermon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    transition: all 0.3s;
}

.sermon-card:hover .sermon-play {
    transform: translate(-50%, -50%) scale(1.2);
}

.sermon-info {
    padding: 35px;
}

.sermon-date {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sermon-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.sermon-speaker {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 20px;
}

.sermon-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.sermon-action-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
}

.sermon-action-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}
/* Events Navigation Buttons */
.events-nav {
    display: none;
}

.events-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.events-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.5);
    background: #e67e22;
}

.events-counter {
    font-size: 16px;
    font-weight: 700;
}

        /* Interactive Map */
        .map-section {
            padding: 0;
            height: 600px;
            position: relative;
        }

        .map-overlay-info {
            position: absolute;
            top: 50px;
            left: 50px;
            background: var(--white);
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            max-width: 450px;
            z-index: 10;
        }

        .map-overlay-info h3 {
            font-size: 28px;
            color: var(--dark);
            margin-bottom: 25px;
            font-weight: 800;
        }

        .map-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .map-info-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            flex-shrink: 0;
        }

        .map-info-text p {
            margin: 0;
            line-height: 1.6;
            color: #5a6c7d;
        }

        .map-info-text strong {
            color: var(--dark);
            display: block;
            margin-bottom: 5px;
        }

        .directions-btn {
            margin-top: 30px;
            padding: 15px 35px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .directions-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
            background: #e67e22;
        }

 /* Service Times - New Design */
.service-times {
    background: var(--white);
    color: var(--text);
    padding: 120px 40px;
}

.service-times .section-label {
    color: var(--secondary);
}

.service-times .section-title {
    color: var(--dark);
}

.service-times-grid-new {
    max-width: 1400px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.service-time-item {
    text-align: center;
    padding: 20px;
    transition: all 0.4s;
}

.service-time-item:hover {
    transform: translateY(-10px);
}

.service-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(455%) hue-rotate(358deg) brightness(99%) contrast(95%);
    transition: all 0.3s;
}

.service-time-item:hover .service-icon-img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(54%) sepia(93%) saturate(455%) hue-rotate(358deg) brightness(99%) contrast(95%);
}

.service-time-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-time-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #95a5a6;
}
        /* Counter Animation */
        .counter {
            font-size: 54px;
            font-weight: 900;
        }

        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        @media (max-width: 450px) {
    .map-section {
        height: auto;
        min-height: 500px;
        position: relative;
        padding: 0;
        margin: 0;
    }
    
    .map-section iframe {
        height: 500px;
        width: 100%;
        display: block;
    }
    
    .map-overlay-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 85%;
        padding: 20px 15px;
        z-index: 10;
    }
}

/* ===== ENCOURAGEMENT POPUP ===== */
.encouragement-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.encouragement-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.encouragement-popup {
    background: var(--white);
    max-width: 450px;
    width: 85%;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.encouragement-popup-overlay.active .encouragement-popup {
    transform: scale(1) translateY(0);
}

.encouragement-popup-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
}

.encouragement-popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: 50%;
}

.encouragement-popup-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

.popup-icon {
    font-size: 45px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    animation: popupIconFloat 3s ease-in-out infinite;
}

@keyframes popupIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.popup-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.popup-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.encouragement-popup-body {
    padding: 25px 30px;
    text-align: center;
}

.popup-verse {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.popup-verse::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -15px;
    left: -10px;
    color: rgba(243, 156, 18, 0.2);
    font-family: Georgia, serif;
}

.popup-reference {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-message {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-cta-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    position: relative;
    overflow: hidden;
}

.popup-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.popup-cta-btn:hover::before {
    left: 100%;
}

.popup-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.popup-footer {
    padding: 20px 30px;
    background: var(--light);
    text-align: center;
}

.popup-footer p {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

.popup-footer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.popup-footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .encouragement-popup {
        max-width: 95%;
        border-radius: 20px;
    }

    .encouragement-popup-header {
        padding: 30px 25px;
    }

    .popup-icon {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .popup-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .popup-subtitle {
        font-size: 14px;
    }

    .encouragement-popup-body {
        padding: 30px 25px;
    }

    .popup-verse {
        font-size: 16px;
        padding: 0 10px;
    }

    .popup-verse::before {
        font-size: 50px;
        top: -10px;
    }

    .popup-message {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .popup-cta-btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }

    .popup-footer {
        padding: 18px 25px;
    }
}

@media (max-width: 480px) {
    .popup-title {
        font-size: 22px;
    }

    .popup-verse {
        font-size: 15px;
    }

    .encouragement-popup-body {
        padding: 25px 20px;
    }
}
/* Language Selector - Text Only, No Flags */
.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--secondary);
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    background: var(--secondary);
}

.language-btn:hover .language-text,
.language-btn:hover .arrow-icon {
    color: var(--white);
}

.language-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.arrow-icon {
    font-size: 10px;
    color: var(--secondary);
    transition: all 0.3s;
}

.language-btn:hover .arrow-icon {
    color: var(--white);
}

/* Language Menu (Popup Upward) */
.language-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.language-option:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(5px);
}

/* Hide Google Translate Elements */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-selector {
        bottom: 20px;
        left: 20px;
    }

    .language-btn {
        padding: 10px 18px;
        gap: 8px;
    }

    .language-text {
        font-size: 13px;
    }

    .language-menu {
        min-width: 160px;
        bottom: 60px;
    }

    .language-option {
        padding: 10px 16px;
        font-size: 14px;
    }
}