
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --blue-dark:#0f3f78;
    --blue-light:#1b75bb;
    --yellow:#ffd32a;
    --pink:#e91e63;
    --white:#ffffff;
    --gray:#f4f7fa;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    overflow-x:hidden;
    line-height:1.8;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

.container{
    max-width:1200px;
}

section{
    padding:100px 0;
}


.top-bar{
    background: linear-gradient(90deg,#1b4f8c 0%, #29b6e8 100%);
    color:#fff;
    font-size:13px;
    height:42px;
    display:flex;
    align-items:center;
}

.top-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    align-items:center;
    gap:0;
}

.top-left span{
    color:#fff;
    padding:0 18px;
    white-space:nowrap;
    border-right:1px solid rgba(255,255,255,.35);
    line-height:42px;
}

.top-left span:last-child{
    border-right:none;
}

.top-left i{
    margin-right:8px;
    color:#fff;
    font-size:12px;
}

.top-right a{
    width:28px;
    height:28px;
    background:#ec1c8c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.top-right a:hover{
    color:#fff;
    transform:translateY(-2px);
}

.top-left span{
    display:flex;
    align-items:center;
    color:#fff;
    padding:0 18px;
    border-right:1px solid rgba(255,255,255,.35);
    white-space:nowrap;
}

.top-left span:last-child{
    border-right:none;
}

.top-left i{
    color:#fff;
    font-size:14px;
    margin-right:10px;
    width:16px;
    text-align:center;
}

.main-header{

    background:#fff;

    padding:15px 0;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

    position:sticky;

    top:0;

    z-index:999;
}

.navbar-brand img{

    height:80px;
}

.navbar-nav{

    gap:10px;
}

.navbar-nav .nav-link{

    color:#222;

    font-weight:600;

    font-size:16px;

    padding:10px 15px !important;
}

.navbar-nav .nav-link:hover{

    color:#1b75bb;
}

.dropdown-menu{

    border:none;

    box-shadow:0 10px 30px rgba(0,0,0,.1);

    border-radius:12px;
}

.hero-section{

    position:relative;

    background:url("images/Banner.jpg");

    background-size:cover;

    background-position:center;

    min-height:750px;

    display:flex;

    align-items:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(10,40,80,.60);
}
.hero-section{
 position: relative;
    min-height: 750px;
    overflow: hidden;
    background-position: bottom;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        rgba(15,63,120,.92) 0%,
        rgba(15,63,120,.88) 25%,
        rgba(15,63,120,.70) 50%,
        rgba(15,63,120,.40) 70%,
        rgba(15,63,120,.15) 100%
    );

    z-index:1;
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:#fff;
}

.hero-content h1{

    color:var(--yellow);

    font-size:80px;

    font-weight:800;

    margin-bottom:25px;
}

.hero-content p{

    font-size:22px;

    margin-bottom:35px;
}

.theme-btn{

    display:inline-block;

    background:var(--pink);

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    margin-right:15px;
}

.theme-btn:hover{

    background:#c2185b;

    color:#fff;

    transform:translateY(-2px);
}

.zoom-section{
    background:linear-gradient(
        90deg,
        #184f8d 0%,
        #2eb8eb 100%
    );

    text-align:center;

    color:#fff;

    padding:70px 0;
}

.zoom-section h2{
    color:#ffc928;
    font-size:42px;
    font-weight:700;
    margin-bottom:30px;
}

.zoom-section p{
    font-size:18px;
    line-height:2;
    margin-bottom:25px;
}

.zoom-section .theme-btn{
    margin-top:10px;
}

.facebook-live{

    background:#fff;

    text-align:center;
}

.facebook-live h2{

    color:#0f3f78;

    font-size:55px;

    font-weight:800;

    margin-bottom:20px;
}

.facebook-live p{

    margin-bottom:50px;
}

.facebook-card{

    width:350px;

    margin:auto;

    background:#fff;

    border-radius:20px;

    padding:50px 30px;

    box-shadow:0 10px 40px rgba(0,0,0,.12);
}

.facebook-card i{

    font-size:60px;

    color:#1877f2;

    margin-bottom:20px;
}

.facebook-card h3{

    margin-bottom:25px;

    font-weight:700;
}

.about-section{

    background:#f7f8fa;
}

.about-section h2{

    color:#0f3f78;

    font-size:55px;

    font-weight:800;

    margin-bottom:30px;
}

.about-section p{

    margin-bottom:20px;

    color:#555;
}

.about-section img{

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}


.gateway-section{

    background:#fff;
}

.gateway-box{

    background:#f7f8fa;

    border-radius:25px;

    padding:70px;

    text-align:center;
}

.gateway-box h2{

    color:#0f3f78;

    font-size:50px;

    font-weight:800;

    margin-bottom:25px;
}

.gateway-box p{

    max-width:800px;

    margin:auto auto 30px;
}

footer{

    background:#0f3f78;

    color:#fff;

    padding:80px 0 30px;
}

.footer-logo{

    width:100px;

    margin-bottom:25px;
}

