*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
html,body{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}
/* 🔴 TOP BAR */
.top-bar{
  background:#1a4d8f;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;   /* keeps everything centered */
  padding:8px 8%;
  font-size:14px;
  height:50px;          
  /* 🔥 IMPORTANT */
}

.top-bar .left{
  display:flex;
  align-items:center;
  gap:25px;
  white-space:nowrap;   /* 🔥 prevents line break */
}
.top-bar .left span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.top-bar .left span i{
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:all 0.3s ease;
}

/* Hover effect */
.top-bar .left span:hover i{
  background:#1877f2;
  color:;
}
/* optional icon hover */
.top-bar .left span:hover i{
  color:#fff;
}



/* SOCIAL ICONS FIX */
.top-bar .right{
  display:flex;
  align-items:center;   /* 🔥 THIS FIXES YOUR ISSUE */
  gap:12px;
}

/* Base style */
.top-bar .right i{
  width:32px;
  height:32px;
  background:#fff;
  color:#1877f2;
  display:inline-flex;   /* 🔥 IMPORTANT FIX */
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:14px;
  cursor:pointer;
  transition:all 0.3s ease;
}

.top-bar .right i{
  border:1px solid yellow;
}

/* 🔵 Facebook */
.top-bar .right i.fa-facebook-f:hover{
  background:#1877f2;
  color:#fff;
  transform:translateY(-3px);
}

/* ⚫ Twitter (X) */
.top-bar .right i.fa-x-twitter:hover{
  background:#000;
  color:#fff;
  transform:translateY(-3px);
}

/* 🔴 YouTube */
.top-bar .right i.fa-youtube:hover{
  background:#1877f2;
  color:#fff;
  transform:translateY(-3px);
}

/* 🟣 Instagram */
.top-bar .right i.fa-instagram:hover{
  background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
  color:#fff;
  transform:translateY(-3px);
}

/* 🔵 LinkedIn */
.top-bar .right i.fa-linkedin-in:hover{
  background:#0077b5;
  color:#fff;
  transform:translateY(-3px);
}

.top-bar .right i:hover{
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
/* ⚪ NAVBAR */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;   /* 🔥 IMPORTANT */
  padding:15px 20px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}


.logo{
  margin-right: 40px;
}
/* LOGO */
.logo img{
  width:65px;
}

/* MENU */
.nav-links{
  list-style:none;
  display:flex;
  gap:40px;
  font-size:15px;
  font-weight:600;
  letter-spacing:0.5px;
  margin-left: 40px;
  pointer-events: auto;
}

.nav-links li{
  position:relative;
  padding:8px 12px;
  border-radius:5px;
  transition:all 0.3s ease;
}

/* Default */
.nav-links li a{
  color:#000 !important;
  transition:0.3s;
}

.nav-links li:hover{
  background:none;
}

.nav-links li:hover a{
  color:#000;
}

.nav-links > li > a{
  font-weight:600;
  color:#111;
}

/* dropdown arrow style */
.nav-links li a::after{
  content:"▾";
  font-size:12px;
}


/* RIGHT SIDE */
.nav-right{
  display:flex;
  align-items:center;
  gap:15px;
  margin-left: auto;
}

.nav-right i{
  font-size:16px;
  cursor:pointer;
}


/* DONATE BUTTON FIX */
.donate-btn{
  background:#1a4d8f;
  color:#fff;
  border:none;
  padding:12px 30px;
  border-radius:50px;
  cursor:pointer;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:600;
  transition:0.3s;
}

.donate-btn:hover{
  background:grey;
}

/* drop down menu */
/* DROPDOWN PARENT */
.dropdown {
  position: relative;
  
  /* width:100%;
  height:100% */
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 230px;
  background: #f8f8f8;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* background: none; */
}


/* MENU ITEMS */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}
.dropdown-menu li a:hover {
  background: #1a4d8f;   /* red */
  color: #fff;           /* white text */
}

/* 🔴 ACTIVE ITEM (FIRST ONE LIKE "Work with us") */
.dropdown-menu li.active a {
  /* background: #c41212; */
  color: #fff;
}

/* 🔺 ARROW ON TOP */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 25px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #f8f8f8 transparent;
}
.nav-links a,
.dropdown-menu li a {
  text-decoration: none;
}

