/* ===============================
   GOOGLE FONT
=============================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===============================
   RESET
=============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button{
    font-family:'Poppins',sans-serif;
    cursor:pointer;
}

/* ===============================
   CONTAINER
=============================== */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===============================
   HEADER
=============================== */

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s ease;
}

.header .container{

    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Sticky Header */

.header.sticky{

    position:fixed;

    background:#081228;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    animation:headerDown .4s ease;
}

@keyframes headerDown{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}

/* ===============================
LOGO
=============================== */

.logo{

display:flex;

align-items:center;

gap:15px;

color:#fff;

}

.logo img{

width:60px;

height:60px;

object-fit:contain;

}

.logo-text{

display:flex;

flex-direction:column;

}

.logo h2{

font-size:24px;

font-weight:700;

line-height:1.1;

color:#fff;

}

.logo span{

font-size:12px;

color:#d8d8d8;

margin-top:4px;

letter-spacing:.4px;

}

/* ===============================
NAVIGATION
=============================== */

.navbar{

display:flex;

align-items:center;

}

.navbar ul{

display:flex;

align-items:center;

gap:35px;

}

.navbar ul li{

position:relative;

}

.navbar ul li a{

display:flex;

align-items:center;

gap:7px;

padding:34px 0;

font-size:15px;

font-weight:500;

color:#fff;

transition:.3s;

}

.navbar ul li a:hover{

color:#f4c542;

}

/* ===============================
DROPDOWN
=============================== */

.dropdown-menu{

position:absolute;

top:100%;

left:0;

width:240px;

background:#f81313;

border-radius:12px;

padding:12px 0;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.dropdown:hover .dropdown-menu{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.dropdown-menu li{

width:100%;

}

.dropdown-menu li a{

padding:14px 22px;

color:#333;

display:block;

font-size:14px;

transition:.3s;

}

.dropdown-menu li a:hover{

padding-left:30px;

background:#0b3d2e;

color:#fff;

}

/* ===============================
HEADER BUTTON
=============================== */

.btn-header{

padding:14px 30px;

border-radius:50px;

background:linear-gradient(135deg,#f4c542,#ffd96c);

color:#081228;

font-weight:600;

font-size:15px;

transition:.3s;

box-shadow:0 12px 25px rgba(244,197,66,.35);

}

.btn-header:hover{

transform:translateY(-3px);

box-shadow:0 18px 35px rgba(244,197,66,.45);

}

/* ===============================
MENU ICON
=============================== */

.menu-toggle{

display:none;

font-size:28px;

color:#fff;

cursor:pointer;

}

/* ===============================
NAVIGATION UNDERLINE
=============================== */

.navbar ul li>a{

position:relative;

}

.navbar ul li>a::after{

content:"";

position:absolute;

left:0;

bottom:25px;

width:0;

height:2px;

background:#f4c542;

transition:.3s;

}

.navbar ul li>a:hover::after{

width:100%;

}

/* ===============================
ACTIVE MENU
=============================== */

.navbar ul li.active>a{

color:#f4c542;

}

.navbar ul li.active>a::after{

width:100%;

}

/* ===============================
HEADER GLASS EFFECT
=============================== */

.header{

backdrop-filter:blur(10px);

}

/* ===============================
HEADER HOVER
=============================== */

.header:hover{

backdrop-filter:blur(14px);

}

/* ===============================
NAV ICON
=============================== */

.navbar i{

font-size:12px;

transition:.3s;

}

.dropdown:hover>a i{

transform:rotate(180deg);

}

/* ===============================
SCROLLBAR
=============================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}

::-webkit-scrollbar-thumb{

background:#0b3d2e;

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:#f4c542;

}


/*=========================
      ABOUT HERO
=========================*/

.about-hero{
    position:relative;
    padding:120px 8%;
    overflow:hidden;
    background:linear-gradient(135deg,#0b1f45,#163b75,#2f69b2);
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.about-container{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.about-left{
    color:#fff;
}

.about-badge{
    display:inline-block;
    background:rgba(255,255,255,.18);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    backdrop-filter:blur(10px);
    margin-bottom:22px;
}

.about-left h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.about-left h1 span{
    color:#ffd54f;
}

.about-left p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
    color:#eef2ff;
}

.about-buttons{
    display:flex;
    gap:18px;
    margin:40px 0;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ffd54f;
    color:#163b75;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    text-decoration:none;
    color:#fff;
    border:2px solid rgba(255,255,255,.35);
    padding:15px 34px;
    border-radius:50px;
    transition:.35s;
}

.btn-secondary:hover{
    background:#fff;
    color:#163b75;
}

.about-stats{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.stat{
    background:rgba(255,255,255,.12);
    padding:20px 30px;
    border-radius:18px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.stat h2{
    font-size:34px;
    color:#ffd54f;
    margin-bottom:8px;
}

.stat p{
    margin:0;
    font-size:15px;
}

.about-right{
    display:flex;
    justify-content:center;
}

.about-card{
    width:100%;
    max-width:460px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.about-card img{
    width:100%;
    height:330px;
    object-fit:cover;
}

.card-content{
    padding:30px;
}

.card-content h3{
    color:#163b75;
    margin-bottom:18px;
    font-size:28px;
}

.card-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.card-content li{
    padding:12px 0;
    border-bottom:1px solid #ececec;
    font-size:17px;
}

.card-content li:last-child{
    border-bottom:none;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.about-container{
    grid-template-columns:1fr;
    text-align:center;
}

.about-buttons,
.about-stats{
    justify-content:center;
}

.about-left h1{
    font-size:42px;
}

}

@media(max-width:600px){

.about-left h1{
    font-size:34px;
}

.about-left p{
    font-size:16px;
}

.stat{
    width:100%;
}

.about-card img{
    height:260px;
}

}

/*==============================
        GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#333;
    line-height:1.7;
}

/*==============================
      ABOUT OVERVIEW
==============================*/

.about-overview{

    padding:100px 8%;
    background:#ffffff;

}

.container{

    max-width:1300px;
    margin:auto;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.section-tag{

    display:inline-block;
    background:#e9f2ff;
    color:#0b3d91;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;

}

.about-content h2{

    font-size:50px;
    line-height:1.2;
    color:#173b6c;
    margin-bottom:25px;

}

.about-content h2 span{

    color:#0b5ed7;

}

.about-content p{

    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}

.about-buttons{

    display:flex;
    gap:18px;
    margin-top:35px;

}

.btn-primary{

    background:#0b5ed7;
    color:#fff;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    transition:.35s;

}

.btn-primary:hover{

    background:#173b6c;

}

.btn-outline{

    border:2px solid #0b5ed7;
    color:#0b5ed7;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    transition:.35s;

}

.btn-outline:hover{

    background:#0b5ed7;
    color:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.experience-card{

    position:absolute;
    right:-20px;
    bottom:30px;

    background:#0b3d91;
    color:#fff;

    width:220px;

    padding:25px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.experience-card h2{

    font-size:48px;
    color:#FFD54F;

}

.experience-card p{

    margin-top:8px;
    line-height:1.6;

}

/* Responsive */

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-buttons{

justify-content:center;

}

.experience-card{

position:static;
margin:20px auto 0;

}

}

@media(max-width:768px){

.about-content h2{

font-size:36px;

}

.about-buttons{

flex-direction:column;

}

.btn-primary,
.btn-outline{

text-align:center;

}

}

/*====================================
        VISION & MISSION
=====================================*/

.vision-section{

    padding:100px 8%;
    background:linear-gradient(135deg,#eef5ff,#ffffff);

}

.section-heading{

    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    background:#e7f0ff;

    color:#0b5ed7;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:44px;

    color:#173b6c;

    margin-bottom:20px;

}

.section-heading p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.vision-card{

    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(15px);

    padding:45px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.5);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    overflow:hidden;

}

.vision-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.vision-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:6px;

    background:#0b5ed7;

}

.mission-card::before{

    background:#f4b400;

}

.vision-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#0b5ed7;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin-bottom:25px;

}

.mission-card .vision-icon{

    background:#f4b400;

}

.vision-card h3{

    font-size:30px;

    color:#173b6c;

    margin-bottom:20px;

}

.vision-card p{

    color:#666;

    line-height:1.9;

    font-size:17px;

}

.vision-card ul{

    margin-top:15px;

    padding-left:20px;

}

.vision-card ul li{

    margin-bottom:15px;

    color:#555;

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

.vision-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:36px;

}

}

@media(max-width:768px){

.vision-section{

padding:70px 20px;

}

.section-heading h2{

font-size:30px;

}

.vision-card{

padding:35px;

}

}


/*====================================
            CORE VALUES
=====================================*/

.values-section{

    padding:100px 8%;
    background:#ffffff;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.value-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.value-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:5px;

    background:#0b5ed7;

    transform:scaleX(0);

    transition:.4s;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.value-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    background:linear-gradient(135deg,#0b5ed7,#173b6c);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    transition:.4s;

}

.value-card:hover .value-icon{

    transform:rotate(12deg) scale(1.08);

}

.value-card h3{

    color:#173b6c;

    margin-bottom:18px;

    font-size:24px;

}

.value-card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/* Responsive */

@media(max-width:1100px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.values-section{

padding:70px 20px;

}

.values-grid{

grid-template-columns:1fr;

}

.value-card{

padding:35px 25px;

}

.value-icon{

width:80px;
height:80px;
font-size:36px;

}

}

/*====================================
          OUR OBJECTIVES
=====================================*/

.objectives-section{

    padding:100px 8%;
    background:#f7f9fc;

}

.objectives-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;

}

.objective-column{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.objective-item{

    display:flex;
    align-items:flex-start;
    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    border-left:5px solid #0b5ed7;

}

.objective-item:hover{

    transform:translateX(10px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.objective-item span{

    min-width:60px;
    height:60px;

    background:#0b5ed7;

    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;
    font-weight:700;

}

.objective-item p{

    margin:0;
    color:#555;
    line-height:1.8;
    font-size:16px;

}

/* Responsive */

@media(max-width:992px){

.objectives-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.objectives-section{

padding:70px 20px;

}

.objective-item{

padding:20px;

}

.objective-item span{

width:50px;
height:50px;
font-size:17px;

}

}

/*====================================
      STATEMENT OF FAITH
=====================================*/

.faith-section{

    padding:100px 8%;
    background:#ffffff;

}

.accordion{

    max-width:950px;
    margin:60px auto 0;

}

.accordion-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.accordion-header{

    width:100%;

    border:none;

    background:#fff;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

    color:#173b6c;

}

.accordion-header:hover{

    background:#f8fbff;

}

.accordion-header .icon{

    width:36px;
    height:36px;

    border-radius:50%;

    background:#0b5ed7;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

}

.accordion-content{

    display:none;

    padding:0 30px 30px;

}

.accordion-content p{

    color:#555;

    line-height:1.9;

    font-size:16px;

}

.accordion-item.active .accordion-content{

    display:block;

}

.accordion-item.active .accordion-header{

    background:#0b5ed7;

    color:#fff;

}

.accordion-item.active .icon{

    background:#FFD54F;

    color:#173b6c;

}

/* Responsive */

@media(max-width:768px){

.faith-section{

padding:70px 20px;

}

.accordion-header{

font-size:17px;
padding:20px;

}

.accordion-content{

padding:0 20px 20px;

}

}


/*=================================================
FOOTER
=================================================*/

.zbc-footer{

background:linear-gradient(135deg,#0b1f4d,#142f6b);

color:#fff;

padding:70px 8% 25px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:45px;

}

.footer-logo h2{

font-size:28px;

color:#FFD54F;

margin-bottom:15px;

}

.footer-logo p{

line-height:1.8;

color:#ddd;

}

.footer-title{

font-size:20px;

color:#FFD54F;

margin-bottom:20px;

position:relative;

}

.footer-title::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:60px;

height:3px;

background:#FFD54F;

}

.footer-links{

list-style:none;

margin-top:25px;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#FFD54F;

padding-left:8px;

}

.contact-info{

margin-top:20px;

}

.contact-item{

display:flex;

margin-bottom:18px;

}

.contact-item i{

width:30px;

color:#FFD54F;

font-size:18px;

margin-top:4px;

}

.contact-item span{

color:#ddd;

line-height:1.7;

}

.social-icons{

display:flex;

gap:15px;

margin-top:25px;

}

.social-icons a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.10);

color:#fff;

transition:.3s;

text-decoration:none;

}

.social-icons a:hover{

background:#FFD54F;

color:#0b1f4d;

transform:translateY(-5px);

}

.footer-bottom{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.20);

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom p{

font-size:14px;

color:#ddd;

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

}

/*==================================
  END
==================================*/