/* ===============================
   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 SECTION
=============================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:140px 0 80px;
    background:
    linear-gradient(rgba(8,18,40,.72),rgba(8,18,40,.78)),
    url("images/hero.jpg") center/cover no-repeat;
}

/* ===============================
OVERLAY
=============================== */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(11,61,46,.35),
        rgba(8,18,40,.25)
    );
    z-index:1;
}

/* ===============================
HERO CONTAINER
=============================== */

.hero-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    align-items:center;

    gap:60px;

    position:relative;

    z-index:2;

}

/* ===============================
LEFT SIDE
=============================== */

.hero-left{

color:#fff;

animation:fadeUp 1s ease;

}

.badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(10px);

border-radius:50px;

font-size:14px;

font-weight:600;

color:#f4c542;

margin-bottom:25px;

}

.hero-left h1{

font-size:60px;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

}

.hero-left h1 span{

color:#f4c542;

display:block;

}

.hero-left p{

font-size:17px;

color:rgba(255,255,255,.92);

margin-bottom:18px;

max-width:650px;

}

/* ===============================
BUTTON GROUP
=============================== */

.hero-buttons{

display:flex;

gap:18px;

margin-top:35px;

margin-bottom:40px;

flex-wrap:wrap;

}

/* Primary Button */

.btn-primary{

display:inline-block;

padding:16px 34px;

background:linear-gradient(135deg,#f4c542,#ffd96b);

color:#081228;

font-weight:600;

border-radius:50px;

transition:.35s;

box-shadow:0 15px 35px rgba(244,197,66,.35);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 22px 40px rgba(244,197,66,.45);

}

/* Secondary Button */

.btn-secondary{

display:inline-block;

padding:16px 34px;

border-radius:50px;

border:2px solid rgba(255,255,255,.35);

background:rgba(255,255,255,.08);

color:#fff;

font-weight:600;

transition:.35s;

backdrop-filter:blur(8px);

}

.btn-secondary:hover{

background:rgba(255,255,255,.18);

transform:translateY(-4px);

}

/* ===============================
STATISTICS
=============================== */

.hero-stats{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.stat{

min-width:170px;

padding:22px;

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.15);

border-radius:18px;

backdrop-filter:blur(14px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

transition:.35s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat h2{

font-size:34px;

font-weight:700;

color:#f4c542;

margin-bottom:8px;

}

.stat p{

font-size:15px;

color:#fff;

}

/* ===============================
RIGHT SIDE
=============================== */

.hero-right{

display:flex;

justify-content:center;

animation:fadeRight 1s ease;

}

/* ===============================
HERO CARD
=============================== */

.hero-card{

width:100%;

max-width:430px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.18);

border-radius:28px;

overflow:hidden;

backdrop-filter:blur(16px);

box-shadow:0 25px 60px rgba(0,0,0,.25);

transition:.4s;

}

.hero-card:hover{

transform:translateY(-12px);

}

.hero-card img{

width:100%;

height:300px;

object-fit:cover;

}

/* ===============================
CARD CONTENT
=============================== */

.card-content{

padding:28px;

color:#fff;

}

.card-content h3{

font-size:26px;

margin-bottom:20px;

}

.card-content ul{

display:grid;

gap:14px;

}

.card-content li{

display:flex;

align-items:center;

gap:12px;

font-size:15px;

color:rgba(255,255,255,.94);

}

.card-content li::before{

content:"✓";

width:28px;

height:28px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#f4c542;

color:#081228;

font-weight:700;

font-size:14px;

}

/* ===============================
DECORATIVE CIRCLES
=============================== */

.hero::before{

content:"";

position:absolute;

width:320px;

height:320px;

border-radius:50%;

background:rgba(244,197,66,.12);

top:80px;

right:8%;

filter:blur(10px);

animation:float 8s ease-in-out infinite;

}

.hero::after{

content:"";

position:absolute;

width:220px;

height:220px;

border-radius:50%;

background:rgba(255,255,255,.08);

left:6%;

bottom:60px;

filter:blur(10px);

animation:float 10s ease-in-out infinite;

}

/* ===============================
ANIMATIONS
=============================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}

/* Floating badge */

.badge{

animation:pulse 3s infinite;

}


/* ==========================================
   LARGE TABLETS
========================================== */

@media (max-width:1200px){

.container,
.hero-container{

    width:92%;

}

.hero-left h1{

    font-size:52px;

}

.hero-container{

    gap:40px;

}

.hero-card{

    max-width:390px;

}

.hero-card img{

    height:270px;

}

.stat{

    min-width:150px;

}

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:992px){

/* Header */

.header .container{

height:80px;

}

/* Mobile Menu Icon */

.menu-toggle{

display:block;

font-size:30px;

color:#fff;

cursor:pointer;

z-index:10001;

}

/* Navigation */

.navbar{

position:absolute;

top:80px;

left:0;

width:100%;

background:#081228;

display:none;

padding:20px 0;

box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.navbar.active{

display:block;

animation:slideDown .35s ease;

}

@keyframes slideDown{

from{

opacity:0;

transform:translateY(-20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.navbar ul{

flex-direction:column;

gap:0;

}

.navbar ul li{

width:100%;

}

.navbar ul li a{

padding:16px 25px;

display:flex;

justify-content:space-between;

}

/* Dropdown */

.dropdown-menu{

position:static;

opacity:1;

visibility:visible;

transform:none;

display:none;

width:100%;

background:#0b3d2e;

border-radius:0;

box-shadow:none;

padding:0;

}

.dropdown.active .dropdown-menu{

display:block;

}

.dropdown-menu li a{

color:#fff;

padding:14px 45px;

}

.dropdown-menu li a:hover{

background:#114835;

padding-left:55px;

}

/* Hide desktop button */

.btn-header{

display:none;

}

/* Hero */

.hero{

padding:130px 0 70px;

}

.hero-container{

grid-template-columns:1fr;

text-align:center;

gap:60px;

}

.hero-left{

order:1;

}

.hero-right{

order:2;

}

.hero-left p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.hero-card{

margin:auto;

}

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

.logo img{

width:100%;

height:50px;

}

.logo h2{

font-size:20px;

}

.logo span{

font-size:11px;

}

.hero{

padding:120px 0 60px;

}

.hero-left h1{

font-size:42px;

}

.hero-left p{

font-size:15px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:260px;

text-align:center;

}

.hero-stats{

flex-direction:column;

align-items:center;

}

.stat{

width:100%;

max-width:320px;

}

.hero-card{

max-width:100%;

}

.hero-card img{

height:250px;

}

.card-content{

padding:22px;

}

.card-content h3{

font-size:22px;

}

.card-content li{

font-size:14px;

}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:576px){

.header .container{

height:75px;

}

.hero{

padding-top:110px;

}

.hero-left h1{

font-size:34px;

line-height:1.2;

}

.badge{

font-size:12px;

padding:8px 16px;

}

.hero-left p{

font-size:14px;

}

.btn-primary,
.btn-secondary{

width:100%;

padding:15px;

}

.hero-card img{

height:220px;

}

.card-content{

padding:18px;

}

.card-content h3{

font-size:20px;

}

.stat{

padding:18px;

}

.stat h2{

font-size:28px;

}

.stat p{

font-size:14px;

}

}

/* ==========================================
   EXTRA SMALL DEVICES
========================================== */

@media (max-width:400px){

.logo h2{

font-size:17px;

}

.logo span{

display:none;

}

.hero-left h1{

font-size:30px;

}

.hero-left p{

font-size:13px;

}

.badge{

font-size:11px;

}

.menu-toggle{

font-size:26px;

}

.hero-card img{

height:200px;

}

.card-content h3{

font-size:18px;

}

}


/*==================================
  STICKY HEADER
==================================*/

.header.sticky{
    background:rgba(8,18,40,.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    transition:.35s ease;
}

.header.sticky .logo h2,
.header.sticky .navbar a{
    color:#fff;
}

.header.sticky .btn-header{
    box-shadow:0 15px 35px rgba(244,197,66,.30);
}

/*==================================
  SECTION
==================================*/

section{
    position:relative;
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#f4c542;
    font-weight:600;
    margin-bottom:10px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    color:#081228;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/*==================================
  BUTTON TRANSITIONS
==================================*/

.btn-primary,
.btn-secondary,
.btn-header{
    transition:.35s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-header:hover{
    transform:translateY(-4px);
}

/*==================================
  IMAGE EFFECT
==================================*/

img{
    transition:.45s ease;
}

.hero-card:hover img{
    transform:scale(1.08);
}

/*==================================
  LINKS
==================================*/

a{
    transition:.3s;
}

a:hover{
    text-decoration:none;
}

/*==================================
  CARD SHADOW
==================================*/

.hero-card,
.stat{
    transition:.35s ease;
}

.hero-card:hover{

    box-shadow:0 35px 70px rgba(0,0,0,.28);

}

.stat:hover{

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

/*==================================
  SCROLL REVEAL
==================================*/

.reveal{

opacity:0;

transform:translateY(70px);

transition:all .8s ease;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}

/*==================================
  FADE LEFT
==================================*/

.fade-left{

opacity:0;

transform:translateX(-80px);

transition:.8s;

}

.fade-left.active{

opacity:1;

transform:translateX(0);

}

/*==================================
  FADE RIGHT
==================================*/

.fade-right{

opacity:0;

transform:translateX(80px);

transition:.8s;

}

.fade-right.active{

opacity:1;

transform:translateX(0);

}

/*==================================
  ZOOM
==================================*/

.zoom{

opacity:0;

transform:scale(.8);

transition:.8s;

}

.zoom.active{

opacity:1;

transform:scale(1);

}

/*==================================
  FLOAT
==================================*/

.float{

animation:float 6s ease-in-out infinite;

}

/*==================================
  SPACING HELPERS
==================================*/

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}

.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}

.pt-50{padding-top:50px;}
.pb-50{padding-bottom:50px;}

/*==================================
  TEXT
==================================*/

.text-center{
text-align:center;
}

.text-white{
color:#fff;
}

.text-gold{
color:#f4c542;
}

/*==================================
  BACKGROUND HELPERS
==================================*/

.bg-light{
background:#f8f9fc;
}

.bg-dark{
background:#081228;
color:#fff;
}

.bg-green{
background:#0b3d2e;
color:#fff;
}

/*==================================
  BORDER RADIUS
==================================*/

.rounded{
border-radius:20px;
}

.rounded-lg{
border-radius:35px;
}

/*==================================
  SHADOWS
==================================*/

.shadow{

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.shadow-lg{

box-shadow:0 30px 70px rgba(0,0,0,.15);

}

/*==================================
  LOADER
==================================*/

.loading{

pointer-events:none;

opacity:.7;

}

/*==================================
  SELECTION
==================================*/

::selection{

background:#f4c542;

color:#081228;

}

/*==================================
  INPUTS
==================================*/

input,
textarea,
select{

font-family:'Poppins',sans-serif;

outline:none;

}

input:focus,
textarea:focus{

border-color:#f4c542;

}

/*==================================
  FOOTER PLACEHOLDER
==================================*/

footer{

background:#081228;

color:#fff;

padding:70px 0 25px;

}

footer a{

color:#ddd;

}

footer a:hover{

color:#f4c542;

}

/*==================================
  BACK TO TOP BUTTON
==================================*/

.back-top{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

display:flex;

align-items:center;

justify-content:center;

background:#f4c542;

color:#081228;

border-radius:50%;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.18);

z-index:999;

}

.back-top.show{

opacity:1;

visibility:visible;

}

.back-top:hover{

transform:translateY(-6px);

}

/*==================================
  PRELOADER FADE
==================================*/

.fade-out{

opacity:0;

visibility:hidden;

transition:.5s;

}

/*==================================
  SMOOTH TRANSITIONS
==================================*/

*{

transition-property:
background,
color,
border,
box-shadow,
transform;

}

/*=================================================
PRINCIPAL'S DESK
=================================================*/

.principal-section{

padding:100px 0;

background:#fff;

}

.principal-wrapper{

display:grid;

grid-template-columns:380px 1fr;

gap:60px;

align-items:center;

}

.principal-image{

position:relative;

}

.principal-image img{

width:100%;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.15);

transition:.4s;

}

.principal-image:hover img{

transform:translateY(-8px);

}

.principal-info{

position:absolute;

left:25px;

right:25px;

bottom:25px;

background:rgba(8,18,40,.92);

padding:18px;

border-radius:15px;

text-align:center;

backdrop-filter:blur(10px);

}

.principal-info h3{

color:#fff;

font-size:22px;

margin-bottom:5px;

}

.principal-info span{

color:#f4c542;

font-weight:600;

}

.principal-content{

padding-left:10px;

}

.section-subtitle{

display:inline-block;

padding:8px 20px;

background:#f4c542;

color:#081228;

font-weight:600;

border-radius:30px;

margin-bottom:20px;

}

.principal-content h2{

font-size:42px;

color:#081228;

margin-bottom:25px;

line-height:1.2;

}

.principal-content p{

font-size:16px;

line-height:1.9;

color:#555;

margin-bottom:20px;

text-align:justify;

}

.principal-content .btn-primary{

margin-top:10px;

display:inline-block;

}

/* Decorative Shape */

.principal-section::before{

content:"";

position:absolute;

width:260px;

height:260px;

background:rgba(244,197,66,.08);

border-radius:50%;

right:-80px;

top:60px;

filter:blur(10px);

}

/* Responsive */

@media(max-width:991px){

.principal-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.principal-content{

padding:0;

}

.principal-content p{

text-align:left;

}

.principal-image{

max-width:420px;

margin:auto;

}

}

@media(max-width:576px){

.principal-content h2{

font-size:32px;

}

.principal-info h3{

font-size:18px;

}

}

/*=================================================
OUR CAMPUS
=================================================*/

.campus-section{

padding:100px 0;

background:#f7f9fd;

}

.campus-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:30px;

margin-top:50px;

}

.campus-card{

position:relative;

overflow:hidden;

border-radius:22px;

box-shadow:0 18px 45px rgba(0,0,0,.10);

cursor:pointer;

transition:.4s;

}

.campus-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.6s;

display:block;

}

.campus-card:hover img{

transform:scale(1.12);

}

.campus-overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:28px;

background:linear-gradient(to top,
rgba(8,18,40,.95),
rgba(8,18,40,.25),
transparent);

color:#fff;

transition:.4s;

}

.campus-overlay h3{

font-size:24px;

margin-bottom:10px;

}

.campus-overlay p{

font-size:15px;

color:rgba(255,255,255,.92);

}

.campus-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.campus-btn{

text-align:center;

margin-top:60px;

}

/* Decorative Background */

.campus-section{

position:relative;

overflow:hidden;

}

.campus-section::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(244,197,66,.08);

border-radius:50%;

top:-100px;

left:-100px;

filter:blur(10px);

}

.campus-section::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:rgba(11,61,46,.08);

border-radius:50%;

bottom:-120px;

right:-80px;

filter:blur(10px);

}

/* Responsive */

@media(max-width:991px){

.campus-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.campus-section{

padding:80px 0;

}

.campus-card img{

height:240px;

}

.campus-overlay{

padding:22px;

}

.campus-overlay h3{

font-size:20px;

}

}

@media(max-width:480px){

.campus-card img{

height:220px;

}

.section-title h2{

font-size:32px;

}

}

/*=================================================
OTHER MINISTRY
=================================================*/

.activities-section{

padding:100px 0;

background:#f7f9fd;

}

.activities-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.activity-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.activity-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#0b3d2e,#f4c542);

}

.activity-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.activity-icon{

width:70px;

height:70px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

background:linear-gradient(135deg,#0b3d2e,#174f3d);

color:#fff;

margin-bottom:20px;

}

.activity-card h3{

font-size:24px;

margin-bottom:15px;

color:#081228;

}

.activity-card p{

color:#666;

line-height:1.8;

}

@media(max-width:991px){

.activities-grid{

grid-template-columns:1fr;

}

.activity-card{

padding:28px;

}

}

/*=================================================
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
==================================*/