/* .dropdown:hover > a{
  color:#000;
}

.dropdown:hover{
  ;
} */
@media (max-width: 768px) {
  .dropdown-menu{
    display:none;
    position:static;
    width:100%;
    background:#f9f9f9;
    box-shadow:none;
    padding-left:10px;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .dropdown-menu li{
    border:none;
    padding:8px 0;
  }

  .dropdown-menu li a{
    font-size:14px;
    color:#555;
  }

  .dropdown-menu::before {
    display: none; /* remove arrow on mobile */
    list-style:none;
  }
}




/* HERO */
.hero{
position:relative;
min-height:60vh;
overflow:hidden;
height:auto;
}

/* SLIDES */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:1s;
}

.slide.active{
  opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

/* DARK OVERLAY */
.slide::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
top:0;
left:0;
}

/* TEXT */
.content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
z-index:2;
}

.content h1{
font-size:clamp(20px, 5vw, 42px);
line-height:1.2;
margin-bottom:20px;
text-shadow: 0 4px 8px rgba(0,0,20,0.6);
}

.content button{
background:#e11d2e;
border:none;
padding:12px 30px;
color:#fff;
border-radius:25px;
cursor:pointer;
}

/* ARROWS */
.prev, .next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:30px;
color:#fff;
cursor:pointer;
padding:10px;
z-index:3;
}

.prev{ left:20px; }
.next{ right:20px; }

.close-menu{
  display:none;
  z-index:3000; 
}

/* MOBILE */
/* MOBILE MENU FULL SCREEN */
@media(max-width:768px){

   .nav-links{
    position:fixed;
    top:0;
    left:-100%;
    width:85%;              /* 🔥 side panel like image */
    height:100vh;
    background:#fff;
    padding:25px 20px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;   /* 🔥 LEFT ALIGN */
    justify-content:flex-start;

    gap:18px;
    transition:0.4s;
    z-index:2500;

    overflow-y:auto;          /* scroll like image */
  }

  .nav-links.active{
    left:0;
  }

  /* DARK OVERLAY BACKGROUND */
  .nav-links::before{
    /* content:"";
    position:fixed;
    top:0;
    left:85%;
    width:15%;
    height:100vh;
    background:rgba(0,0,0,0.4); */
    display:none;
  }

  .nav-links li{
    width:100%;
    font-size:16px;
    border-bottom:1px solid #eee;
    padding:12px 0;
  }

  .nav-links li a{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  /* CLOSE BUTTON */
  .close-menu{
  position:absolute;
  top:15px;
  right:20px;
  font-size:28px;
  display:block;
  cursor:pointer;
  z-index:3001; 
  }
}


@media(max-width:768px){

  .top-bar{
    flex-direction:column;
    height:auto;
    padding:8px 10px;
    gap:6px;
    text-align:center;
  }

  /* contact line */
  .top-bar .left{
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:12px;
  }

  /* social icons center */
  .top-bar .right{
    justify-content:center;
    width:100%;
  }

  .top-bar .right i{
    width:30px;
    height:30px;
  }
}

/* MOBILE NAVBAR */
.menu-toggle{
  display:none;
  background:#1a4d8f;
  color:#fff;
  padding:12px 14px;
  border-radius:8px;
  font-size:18px;
  cursor:pointer;
  margin-left: auto;
  order:3;
}

/* MOBILE */
@media(max-width:768px){

  .navbar{
    padding:12px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .logo img{
    width:55px;
  }

  .menu-toggle{
    display:block;
    margin-left: auto;
  }

  

  .nav-right{
    gap:10px;
    margin-left: auto;
  }

  .nav-right i.fa-search{
    display: none;
  }

  .donate-btn{
    display:none; /* hide on mobile like screenshot */
  }
}

/* Hero Section */
@media(max-width:768px){

  .hero{
    height:60vh;
  }

  .content{
    width:90%;
  }

  .content h1{
    font-size:24px;
    line-height:1.3;
  }

  .content button{
    padding:10px 20px;
    font-size:14px;
  }

  .prev, .next{
    font-size:20px;
  }
}

/* Curve */
.curve{
    height:100px;
    background: #fff;
    margin-top:-50px;
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px;
}

/* Origin */
.about{
padding:80px 30px;
background:#f6f7f9;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
max-width:1100px;
margin:auto;
align-items:center;
}

.about-text h5{
color:#1a4d8f;
letter-spacing:2px;
margin-bottom:15px;
}

.about-text h2{
font-size:48px;
margin-bottom:20px;
color:#0e1a2b;
}

.about-text p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.about-image img{
width:100%;
border-radius:20px;
}

.about-image img,
.story-image img {
  transition: 0.4s;
}

.about-image img:hover,
.story-image img:hover {
  transform: scale(1.05);
}
/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.about-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

  .about{
    padding:50px 20px;
  }

  .about-text h2{
    font-size:28px;
  }

  .about-text p{
    font-size:15px;
  }

}


/* Board */
.team{
    padding:60px 20px;
    text-align:center;
}

.team h2{
    font-size:clamp(24px,5vw,40px);
    margin-bottom: 40px;
}

.team-container{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap:15px;
    padding:0 10px;
    max-width:1000px;
    margin:auto;
}

/* CARD */
.card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.4s;
    transform: translateY(40px);
    opacity:0;
}

