        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --text-dark: #0f172a;
            --muted: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            width: 100%;
            color: var(--text-dark);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ================= HEADER ================= */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: #fff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            color: #fff;
        }

        header.scrolled .logo {
            color: var(--text-dark);
        }


        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            font-size: 0.95rem;
            font-weight: 500;
            color: #fff;
        }

        header.scrolled nav a {
            color: var(--text-dark);
        }

        .btn-give-2 {
            background: var(--primary);
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            font-size: 1.9rem;
            color: #fff;
            cursor: pointer;
        }

        header.scrolled .hamburger {
            color: var(--text-dark);
        }

        /* ================= MOBILE MENU ================= */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background: #fff;
            padding: 2rem;
            z-index: 2000;
            transition: right 0.35s ease;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu .close {
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 2rem;
            display: block;
            text-align: right;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }

        .mobile-menu a {
            font-weight: 600;
            font-size: 1rem;
        }

        /* ================= HERO ================= */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 7rem 1.5rem 4rem;
            background-image: url('../images/bg.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                120deg,
                rgba(1, 9, 39, 0.7),
                rgba(14, 36, 107, 0.4),
                rgba(15,23,42,0.1)
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
            width: 100%;
        }

        .hero-inner {
            max-width: 620px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.15);
            font-size: 0.8rem;
            margin-bottom: 1.6rem;
        }

        .badge i {
            font-size: 1rem;
        }

        .hero h1 {
            font-family: "Inter", sans-serif;
            font-size: clamp(2.6rem, 5vw, 4.3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero h1 span {
            color: #93c5fd;
        }

        .hero p {
            font-size: 1.05rem;
            max-width: 520px;
            margin-bottom: 2.2rem;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
                .btn-give {
            background: var(--primary);
            color: white;
            padding: 0.6rem 1.1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            padding: 0.9rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-outline {
            border: 1.5px solid rgba(255,255,255,0.7);
            padding: 0.9rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        /* ================= SERVICE TIMES ================= */
.service-times {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-times h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #475569;
    font-size: 1.05rem;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARD BASE */
.service-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* ICON */
.icon-box-1 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* TIME */
.time {
    display: block;
    font-weight: 600;
    margin-top: 0.2rem;
}

.time.accent {
    color: #2563eb;
}

/* CARD VARIANTS */
.service-card.primary {
    background: #2563eb;
    color: #ffffff;
}

.service-card.primary .icon-box-1 {
    background: rgba(255,255,255,0.2);
}

.service-card.primary .time {
    color: #bfdbfe;
}

.service-card.light {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.service-card.light .icon-box-1 {
    background: #dbeafe;
    color: #2563eb;
}

.service-card.dark {
    background: #020617;
    color: #ffffff;
}

.service-card.dark .icon-box-1 {
    background: #2563eb;
}

.service-card.dark .time {
    color: #60a5fa;
}
/* ================= MINISTRIES ================= */
.ministries {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.ministries-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.ministries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.header-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.header-left h2 span {
    color: #2563eb;
}

.header-right {
    max-width: 520px;
    color: #475569;
    font-size: 1.05rem;
}

/* Grid */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.ministry-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ministry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.ministry-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.6rem;
    color: #475569;
}

/* Image */
.image-box {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon Card */
.ministry-card.primary {
    background: #2563eb;
    color: #ffffff;
    border: none;
}

.ministry-card.primary p {
    color: #e0e7ff;
}

.icon-box {
    height: 220px;
    border-radius: 16px;
    background: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Age Badge */
.age-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    background: #e0e7ff;
    color: #1e40af;
}

.age-badge.dark {
    background: #020617;
    color: #ffffff;
}

/* ================= EVENTS ================= */
.events {
  background: #020617;
  color: #ffffff;
  padding: 5rem 1.5rem;
}

.events-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.events h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin: 1rem 0 0.6rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-family: "Playfair Display", serif;
  color: #cbd5f5;
}

/* Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Featured Card */
.event-featured {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.event-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.85),
    rgba(2,6,23,0.25)
  );
}

.featured-overlay h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.4rem 0;
}

.featured-overlay p {
  font-size: 0.95rem;
  color: #e0e7ff;
}

/* Side List */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Event Cards */
.event-card {
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
}

.event-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.4rem 0 0.6rem;
}

.event-card p {
  font-size: 0.95rem;
  color: #e0e7ff;
}

/* Variants */
.event-card.primary {
  background: #2563eb;
}

.event-card.light {
  background: #ffffff;
  color: #020617;
}

.event-card.light p {
  color: #475569;
}

/* Date */
.event-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
}
/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #f8fafc;
  padding: 5rem 1.5rem;
  text-align: center;
}

.testimonials-container {
  max-width: 900px;
  margin: auto;
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2563eb;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.rating-badge span {
  font-weight: 400;
  opacity: 0.9;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
}

/* Quote Icon */
.quote-icon {
  width: 44px;
  height: 44px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 12px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -22px;
  left: 2.5rem;
}

/* Text */
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 2.5rem;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: transparent;
}

.visit-section {
  background: #ffffff;
}

.visit-container {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* LEFT */
.visit-left {
  position: relative;
  padding: 80px 60px;
  color: #fff;
  background:
    linear-gradient(rgba(10,25,66,0.85), rgba(10,25,66,0.85)),
    url("../images/join-bg.jpg") center/cover no-repeat;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.visit-left h1 {
  font-size: 48px;
  line-height: 1.2;
}

.visit-left h1 span {
  color: #4f8cff;
}

.underline {
  width: 50px;
  height: 4px;
  background: #4f8cff;
  margin-top: 20px;
  border-radius: 5px;
}

/* RIGHT */
.visit-right {
  padding: 80px 60px;
  background: #ffffff;
}

.visit-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.visit-right p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #1e4fd8;
}

.site-footer {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #cbd5f5;
  padding: 4rem 1.5rem 2rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.footer-brand h3 {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.75rem;
  color: #93c5fd;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5f5;
  font-size: 1.1rem;
}

/* Divider */
footer hr {
  border: none;
  border-top: 1px solid rgba(148,163,184,0.2);
  margin: 2.5rem 0;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #cbd5f5;
  font-size: 0.85rem;
}

/* Subscribe */
.subscribe p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.subscribe-form input {
  padding: 0.7rem;
  border-radius: 8px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating Chat */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #020617;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .visit-container {
    grid-template-columns: 1fr;
  }

  .visit-left,
  .visit-right {
    padding: 50px 30px;
  }

  .visit-left h1 {
    font-size: 36px;
  }

  .visit-right h2 {
    font-size: 26px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 2.2rem 1.6rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .quote-icon {
    left: 1.6rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-featured {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .featured-overlay {
    padding: 1.8rem;
  }

  .featured-overlay h3 {
    font-size: 1.5rem;
  }

  .event-card {
    padding: 1.6rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .ministries-header {
        flex-direction: column;
    }

    .ministries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .image-box,
    .icon-box {
        height: 200px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

        /* ================= RESPONSIVE ================= */
        @media (max-width: 900px) {
            nav ul {
                display: none;
            }

            .hamburger {
                display: block;
            }
            .btn-give {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .hero-inner {
                max-width: 100%;
            }
            .btn-give {
                display: none;
            }

            .hero p {
                font-size: 1rem;
            }
        }