/* ===============================
   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;

}


/*================ HERO =================*/

.academic-hero{
position:relative;
width:100%;
padding:120px 8%;
background:linear-gradient(135deg,#0c2d48,#124e78,#1d70a2);
overflow:hidden;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.35);
}

.academic-container{
position:relative;
display:flex;
justify-content:space-between;
align-items:center;
gap:70px;
z-index:2;
}

.academic-left{
flex:1;
color:#fff;
}

.badge{
display:inline-block;
background:#ffffff20;
color:#fff;
padding:10px 22px;
border-radius:30px;
font-size:14px;
margin-bottom:25px;
backdrop-filter:blur(8px);
}

.academic-left h1{
font-size:58px;
line-height:1.2;
margin-bottom:25px;
font-weight:800;
}

.academic-left h1 span{
color:#FFD54F;
}

.academic-left p{
font-size:18px;
line-height:1.8;
margin-bottom:18px;
opacity:.95;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:35px;
}

.btn-primary,
.btn-secondary{
padding:15px 32px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.4s;
}

.btn-primary{
background:#FFD54F;
color:#0c2d48;
}

.btn-primary:hover{
background:#fff;
transform:translateY(-4px);
}

.btn-secondary{
border:2px solid #fff;
color:#fff;
}

.btn-secondary:hover{
background:#fff;
color:#0c2d48;
}

.hero-stats{
display:flex;
gap:35px;
margin-top:60px;
}

.stat{
background:rgba(255,255,255,.12);
padding:25px;
border-radius:18px;
backdrop-filter:blur(12px);
text-align:center;
min-width:130px;
}

.stat h2{
font-size:34px;
color:#FFD54F;
margin-bottom:8px;
}

.stat p{
margin:0;
font-size:15px;
}

.academic-right{
flex:1;
display:flex;
justify-content:center;
}

.academic-card{
width:100%;
max-width:480px;
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,.25);
transition:.4s;
}

.academic-card:hover{
transform:translateY(-10px);
}

.academic-card img{
width:100%;
height:300px;
object-fit:cover;
}

.card-content{
padding:35px;
}

.card-content h3{
font-size:28px;
margin-bottom:25px;
color:#0c2d48;
}

.card-content ul{
list-style:none;
}

.card-content ul li{
margin:18px 0;
font-size:17px;
display:flex;
align-items:center;
gap:12px;
color:#555;
}

.card-content i{
color:#28a745;
font-size:18px;
}

/*================ Responsive =================*/

@media(max-width:992px){

.academic-container{
flex-direction:column;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
justify-content:center;
flex-wrap:wrap;
}

.academic-left h1{
font-size:42px;
}

}

@media(max-width:576px){

.academic-hero{
padding:90px 25px;
}

.academic-left h1{
font-size:34px;
}

.hero-buttons{
flex-direction:column;
}

.btn-primary,
.btn-secondary{
width:100%;
}

.hero-stats{
gap:15px;
}

.stat{
min-width:100px;
padding:18px;
}

}


/*==============================
ACADEMIC OVERVIEW
==============================*/

.academic-overview{
    padding:100px 8%;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    color:#0b63ce;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    color:#0c2d48;
    margin-bottom:20px;
    font-weight:700;
}

.section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.overview-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.overview-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.overview-card .icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    background:linear-gradient(135deg,#0c2d48,#1d70a2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#fff;
}

.overview-card h3{
    color:#0c2d48;
    margin-bottom:18px;
    font-size:24px;
}

.overview-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.section-title p{
    font-size:16px;
}

.overview-card{
    padding:30px 25px;
}

}

/* =========================
   ACADEMY SECTION
========================= */
#academy {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 40%, #e8f0ff 100%);
}

/* Floating background shapes */
.academy-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.25;
  animation: floatShape 8s ease-in-out infinite;
  z-index: 0;
}

.shape1 {
  width: 220px;
  height: 220px;
  background: #4d8dff;
  top: 60px;
  left: -70px;
}

.shape2 {
  width: 180px;
  height: 180px;
  background: #9dc4ff;
  top: 320px;
  right: -50px;
  animation-delay: 2s;
}

.shape3 {
  width: 120px;
  height: 120px;
  background: #ffd36a;
  bottom: 60px;
  left: 15%;
  animation-delay: 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.academy-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.academy-header {
  text-align: center;
  margin-bottom: 60px;
}

.academy-subtitle {
  display: inline-block;
  background: rgba(11, 61, 145, 0.1);
  color: #0b3d91;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.academy-header h2 {
  font-size: 46px;
  margin: 10px 0 20px;
  color: #0b2c5f;
  font-weight: 700;
  position: relative;
}

.academy-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #0b3d91, #4d8dff);
  display: block;
  margin: 14px auto 0;
  border-radius: 5px;
}

.academy-header p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #555;
}

/* Grid */
.academy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.academy-card {
  position: relative;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 35px 28px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(17, 50, 99, 0.10);
  transition: all 0.35s ease;
  overflow: hidden;
}

.academy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b3d91, #4d8dff, #ffd36a);
  transition: 0.4s ease;
}

.academy-card:hover::before {
  left: 0;
}

.academy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.18);
}

.academy-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #0b3d91, #4d8dff);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(11, 61, 145, 0.22);
}

.academy-card h3 {
  font-size: 24px;
  color: #0b2c5f;
  margin-bottom: 18px;
}

.academy-card p,
.academy-card ul {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}

.academy-card ul {
  padding-left: 18px;
  margin: 0;
}

.academy-card ul li {
  margin-bottom: 10px;
}

/* Highlight box */
.academy-highlight {
  margin-top: 70px;
  text-align: center;
  background: linear-gradient(135deg, #0b3d91 0%, #1d5fd1 60%, #4d8dff 100%);
  color: #fff;
  padding: 55px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(11, 61, 145, 0.25);
  position: relative;
  overflow: hidden;
}

.academy-highlight::before,
.academy-highlight::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}

.academy-highlight::before {
  width: 180px;
  height: 180px;
  top: -50px;
  right: -40px;
}

.academy-highlight::after {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -30px;
}

.highlight-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 22px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  backdrop-filter: blur(10px);
}

.academy-highlight h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.academy-highlight p {
  max-width: 880px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.95);
}

/* Button */
.academy-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  background: #fff;
  color: #0b3d91;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.academy-btn:hover {
  transform: translateY(-3px);
  background: #ffd36a;
  color: #0b2c5f;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .academy-header h2 {
    font-size: 38px;
  }

  .academy-highlight h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  #academy {
    padding: 80px 15px;
  }

  .academy-header h2 {
    font-size: 32px;
  }

  .academy-header p,
  .academy-highlight p {
    font-size: 16px;
  }

  .academy-card {
    padding: 28px 22px;
  }

  .academy-highlight {
    padding: 40px 20px;
  }

  .academy-highlight h3 {
    font-size: 24px;
  }

  .academy-btn {
    padding: 12px 24px;
  }
}


/*=================================================
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
==================================*/