footer h4{

    color:var(--yellow);

    margin-bottom:25px;

    font-weight:700;
}

footer p{

    color:#ddd;
}

footer a{

    color:#fff;
}

@media(max-width:991px){

.hero-content h1{

    font-size:50px;
}

.hero-content p{

    font-size:18px;
}

.zoom-section h2,
.facebook-live h2,
.about-section h2,
.gateway-box h2{

    font-size:38px;
}

.top-wrapper{

    flex-direction:column;

    gap:15px;
}

.top-left{

    justify-content:center;
}

.facebook-card{

    width:100%;
}

.gateway-box{

    padding:40px 25px;
}
}

.about-page{
    padding:100px 0;
    background:#f8fafc;
}

.about-heading{
    text-align:center;
    margin-bottom:50px;
}

.about-heading span{
    color:#e91e63;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.about-heading h1{
    color:#1b4f8c;
    font-size:60px;
    font-weight:800;
    margin:15px 0;
}

.heading-line{
    width:100px;
    height:4px;
    background:#ffc928;
    margin:auto;
}

.about-feature-image{
    margin-bottom:50px;
}

.about-feature-image img{
    width:100%;
    max-height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-content-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:-80px;
    position:relative;
    z-index:5;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.about-content-box h2{
    color:#1b4f8c;
    font-size:38px;
    text-align:center;
    margin-bottom:25px;
}

.about-content-box p{
    color:#555;
    line-height:1.9;
    text-align:center;
    font-size:17px;
}

.service-times-page{
    padding:100px 0;
    background:#f8fafc;
}

.page-heading{
    text-align:center;
    margin-bottom:35px;
}

.page-heading span{
    color:#e91e63;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.page-heading h1{
    color:#1b4f8c;
    font-size:56px;
    font-weight:800;
    margin:15px 0;
}

.heading-line{
    width:90px;
    height:4px;
    background:#ffc928;
    margin:auto;
}

.service-intro{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.service-intro p{
    color:#555;
    font-size:18px;
    line-height:1.9;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    color:#333;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0f3f78,#1b75bb);
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    color:#fff;
    font-size:32px;
}

.service-card h3{
    color:#1b4f8c;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.service-time{
    color:#2e8b57;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    margin:0;
    color:#666;
}

@media(max-width:991px){

    .page-heading h1{
        font-size:42px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .service-times-page{
        padding:70px 0;
    }

    .page-heading h1{
        font-size:34px;
    }

    .service-time{
        font-size:20px;
    }

    .service-intro p{
        font-size:16px;
    }
}

.location-page{
    background:#f7f7f7;
    padding:80px 0;
}

.location-heading{
    text-align:center;
    margin-bottom:40px;
}

.location-heading h2{
    color:#1b4f8c;
    font-size:48px;
    font-weight:700;
    margin:0;
}

.location-card{
    width:100%;
    max-width:550px;
    margin:0 auto;
    background:#fff;
    border-radius:8px;
    padding:12px;
    border:1px solid #e5e5e5;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.location-image img{
    width:100%;
    display:block;
    border:6px solid #efefef;
    border-radius:4px;
}

.location-content{
    padding:18px 8px 8px;
}

.location-content h3{
    color:#e91e63;
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.location-address{
    color:#28a745;
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
}

.location-content p{
    color:#444;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

@media(max-width:768px){

    .location-heading h2{
        font-size:36px;
    }

    .location-card{
        max-width:100%;
    }

    .location-content h3{
        font-size:22px;
    }
}

.archives-page{
    padding:100px 0;
    background:#f7f8fa;
}

.section-title{
    text-align:center;
    margin-bottom:25px;
}

.section-title span{
    color:#e91e63;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h1{
    color:#1b4f8c;
    font-size:52px;
    font-weight:800;
    margin:10px 0;
}

.title-border{
    width:80px;
    height:4px;
    background:#ffd32a;
    margin:auto;
}

.archives-intro{
    max-width:800px;
    margin:0 auto 50px;
    text-align:center;
}

.archives-intro p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.archive-message{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.archive-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#0f3f78,#1b75bb);
    display:flex;
    align-items:center;
    justify-content:center;
}

.archive-icon i{
    color:#fff;
    font-size:36px;
}

.archive-message h2{
    color:#1b4f8c;
    font-size:34px;
    margin-bottom:15px;
}

.archive-message p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.video-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.video-thumb{
    height:180px;
    background:linear-gradient(135deg,#0f3f78,#1b75bb);
    display:flex;
    align-items:center;
    justify-content:center;
}

.video-thumb i{
    font-size:50px;
    color:#fff;
}

.video-content{
    padding:20px;
}

.video-content h4{
    color:#1b4f8c;
    margin-bottom:8px;
}

.video-content span{
    color:#888;
    font-size:14px;
}

@media(max-width:991px){

    .video-grid{
        grid-template-columns:1fr;
    }

    .section-title h1{
        font-size:38px;
    }

    .archive-message{
        padding:30px;
    }
}

.give-page{
    padding:100px 0;
    background:#f7f8fa;
}

.section-title{
    text-align:center;
    margin-bottom:25px;
}

.section-title span{
    color:#e91e63;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h1{
    color:#1b4f8c;
    font-size:52px;
    font-weight:800;
    margin:10px 0;
}

.title-border{
    width:80px;
    height:4px;
    background:#ffd32a;
    margin:auto;
}

.give-intro{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.give-intro p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.giving-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.giving-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.giving-card:hover{
    transform:translateY(-5px);
}

.giving-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.giving-icon i{
    color:#fff;
    font-size:32px;
}

.cashapp{
    background:#00c853;
}

.zelle{
    background:#6f42c1;
}

.mail{
    background:#1b75bb;
}

.church{
    background:#e91e63;
}

.giving-card h3{
    color:#1b4f8c;
    margin-bottom:15px;
    font-size:28px;
    font-weight:700;
}

.giving-value{
    color:#444;
    font-size:20px;
    line-height:1.8;
    font-weight:600;
}

@media(max-width:991px){

    .giving-grid{
        grid-template-columns:1fr;
    }

    .section-title h1{
        font-size:38px;
    }

    .giving-card{
        padding:30px;
    }
}

@media(max-width:576px){

    .give-page{
        padding:70px 0;
    }

    .section-title h1{
        font-size:32px;
    }

    .giving-value{
        font-size:18px;
    }
}

```css
.commit-page{
    padding:100px 0;
    background:#f7f8fa;
}

.commit-header{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.commit-header span{
    color:#e91e63;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.commit-header h1{
    color:#0f3f78;
    font-size:52px;
    font-weight:800;
    margin:15px 0;
}

.title-line{
    width:80px;
    height:4px;
    background:#ffd32a;
    margin:0 auto 30px;
}

.commit-header p{
    color:#666;
    font-size:18px;
}

.commit-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.commit-card:hover{
    transform:translateY(-6px);
}

.commit-card i{
    font-size:50px;
    color:#e91e63;
    margin-bottom:20px;
}

.commit-card h3{
    color:#0f3f78;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.commit-card p{
    color:#666;
}

.commit-content{
    margin-top:70px;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.commit-content h2{
    color:#0f3f78;
    font-size:38px;
    margin-bottom:25px;
    font-weight:700;
}

.commit-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.commit-cta{
    margin-top:60px;
    text-align:center;
    background:linear-gradient(90deg,#0f3f78,#1b75bb);
    color:#fff;
    padding:60px;
    border-radius:25px;
}

.commit-cta h3{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.commit-cta p{
    margin-bottom:30px;
}

@media(max-width:991px){

    .commit-header h1{
        font-size:40px;
    }

    .commit-content{
        padding:35px;
    }

    .commit-cta{
        padding:40px 25px;
    }
}

@media(max-width:576px){

    .commit-page{
        padding:70px 0;
    }

    .commit-header h1{
        font-size:32px;
    }

    .commit-content h2{
        font-size:28px;
    }

    .commit-cta h3{
        font-size:28px;
    }
}

.contact-page{
    padding:100px 0;
    background:#f7f8fa;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h1{
    color:#0f3f78;
    font-size:52px;
    font-weight:800;
}

.section-heading p{
    max-width:650px;
    margin:15px auto 0;
    color:#666;
}

.contact-info-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.contact-info-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.info-content{
    padding:35px;
}

.info-content h3{
    color:#e91e63;
    font-size:34px;
    margin-bottom:30px;
}

.info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.info-item i{
    color:#1b75bb;
    margin-top:5px;
    font-size:20px;
}

.facebook-btn{
    display:inline-block;
    margin-top:15px;
    background:#1877f2;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
}

.contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.contact-form-box h2{
    color:#0f3f78;
    margin-bottom:30px;
    font-weight:700;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    margin-bottom:20px;
    font-size:15px;
    outline:none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:#1b75bb;
}

.contact-form-box textarea{
    resize:none;
}


section.contact-page button
{
    border:none;
}

.top-bar a {
    color: white;
}


section.about-section .row {
    align-items: start !important;
}


.pastor-page{
    padding:100px 0;
    background:#f7f8fa;
}

.page-title{
    text-align:center;
    margin-bottom:60px;
}

.page-title span{
    color:#e91e63;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.page-title h1{
    color:#0f3f78;
    font-size:52px;
    font-weight:800;
}

.pastor-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.pastor-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pastor-content h2{
    color:#0f3f78;
    font-size:42px;
    margin-bottom:25px;
    font-weight:700;
}

.pastor-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

@media(max-width:991px){

    .page-title h1{
        font-size:38px;
    }

    .pastor-content h2{
        font-size:30px;
    }

    .pastor-image{
        margin-bottom:30px;
    }
}


.pastor-image img{
    width:100%;
    max-width:550px;
    display:block;
    margin:0 auto 40px;
    border-radius:20px;
}

.pastor-content{
    max-width:1000px;
    margin:auto;
}

.facebook-live p:first-of-type {
    margin-bottom: 20px;
}