/* ===============================
   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;

}


/*==========================
HISTORY HERO
==========================*/

.history-hero{
    position:relative;
    overflow:hidden;
    padding:120px 8%;
    background:linear-gradient(135deg,#0d1b3d,#173a7a,#2456a5);
    color:#fff;
}

.history-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.history-container{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

/* LEFT */

.history-left{
    flex:1;
    min-width:320px;
}

.history-badge{
    display:inline-block;
    background:#ffffff22;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.3);
}

.history-left h1{
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.history-left h1 span{
    color:#ffd54f;
}

.history-left p{
    font-size:18px;
    line-height:1.8;
    color:#f5f5f5;
    margin-bottom:20px;
}

/* Buttons */

.history-buttons{
    display:flex;
    gap:20px;
    margin:40px 0;
    flex-wrap:wrap;
}

.btn-primary{
    padding:15px 34px;
    background:#ffd54f;
    color:#0d1b3d;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    padding:15px 34px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
}

.btn-secondary:hover{
    background:#fff;
    color:#173a7a;
}

/* Stats */

.history-stats{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.history-stats .stat h2{
    color:#ffd54f;
    font-size:36px;
}

.history-stats .stat p{
    margin:0;
    font-size:15px;
}

/* RIGHT */

.history-right{
    flex:1;
    display:flex;
    justify-content:center;
    min-width:320px;
}

.history-card{
    width:430px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    transition:.5s;
}

.history-card:hover{
    transform:translateY(-10px);
}

.history-card img{
    width:100%;
    height:270px;
    object-fit:cover;
}

.history-card .card-content{
    padding:30px;
}

.history-card h3{
    color:#173a7a;
    margin-bottom:18px;
}

.history-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.history-card ul li{
    padding:12px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.history-card ul li:last-child{
    border:none;
}

/* Responsive */

@media(max-width:992px){

.history-container{
    flex-direction:column;
    text-align:center;
}

.history-buttons,
.history-stats{
    justify-content:center;
}

.history-left h1{
    font-size:42px;
}

}

@media(max-width:576px){

.history-left h1{
    font-size:34px;
}

.history-card{
    width:100%;
}

.history-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

}

/* ================= HISTORY SECTION ================= */

.history-section{

    padding:100px 8%;
    background:linear-gradient(135deg,#f8fbff,#eef5ff,#ffffff);
    overflow:hidden;
}

.history-header{

    text-align:center;
    max-width:800px;
    margin:auto auto 80px;
}

.history-subtitle{

    display:inline-block;
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.history-header h2{

    font-size:48px;
    color:#14213d;
    margin-bottom:20px;
}

.history-header p{

    font-size:18px;
    color:#666;
    line-height:1.8;
}

/* Timeline */

.history-timeline{

    position:relative;
    max-width:1200px;
    margin:auto;
}

.history-timeline::before{

    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(#0d6efd,#6ea8fe);
    transform:translateX(-50%);
    border-radius:20px;
}

/* Item */

.history-item{

    width:50%;
    position:relative;
    padding:30px 60px;
    margin-bottom:70px;
}

.history-item.left{

    left:0;
    text-align:right;
}

.history-item.right{

    left:50%;
}

.history-content{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.history-content:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(13,110,253,.18);
}

/* Circle */

.history-item::before{

    content:"";
    position:absolute;
    top:45px;
    width:24px;
    height:24px;
    background:#0d6efd;
    border:6px solid #fff;
    border-radius:50%;
    box-shadow:0 0 0 5px rgba(13,110,253,.15);
    z-index:2;
}

.history-item.left::before{

    right:-12px;
}

.history-item.right::before{

    left:-12px;
}

/* Year */

.year{

    display:inline-block;
    padding:8px 20px;
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    font-weight:bold;
    margin-bottom:18px;
}

.history-content h3{

    font-size:28px;
    color:#14213d;
    margin-bottom:18px;
}

.history-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

/* Hover Border */

.history-content::after{

    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    border:2px solid transparent;
    transition:.4s;
}

.history-content:hover::after{

    border-color:#0d6efd;
}

/* Responsive */

@media(max-width:991px){

.history-header h2{

font-size:38px;

}

.history-timeline::before{

left:25px;

}

.history-item{

width:100%;
padding-left:70px;
padding-right:20px;
left:0 !important;
text-align:left;
}

.history-item::before{

left:14px;
right:auto;

}

}

@media(max-width:600px){

.history-section{

padding:80px 20px;

}

.history-header h2{

font-size:30px;

}

.history-content{

padding:25px;

}

}

/*=================================================
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
==================================*/