    /* =====================================================
           24HMW COLOR SYSTEM
        ====================================================== */

        :root {
            --green: #143602;
            --green-dark: #0c2201;
            --green-light: #1d5003;
            --green-medium: #1a4503;

            --gold: #d4af37;
            --gold-light: #f2d675;
            --gold-dark: #a98515;

            --dark: #143602;
            --dark-2: #102c02;
            --dark-3: #1a4503;

            --white: #ffffff;
            --muted: #b8c4b0;
            --muted-dark: #87957e;

            --border: rgba(255,255,255,0.10);
            --gold-border: rgba(212,175,55,0.35);
        }


        /* =====================================================
           GENERAL
        ====================================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", sans-serif;
            background: var(--green);
            color: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }
      
      


        /* =====================================================
           NAVIGATION
        ====================================================== */

        .navbar {
            background: rgba(20,54,2,.88);

            padding: 18px 0;

            position: absolute;

            width: 100%;

            z-index: 1000;

            border-bottom: 1px solid rgba(255,255,255,.08);

            backdrop-filter: blur(12px);

            -webkit-backdrop-filter: blur(12px);
        }

        .navbar-brand {
            font-size: 29px;

            font-weight: 700;

            color: #fff !important;

            letter-spacing: 1px;
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .nav-link {
            color: #fff !important;

            font-weight: 500;

            margin-left: 20px;

            transition: .3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold) !important;
        }

        .navbar-toggler {
            border-color: rgba(255,255,255,.3);
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }


        /* =====================================================
           BUTTONS
        ====================================================== */

        .btn-gold {
            background: var(--gold);

            color: #000;

            padding: 13px 27px;

            border-radius: 50px;

            font-weight: 700;

            border: 1px solid var(--gold);

            display: inline-block;

            transition: .3s;
        }

        .btn-gold:hover {
            background: var(--gold-light);

            border-color: var(--gold-light);

            color: #000;

            transform: translateY(-3px);

            box-shadow: 0 10px 25px rgba(0,0,0,.25);
        }

        .btn-outline-light-custom {
            border: 1px solid rgba(255,255,255,.55);

            color: #fff;

            padding: 13px 27px;

            border-radius: 50px;

            font-weight: 700;

            display: inline-block;

            transition: .3s;
        }

        .btn-outline-light-custom:hover {
            background: #fff;

            color: var(--green);

            border-color: #fff;
        }


        /* =====================================================
           HERO
        ====================================================== */

        .hero {
            min-height: 850px;

            position: relative;

            display: flex;

            align-items: center;

            overflow: hidden;

            background:
                linear-gradient(
                    90deg,
                    rgba(12,34,1,.94) 0%,
                    rgba(20,54,2,.76) 45%,
                    rgba(20,54,2,.35) 100%
                ),
                url("assets/images/hero-worship.jpg")
                center/cover no-repeat;
        }

        .hero::after {
            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    to bottom,
                    transparent 60%,
                    #143602 100%
                );

            pointer-events: none;
        }

        .hero-content {
            position: relative;

            z-index: 2;

            padding-top: 90px;

            max-width: 800px;
        }

        .hero-label {
            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 5px;

            font-size: 14px;

            font-weight: 700;

            margin-bottom: 20px;
        }

        .hero-title {
            font-family: "Playfair Display", serif;

            font-size: clamp(55px, 8vw, 105px);

            line-height: .98;

            margin-bottom: 25px;
        }

        .hero-title span {
            color: var(--gold);
        }

        .hero-description {
            color: #e0e8dc;

            font-size: 19px;

            line-height: 1.8;

            max-width: 650px;

            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;

            gap: 13px;

            flex-wrap: wrap;
        }


        /* =====================================================
           EVENT COUNTDOWN
        ====================================================== */

        .countdown-wrapper {
            position: absolute;

            z-index: 5;

            bottom: 55px;

            right: 5%;

            width: 470px;

            max-width: 90%;
        }

        .countdown-card {
            background: rgba(8,24,1,.85);

            border: 1px solid var(--gold-border);

            border-radius: 20px;

            padding: 25px;

            backdrop-filter: blur(15px);

            box-shadow: 0 20px 50px rgba(0,0,0,.25);
        }

        .countdown-title {
            color: var(--gold);

            text-transform: uppercase;

            font-size: 11px;

            letter-spacing: 3px;

            font-weight: 700;

            margin-bottom: 15px;
        }

        .countdown {
            display: grid;

            grid-template-columns: repeat(4,1fr);

            gap: 10px;
        }

        .countdown-box {
            text-align: center;

            background: rgba(255,255,255,.05);

            border-radius: 12px;

            padding: 14px 5px;
        }

        .countdown-number {
            font-family: "Playfair Display", serif;

            font-size: 31px;

            font-weight: 700;

            color: #fff;
        }

        .countdown-label {
            color: var(--muted-dark);

            text-transform: uppercase;

            font-size: 9px;

            letter-spacing: 1px;
        }


        /* =====================================================
           SECTION COMMON
        ====================================================== */

        .section {
            padding: 110px 0;
        }

        .section-label {
            color: var(--gold);

            font-size: 13px;

            letter-spacing: 3px;

            text-transform: uppercase;

            font-weight: 700;

            margin-bottom: 15px;
        }

        .section-title {
            font-family: "Playfair Display", serif;

            font-size: clamp(38px,5vw,55px);

            line-height: 1.12;

            margin-bottom: 20px;
        }

        .section-text {
            color: var(--muted);

            line-height: 1.9;

            font-size: 16px;
        }

        .gold-line {
            width: 65px;

            height: 3px;

            background: var(--gold);

            border-radius: 10px;

            margin: 20px 0 30px;
        }


        /* =====================================================
           ABOUT
        ====================================================== */

        .about-section {
            background: var(--green);
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;

            height: 600px;

            object-fit: cover;

            border-radius: 22px;

            border: 1px solid var(--gold-border);
        }

        .about-badge {
            position: absolute;

            bottom: 25px;

            right: 25px;

            background: var(--gold);

            color: #000;

            padding: 20px 25px;

            border-radius: 15px;

            font-weight: 700;
        }

        .about-badge strong {
            display: block;

            font-size: 30px;

            font-family: "Playfair Display",serif;
        }

        .about-badge span {
            font-size: 12px;
        }


        /* =====================================================
           FEATURES
        ====================================================== */

        .feature-section {
            background: var(--dark-2);
        }

        .feature-card {
            background: var(--green);

            border: 1px solid var(--border);

            border-radius: 18px;

            padding: 30px;

            height: 100%;

            transition: .3s;
        }

        .feature-card:hover {
            transform: translateY(-7px);

            border-color: var(--gold-border);
        }

        .feature-icon {
            width: 58px;

            height: 58px;

            border-radius: 50%;

            background: rgba(212,175,55,.12);

            color: var(--gold);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 24px;

            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-family: "Playfair Display",serif;

            font-size: 24px;

            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--muted);

            line-height: 1.7;

            font-size: 14px;

            margin-bottom: 0;
        }


        /* =====================================================
           STATS
        ====================================================== */

        .stats-section {
            background:
                linear-gradient(
                    rgba(12,34,1,.93),
                    rgba(12,34,1,.93)
                ),
                url("assets/images/worship-crowd.jpg")
                center/cover fixed;
        }

        .stat-card {
            text-align: center;

            padding: 25px;

            border-right: 1px solid rgba(255,255,255,.10);
        }

        .stat-card:last-child {
            border-right: none;
        }

        .stat-number {
            font-family: "Playfair Display",serif;

            font-size: 55px;

            color: var(--gold);

            line-height: 1;

            margin-bottom: 10px;
        }

        .stat-label {
            color: #d3ddcf;

            font-size: 13px;

            text-transform: uppercase;

            letter-spacing: 2px;
        }


        /* =====================================================
           MINISTERS
        ====================================================== */

        .ministers-section {
            background: var(--green);
        }

        .minister-card {
            background: var(--dark-2);

            border: 1px solid var(--border);

            border-radius: 20px;

            overflow: hidden;

            height: 100%;

            transition: .35s;
        }

        .minister-card:hover {
            transform: translateY(-8px);

            border-color: var(--gold-border);
        }

        .minister-card img {
            width: 100%;

            height: 330px;

            object-fit: cover;
        }

        .minister-body {
            padding: 25px;
        }

        .minister-body small {
            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 1px;

            font-size: 11px;

            font-weight: 700;
        }

        .minister-body h4 {
            font-family: "Playfair Display",serif;

            margin: 8px 0;
        }

        .minister-body p {
            color: var(--muted);

            font-size: 14px;

            margin-bottom: 15px;
        }

        .view-link {
            color: var(--gold);

            font-weight: 700;

            font-size: 14px;
        }


        /* =====================================================
           SCHEDULE PREVIEW
        ====================================================== */

        .schedule-section {
            background: var(--dark-2);
        }

        .schedule-item {
            display: grid;

            grid-template-columns: 115px 45px 1fr;

            gap: 20px;

            margin-bottom: 22px;
        }

        .schedule-time {
            text-align: right;

            padding-top: 17px;
        }

        .schedule-time strong {
            color: var(--gold);

            display: block;
        }

        .schedule-time span {
            color: var(--muted-dark);

            font-size: 11px;
        }

        .schedule-dot {
            width: 45px;

            height: 45px;

            border: 2px solid var(--gold);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            color: var(--gold);

            margin-top: 8px;
        }

        .schedule-card {
            background: var(--green);

            border: 1px solid var(--border);

            border-radius: 15px;

            padding: 20px;

            transition: .3s;
        }

        .schedule-card:hover {
            border-color: var(--gold-border);

            transform: translateX(5px);
        }

        .schedule-card small {
            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 2px;

            font-size: 10px;
        }

        .schedule-card h5 {
            font-family: "Playfair Display",serif;

            font-size: 22px;

            margin: 7px 0;
        }

        .schedule-card p {
            color: var(--muted);

            font-size: 13px;

            margin: 0;
        }


        /* =====================================================
           GALLERY
        ====================================================== */

        .gallery-section {
            background: var(--green);
        }

        .gallery-item {
            position: relative;

            overflow: hidden;

            border-radius: 16px;

            height: 280px;

            border: 1px solid var(--border);
        }

        .gallery-item.tall {
            height: 580px;
        }

        .gallery-item img {
            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform .5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.07);
        }

        .gallery-overlay {
            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    to top,
                    rgba(8,24,1,.85),
                    transparent 60%
                );

            display: flex;

            align-items: flex-end;

            padding: 20px;
        }

        .gallery-overlay span {
            color: #fff;

            font-weight: 600;

            font-size: 14px;
        }


        /* =====================================================
           TESTIMONIAL
        ====================================================== */

        .testimonial-section {
            background: var(--dark-2);

            text-align: center;
        }

        .quote-icon {
            color: var(--gold);

            font-size: 50px;

            margin-bottom: 20px;
        }

        .testimonial {
            font-family: "Playfair Display",serif;

            font-size: clamp(27px,4vw,45px);

            line-height: 1.4;

            max-width: 900px;

            margin: auto;
        }

        .testimonial-author {
            color: var(--gold);

            margin-top: 25px;

            font-weight: 700;
        }


        /* =====================================================
           NEWSLETTER
        ====================================================== */

        .newsletter-section {
            background:
                linear-gradient(
                    135deg,
                    #143602,
                    #1d5003
                );
        }

        .newsletter-box {
            max-width: 850px;

            margin: auto;

            text-align: center;
        }

        .newsletter-box h2 {
            font-family: "Playfair Display",serif;

            font-size: 45px;
        }

        .newsletter-box p {
            color: #dce5d8;

            max-width: 600px;

            margin: 15px auto 30px;

            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;

            max-width: 600px;

            margin: auto;

            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;

            border: 1px solid rgba(255,255,255,.25);

            background: rgba(0,0,0,.20);

            color: #fff;

            padding: 15px 20px;

            border-radius: 50px;

            outline: none;
        }

        .newsletter-form input::placeholder {
            color: #c4d0be;
        }


        /* =====================================================
           CTA
        ====================================================== */

        .cta-section {
            background: var(--gold);

            color: #000;

            padding: 100px 20px;

            text-align: center;
        }

        .cta-section h2 {
            font-family: "Playfair Display",serif;

            font-size: clamp(40px,5vw,62px);

            margin-bottom: 15px;
        }

        .cta-section p {
            max-width: 650px;

            margin: 0 auto 30px;

            line-height: 1.8;
        }

        .btn-black {
            display: inline-block;

            background: #071600;

            color: #fff;

            padding: 15px 30px;

            border-radius: 50px;

            font-weight: 700;

            transition: .3s;
        }

        .btn-black:hover {
            background: #000;

            color: #fff;

            transform: translateY(-3px);
        }


        /* =====================================================
           FOOTER
        ====================================================== */

        footer {
            background: var(--green-dark);

            padding: 75px 0 30px;
        }

        .footer-logo {
            font-size: 29px;

            font-weight: 700;
        }

        .footer-logo span {
            color: var(--gold);
        }

        .footer-text {
            color: var(--muted-dark);

            line-height: 1.8;

            max-width: 430px;

            margin-top: 15px;
        }

        footer h6 {
            font-weight: 700;

            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;

            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--muted-dark);

            transition: .3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;

            gap: 10px;

            margin-top: 25px;
        }

        .social-links a {
            width: 43px;

            height: 43px;

            border-radius: 50%;

            border: 1px solid rgba(255,255,255,.18);

            color: #fff;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: .3s;
        }

        .social-links a:hover {
            background: var(--gold);

            border-color: var(--gold);

            color: #000;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.10);

            margin-top: 50px;

            padding-top: 25px;

            text-align: center;

            color: #708068;

            font-size: 13px;
        }
      
      
      
      #logo {
  display: inline-block;
  margin: 15px; /* margin: 20px was off */
  float: left;
  height: 60px;
  width: auto; /* correct proportions to specified height */
  border-radius: 50%; /* makes it a circle */
}


        /* =====================================================
           MOBILE
        ====================================================== */

        @media (max-width: 991px) {

            .navbar-collapse {
                background: #102c02;

                margin-top: 15px;

                padding: 15px;

                border-radius: 12px;

                border: 1px solid rgba(255,255,255,.08);
            }

            .nav-link {
                margin-left: 0;

                padding: 10px 5px !important;
            }

            .hero {
                min-height: 800px;
            }

            .countdown-wrapper {
                position: absolute;

                bottom: 35px;

                left: 50%;

                transform: translateX(-50%);

                right: auto;
            }

            .about-image {
                height: 500px;

                margin-bottom: 30px;
            }

            .stat-card {
                border-right: none;

                border-bottom: 1px solid rgba(255,255,255,.10);
            }

            .stat-card:last-child {
                border-bottom: none;
            }
        }


        @media (max-width: 576px) {

            .hero {
                min-height: 850px;
            }

            .hero-content {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 53px;
            }

            .hero-description {
                font-size: 16px;
            }

            .countdown {
                gap: 5px;
            }

            .countdown-card {
                padding: 18px;
            }

            .countdown-number {
                font-size: 25px;
            }

            .section {
                padding: 75px 0;
            }

            .about-image {
                height: 420px;
            }

            .schedule-item {
                grid-template-columns: 70px 40px 1fr;

                gap: 10px;
            }

            .schedule-time {
                font-size: 12px;
            }

            .schedule-card h5 {
                font-size: 19px;
            }

            .gallery-item.tall {
                height: 300px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                width: 100%;
            }
        }