/* Images */
.card img{
    width:100%;
    height:250px;
    object-fit: cover;
    border-radius:10px 10px 0 0;
}
.info{
    padding:18px;
}
.info h3{
    font-size:18px;
}

.info p{
    font-size:14px;
    color:gray;
}

/* Highlight Card */
.highlight{
    background:#f4a825;
    color:#fff;
}

.highlight p{
    color:#fff;
}

/* HOVER EFFECT */
.card:hover{
  transform: translateY(-10px) scale(1.03);
}

/* ANIMation SHOW */
.card.show{
    opacity:1;
    transform:translateY(0);
}

/* Mobile Fix */
@media (max-width:768px){
  .team-container{
    grid-template-columns: repeat(2,1fr);
  }

  .card img{
    height:220px;
  }
    
}

/* Footer Section */
.footer{
background:#0b3b75;
color:white;
padding:60px 8%;
}

/* TOP SECTION */

.footer-top{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-bottom:40px;
}

.footer-col h4{
margin-bottom:20px;
font-size:14px;
letter-spacing:1px;
}

.footer-col p{
margin-bottom:10px;
color:#d1d9e6;
}

.footer-col ul{
list-style:none;
padding: 0;
margin: 0;
padding-left: 0;
padding-left:0 ;
}

.footer-col ul li::before {
  content: none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#d1d9e6;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:white;
}

/* LINE */

hr{
border:none;
border-top:1px solid rgba(255,255,255,0.2);
margin:40px 0;
}

/* BOTTOM SECTION */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.footer-text h1{
font-size:70px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.back-top{
background:none;
border:none;
color:white;
cursor:pointer;
font-size:14px;
letter-spacing:1px;
}

/* LOGO CIRCLE */

.footer-logo{
display:flex;
justify-content:center;
/* align-items:center; */
border-radius: 15px;
}

.footer-logo img{
    width:200px;
    border-radius: 110px;
}

.circle1{
width:200px;
height:200px;
border:10px solid white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
}

.circle2{
width:150px;
height:150px;
border:6px solid white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
}

.circle3{
width:110px;
height:110px;
background:#114ea3;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:900px){

.footer-top{
grid-template-columns:repeat(2,1fr);
}

.footer-text h1{
font-size:50px;
}

}

@media(max-width:500px){

.footer-top{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:40px;
}

.footer-text h1{
font-size:40px;
}

.circle1{
width:150px;
height:150px;
}

.circle2{
width:110px;
height:110px;
}

.circle3{
width:80px;
height:80px;
font-size:22px;
}

}

/* Our Programme */
.programmes{
padding:80px 8%;
background:#f5f5f5;
}

.program-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:60px;
}

.programme-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px 80px;
max-width:1000px;
margin:auto;
}

.programme-card{
display:flex;
flex-direction:column;
align-items:flex-start;
transition:0.3s;
cursor:pointer;
}

.programme-card:hover{
transform:translateY(-5px);
}

.programme-card .icon{
  font-size:45px;
  margin-bottom:10px;
}

.programme-card h3{
font-size:20px;
margin-bottom:8px;
font-weight:700;
text-decoration:underline;
}

.programme-card p{
color:#555;
line-height:1.6;
}



/* COLORS */

.edu{color:#d8a547;}
.health{color:#9b8ab3;}
.women{color:#9fc3c0;}
.live{color:#caa38d;}
.grass{color:#3fa36b;}
.disaster{color:#e2675c;}

/* MOBILE */

@media(max-width:768px){

.programme-container{
grid-template-columns:1fr;
gap:40px;
}

.program-title{
font-size:26px;
}

}

.contact-section{
  position:relative;
  width:100%;
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content: center;
  overflow:hidden;
}

/* MAP */
.map{
  position:absolute;
  width:100%;
  height:80%;
  margin-top:140px;
  top:0;
  left:0;
  border:0;
  filter:grayscale(100%) brightness(0.8);
  z-index:1;
}

/* OVERLAY */
.contact-overlay{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:30px 15px;
  text-align:center;
}

/* TEXT */
.contact-text{
  font-size:clamp(30px, 8vw, 100px);
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:2px #2f63c6;
  letter-spacing:3px;
  margin-bottom:30px;
}

/* CARD */
.contact-card{
  width:100%;
  max-width:400px;
  background:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width:768px){

  .contact-text{
    font-size:40px;
    letter-spacing:3px;
  }

  .contact-card{
    padding:18px;
  }
}

@media(max-width:500px){

  .contact-text{
    font-size:28px;
  }

  .contact-card{
    padding:15px;
  }
}

img{
  max-width:100%;
  height:auto;
}

section{
  width:100%;
  overflow:hidden;
}


/* Livelihood section */
.livelihood {
  padding: 60px 20px;
}

.liv-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  background: pink;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HEADING */
h1 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

/* TEXT */
p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* IMAGE */
.image-box {
  margin-top: 30px;
  text-align: center;
}

.image-box img {
  width: 70%;
  border-radius: 15px;
  transition: 0.4s;
}

.image-box img:hover {
  transform: scale(1.03);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .liv-container {
    padding: 25px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}



/* Community  */
.community-container {
  max-width: 1200px;
  margin: auto;
  /* background: #fff; */
  padding: 50px;
  border-radius: 12px;
  background: rgba(78, 84, 118, 0.2);
  color:#000
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* chain */
.chain-container {
  max-width: 1200px;
  margin: auto;
  /* background: #fff; */
  padding: 50px;
  border-radius: 12px;
  background:rgb(41, 96, 81);
  color:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* natural */
.natural-container {
  max-width: 1200px;
  margin: auto;
  /* background: #fff; */
  padding: 50px;
  border-radius: 12px;
  background:rgb(125, 122, 185);
  color:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.restoration-container{
  max-width: 1200px;
  margin: auto;
  /* background: #fff; */
  padding: 50px;
  border-radius: 12px;
  background:rgb(198, 174, 185);
  color:#000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Work */
/* SECTION */
.reach {
  padding: 60px 20px;
}

.reach-container {
  max-width: 1100px;
  margin: auto;
}

.reach-wrapper{
    display:flex;
    gap:30px;
    margin-left:10px ;
}

/* LEFT TABS */
.tabs {
  width: 240px;
  display: flex;
  flex-direction: column;

  /* 🔥 ADD THIS */
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.tab{
    padding:14px;
    border:none;
    background: #fff;
    /* color:#333; */
    cursor:pointer;
    text-align: left;
    transition: 0.3s;    
}

/* Hover(gray) */
.tab:hover{
    background:#ddd;
}

/* Active(blue */
.tab.active{
    background: #1e3a8a;
    color:#eee;
}

/* Right Content */
.content-box{
    flex:1;
    background:#f5f5f5;
    padding:30px;
}

/* Content Hide/Show */
.tab-content{
    display: none;
}
.tab-content.active{
    display:block;
    /* background: #555; */
    color:#fff;
    font-size:15px;
}

/* Smooth scrolling _ hide ugly scrollbar */
.tabs::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.tabs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .reach-wrapper {
    flex-direction: column;
  }

  .tabs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;   /* 🔥 IMPORTANT */
    overflow-y: hidden;
    white-space: nowrap;
  }

  .tab {
    min-width: 140px;
    flex: 0 0 auto;
    text-align: center;
  }
}


/* awards */
.awards-section{
  background:#d7bfae;
  overflow:hidden;
  padding:50px 0;
}

.awards-wrapper{
  width:90%;
  overflow:hidden;
}

/* TRACK */
.awards-track{
  display:flex;
  gap:40px;
}

/* CARD */
.award-card{
  min-width:80%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#d7bfae;
  padding:30px;
  border-radius:10px;
  gap:10px; /* 🔥 controls distance */
}

/* TEXT */
.text{
  width:50%;
  color:#fff;
}

.text h2{
  font-size:32px;
}

.text p{
  margin-top:10px;
}

/* IMAGE */
.award-card img{
   width:350px;        /* fixed width */
  height:350px;       /* fixed height */
  object-fit:cover;   /* 🔥 keeps image nice */
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
   .award-card{
    flex-direction:column;
    text-align:center;
    min-width:100%;
    padding:20px;
    gap:15px; /* less gap on mobile */
  }

  .text{
    width:100%;
  }

  .award-card img{
    width:100%;
    height:220px; /* fixed mobile height */
  }

}

/* Certification */
/* SECTION */
.accreditation{
  padding:80px 20px;
  text-align:center;
  background:#f9f9f9;
}

.accreditation h2{
  font-size:32px;
  margin-bottom:40px;
}

/* SLIDER */
.cert-slider{
  overflow:hidden;
  position:relative;
}

/* TRACK */
.cert-cards{
  display:flex;
  gap:25px;
  cursor:grab;
}

/* CARD */
.cert-card{
  min-width:300px;
  flex-shrink:0;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
}

/* IMAGE */
.cert-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* CONTENT */
.cert-card-content{
  padding:15px;
  text-align:left;
}

.cert-card h3{
  font-size:16px;
  margin-bottom:8px;
}

.cert-card p{
  font-size:13px;
  color:#555;
}

/* HOVER */
.cert-card:hover{
  transform:translateY(-10px);
}

/* MOBILE */
@media(max-width:600px){
  .cert-card{
    min-width:85%;
  }
}

/* Story */

.blog-container {
  opacity: 1;
  transform: translateY(50px);
  transition: 0.8s ease;
}
.blog-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.blog-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CARD */
.blog-image-card {
  position: relative;
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  background:  #4c7a6d;
  padding: 20px;
}

.blog-image-card img {
  width: 100%;
  border-radius: 15px;
}

/* TAG */
.tag {
  position: absolute;
  bottom: 110px;
  left: 40px;
  background: #f5e6c8;
  color: #000;
  padding: 6px 15px;
  font-size: 12px;
  border-radius: 20px;
}

/* OVERLAY TEXT */
.overlay-text {
  background: #1a4d8f;
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-top: 15px;
}

.overlay-text h3 {
  font-size: 18px;
  line-height: 1.4;
}

/* RIGHT CONTENT */
.blog-content {
  width: 50%;
}

.meta {
  color: #b03a3a;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.blog-content p {
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-image-card,
  .blog-content {
    width: 100%;
  }
}


/* news Section */
/* SECTION */
.news-section{
  padding:60px 20px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

.news-section h2{
  text-align: center;
  font-size: 40px;
  color:#333;
}


.news-container{
  opacity:1;
  transform:translateY(50px);
  transition:0.6s ease;
}

.news-container.show{
  opacity:1;
  transform:translateY(0);
}

.news-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* IMAGE */
.news-image{
  flex:1;
}



.news-image img{
  width:100%;
  border-radius:15px;
  object-fit:contain;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}


.news-image:hover img{
   transform: scale(1.08);
}


/* CONTENT */
.news-content{
  flex:1;
  /* box-shadow: 0px 4px 8px rgba(0,0,0,0.2); */
}

.meta{
  display:flex;
  gap:20px;
  color:#c0392b;
  font-size:14px;
  margin-bottom:10px;
}

.news-content h2{
  font-size:28px;
  margin-bottom:15px;
  line-height:1.3;
}

.news-content p{
  color:#555;
  line-height:1.6;
}

/* 🔥 RESPONSIVE */
@media (max-width: 900px){
  .news-container{
    flex-direction:column;
  }

  .news-content h2{
    font-size:24px;
  }
}

@media (max-width: 500px){
  .news-section{
    padding:40px 15px;
  }

  .news-content h2{
    font-size:20px;
  }

  .meta{
    flex-direction:column;
    gap:5px;
  }
}

/* Events */
.event-section{
  padding:60px 20px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

.event-section h2{
  text-align: center;
  font-size:40px;
  color:#333;
}
.event-container{
  opacity:1;
  transform:translateY(50px);
  transition:0.6s ease;
}

.event-container.show{
  opacity:1;
  transform:translateY(0);
}

.event-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* IMAGE */
.event-image{
  flex:1;
}



.event-image img{
  width:100%;
  border-radius:15px;
  object-fit:cover;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}


.event-image:hover img{
   transform: scale(1.08);
}


/* CONTENT */
.event-content{
  flex:1;
  /* box-shadow: 0px 4px 8px rgba(0,0,0,0.2); */
}

.meta{
  display:flex;
  gap:20px;
  color:#c0392b;
  font-size:14px;
  margin-bottom:10px;
}

.event-content h2{
  font-size:28px;
  margin-bottom:15px;
  line-height:1.3;
}

.event-content p{
  color:#555;
  line-height:1.6;
}

/* 🔥 RESPONSIVE */
@media (max-width: 900px){
  .event-container{
    flex-direction:column;
  }

  .event-content h2{
    font-size:24px;
  }
}

@media (max-width: 500px){
  .event-section{
    padding:40px 15px;
  }

  .event-content h2{
    font-size:20px;
  }

  .meta{
    flex-direction:column;
    gap:5px;
  }
}
