html {
  scroll-behavior: smooth;
}

/* =======================
   GLOBAL
======================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:  linear-gradient(135deg, #f5f7fa, #dbe9f4, #c3d9f0);
  animation: fadeIn 0.6s ease-in;
}

/* PAGE FADE IN */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* TOP BAR (CENTER CONTACT ONLY) */
.top-bar {
  background: #062a5e;
  color: rgb(221, 185, 24);
  text-align: center;
  padding: 8px 15px;
  font-size: 15px;
  font-family:Verdana, Geneva, Tahoma, sans-serif ;
  font:bolder;
  font-weight: 500;
}

/* NAVBAR */
.navbar {
  background-color: #062a5e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  font-family: Arial, Helvetica, sans-serif;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
}

/* MENU */
.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 8px;
  transition: 0.2s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 5px;
}
/* CONTACT */
.contact {
  font-size: 14px;
  text-align: right;
  line-height: 1.4;
  flex-shrink: 0;
}

.news-item.latest {
  border-left: 4px solid #b8860b;
  background: rgba(255,255,255,0.15);
}
/* =======================
   SLIDER
======================= */
.slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.slide.active {
  display: flex;
}

/* BACKGROUNDS */
.slide:nth-child(1) { background-image: url("slidejedan.jpg"); }
.slide:nth-child(2) { background-image: url("slidedva.jpg");}
.slide:nth-child(3) { background-image: url("slidetri.jpg"); }
.slide:nth-child(4) { background-image: url("slidecetiri.jpg");}

/* OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.slide-content {
  position: relative;
  z-index: 2;
}

.slide-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: white;
  color: #0d47a1;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ddd;
  transform: scale(1.05);
}

/* =======================
   MISSION CARDS
======================= */
.mv-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background:  linear-gradient(to bottom, #f5f7fa, #e4ecf7);;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 300px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* =======================
   INFO ACCORDION
======================= */
.info-section{
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARD */
.info-card{
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

/* HOVER LIFT */
.info-card:hover{
  transform: translateY(-4px);
}

/* HEADER */
.info-header{
  background: #062a5e;
  color: white;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

/* ARROW */
.info-header::after{
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: 0.3s;
}

/* BODY */
.info-body{
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 20px;
}

/* OPEN STATE */
.info-card.active .info-body{
  max-height: 1000px;
  padding: 20px;
}

.info-card.active .info-header::after{
  content: "–";
}

/* GRID STYLE ITEMS */
.grid-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.grid-list span{
  background: #f5f7fa;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.grid-list span:hover{
  background: #e8eef7;
}
/* =======================
   POSITION SECTION
======================= */
.position-section {
  padding: 80px 20px;
  background: #b8860b;
  color: white;
}

.position-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.position-text-box {
  flex: 1;
  min-width: 300px;
}

.position-title {
  font-size: 36px;
  color: white;
  font-weight: bold;
}

.position-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: white;
  display: block;
  margin-top: 10px;
}

.position-text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.position-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.position-image img:hover {
  transform: scale(1.05);
}

/* =======================
   VIDEO + NEWS
======================= */
.video-news-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.video-section {
  flex: 2;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.news-sidebar {
  flex: 1;
  background: #062a5e;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.news-item {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.news-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* =======================
   MAP
======================= */
.map-section {
  padding: 60px 20px;
  text-align: center;
  background: #f5f7fa;
}

.map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =======================
   MOBILE
======================= */
@media (max-width: 768px) {
  .video-news-wrapper {
    flex-direction: column;
  }

  .video-section {
    height: auto;
  }
}

/* FOOTER */
.footer {
  background-color: #062a5e;
  color: white;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* SECTIONS */
.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 200px;
}

/* LINKS */
.footer-middle a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
  transition: 0.2s;
}

.footer-middle a:hover {
  transform: translateX(5px);
  opacity: 0.8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 12px;
  opacity: 0.8;
}

/* HERO WRAPPER */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* DARK + GRADIENT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 42, 94, 0.75),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

/* SMALL BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* MAIN TITLE */
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: white;
  color: #062a5e;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* SECONDARY BUTTON */
.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER EFFECTS */
.btn.primary:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
}

.btn.secondary:hover {
  background: white;
  color: #062a5e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.image-showcase{
  display: flex;
  gap: 15px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* EACH IMAGE BOX */
.img-box{
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 280px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* ZOOM ON HOVER */
.img-box:hover img{
  transform: scale(1.1);
}

/* DARK OVERLAY */
.img-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;

  opacity: 0;
  transition: 0.4s ease;
}

/* SHOW TEXT ON HOVER */
.img-box:hover .img-overlay{
  opacity: 1;
}

/* TEXT STYLE */
.img-overlay h3{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.img-overlay p{
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px){
  .image-showcase{
    flex-direction: column;
  }

  .img-box{
    height: 220px;
  }
}
.modal{
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  /* IMPORTANT */
  justify-content: center;
  align-items: center;

  cursor: zoom-out;

  animation: fadeModal 0.2s ease;
}

/* IMAGE */
.modal img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);

  transform: scale(0.8);
  animation: zoomIn 0.25s ease forwards;
}

/* ANIMATIONS */
@keyframes zoomIn {
  to { transform: scale(1); }
}

@keyframes fadeModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-news-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
}

/* LEFT VIDEO */
.video-hero-left {
  flex: 2;
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-radius: 12px;
}

/* VIDEO */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.video-news-wrapper {
  align-items: stretch;
}

/* TEXT */
.video-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 30px;
  max-width: 400px;
}

.video-content h2 {
  font-size: 28px;
}

.video-content p {
  font-size: 15px;
  margin: 10px 0 20px;
}

/* RIGHT SIDEBAR */
.news-sidebar {
  flex: 1;
  background: #062a5e;
  color: white;
  padding: 20px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .video-news-wrapper {
    flex-direction: column;
  }

}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}
.center-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #062a5e;
  margin: 60px 0 20px;
  position: relative;
  letter-spacing: 1px;
}

/* underline effect */
.center-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #b8860b;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}
/* =======================
   SUPPORT BUTTON
======================= */
.support-section {
  text-align: center;
  padding: 40px 20px 10px;
}

.support-btn {
  display: inline-block;
  background: #b8860b;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.support-btn:hover {
  transform: translateY(-3px);
  background: #d4a017;
}
.donation-page{
  max-width: 600px;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.donation-page h1{
  color: #062a5e;
  margin-bottom: 10px;
}

.donation-page p{
  margin-bottom: 20px;
  color: #555;
}

.donation-page input,
.donation-page select{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.donation-page button{
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #062a5e;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.donation-page button:hover{
  background: #041d40;
}
/* =========================
   PROGRAM PAGE STYLING
========================= */

/* HERO TITLE PAGE (reuse for all inner pages) */
.page-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* BACKGROUND (can use same video or image) */
.page-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   PROGRAM CONTENT SECTION
========================= */

.program-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.program-section h2 {
  color: #062a5e;
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.program-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* =========================
   PROGRAM CARDS GRID
========================= */

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.program-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-card h3 {
  color: #062a5e;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 14px;
  color: #555;
}

.doc-image {
  text-align: center;
  margin-top: 40px;
}

.doc-image img {
  max-width: 100%;
  width: 700px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.news-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #b8860b;
  color: white;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.news-item a:hover {
  background: #d4a017;
}
.support-section {
  margin-top: 20px;
  text-align: center; /* center below video */
}

.btn-support {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  color: #0b2545; /* dark blue text to match your theme */
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-support:hover {
  background: linear-gradient(135deg, #c9a227, #e1b80d);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.btn-support:active {
  transform: scale(0.98);
}
/* DROPDOWN */
.dropdown {
  position: relative;
}

/* HIDDEN MENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #062a5e;
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 999;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.15);
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-links {
  display: flex;
  align-items: center; /* keeps everything in one line */
}

.dropdown {
  position: relative;
  display: flex;        /* 🔥 THIS FIXES YOUR ISSUE */
  align-items: center;
}

/* make it look like other links */
.dropdown > a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 8px;
}
.sound-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #b8860b;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.sound-btn:hover {
  background: #d4a017;
}
/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

  /* NAVBAR FIX */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo span {
    font-size: 14px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px;
  }

  /* DROPDOWN FIX */
  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  /* VIDEO + SIDEBAR */
  .video-news-wrapper {
    flex-direction: column;
  }

  

  .video-content {
    max-width: 100%;
    padding: 20px;
  }

  .video-content h2 {
    font-size: 20px;
  }

  .video-content h3 {
    font-size: 16px;
  }

  /* NEWS SIDEBAR */
  .news-sidebar {
    margin-top: 15px;
  }

  /* SLIDER */
  .slide-content h2 {
    font-size: 22px;
  }

  .slide-content h3 {
    font-size: 14px;
  }

  /* HERO */
  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* CARDS */
  .card {
    width: 100%;
  }

  /* GRID LIST */
  .grid-list {
    grid-template-columns: 1fr;
  }

  /* IMAGE SHOWCASE */
  .image-showcase {
    flex-direction: column;
  }

  .img-box {
    height: 200px;
  }

  /* MAP */
  .map-container iframe {
    width: 100%;
    height: 300px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

}
/* BURGER BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    position: relative;
  }

  /* SHOW BURGER */

  /* HIDE MENU */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #062a5e;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  /* SHOW WHEN ACTIVE */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

}
@media (max-width: 768px) {

  /* Make dropdown same as links */
  .nav-links .dropdown {
    width: 100%;
  }

  .nav-links .dropdown > a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* MOBILE dropdown behavior */
  .dropdown-menu {
    display: none;
    position: static; /* 🔥 IMPORTANT for mobile */
    background: transparent;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a,
  .nav-links .dropdown > a {
    font-size: 18px; /* SAME SIZE */
    font-weight: normal;
    padding: 15px 0;
    background: transparent; /* REMOVE grey box */
    border-radius: 0;
  }

}
@media (max-width: 768px) {

  /* Move text inward so arrows don’t cover it */
  .slide-content {
    padding: 0 50px; /* space left + right */
  }

  /* OPTIONAL: make arrows slightly closer to edges */
  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

}@media (max-width: 768px) {

  .prev, .next {
    font-size: 20px;
    padding: 8px;
  }

}
@media (max-width: 768px) {

  .video-hero-left {
    height: auto !important;   /* 🔥 remove fixed height */
    min-height: 90vh;          /* 🔥 force minimum size */
  }

}

.video-bg {
  height: 100%;
}
.video-bg {
  width: 100%;
}
/* =========================
   GLOBAL MOBILE NAVBAR
========================= */



@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  /* TOP BAR */
  .top-bar {
    font-size: 13px;
    padding: 6px;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo img {
    height: 45px;
  }

  .logo span {
    font-size: 13px;
  }

  /* HERO */
  .page-hero {
    height: 40vh;
  }

  .page-hero-content h1 {
    font-size: 24px;
  }

  .page-hero-content p {
    font-size: 14px;
  }

  /* SECTIONS */
  .program-section {
    margin: 40px auto;
  }

  .program-section h2 {
    font-size: 22px;
  }

  .program-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CARDS */
  .program-card {
    padding: 18px;
  }

  .program-card h3 {
    font-size: 16px;
  }

  .program-card p {
    font-size: 13px;
  }

  /* FOOTER */
  .footer {
    text-align: center;
  }

}
.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent !important;
  cursor: pointer;
  font-weight: bold;
  color: white !important; /* FORCE white */
  
}

/* ACTIVE */
.tab-btn.active {
  color: #b8860b !important; /* GOLD */
  border-bottom: 3px solid #b8860b;
}

/* REMOVE ANY BLUE */
.tab-btn:not(.active) {
  color: white !important;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.tabs .tab-btn {
  font-size: 18px;
  font-weight: 700;
}


@media (max-width: 768px) {
  .hero-buttons .btn {
    width: auto;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
  }
}
.range-container {
  margin: 20px 0;
  text-align: center;
}

#amountRange {
  width: 100%;
  accent-color: #0070ba;
}

.amount-display {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #amountRange {
    height: 30px;              /* easier to touch */
  }

  .amount-display {
    font-size: 22px;           /* clearer value */
  }

  .range-container {
    padding: 0 10px;           /* prevents edge touching */
  }
}
#amountRange::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0070ba;
  cursor: pointer;
}
/* SCROLLABLE NEWS SIDEBAR */
.tab-content {
  height: 420px;        /* shows about 5 news items */
  overflow-y: auto;     /* enables scroll */
  padding-right: 5px;   /* space for scrollbar */
}

/* OPTIONAL: always show scrollbar */
.tab-content {
  overflow-y: scroll;
}
.sidebar {
  width: 300px;
  padding: 15px;
  background: #062a5e;
  border-radius: 10px;
}


.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  background: #3b5b86; /* ✅ blue now */
  color: white;

  padding: 15px;
  border-radius: 15px;
}

.news-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0; /* 🔥 prevents squishing */
}

.news-item p {
  color: white;
  margin: 0;
  font-size: 15px;
  font-weight: 500;

  max-width: 300px; /* 🔥 keeps layout consistent */
}

.tag {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 5px;
  color: white;
}

.tag.world {
  background: purple;
}

.tag.bih {
  background: blue;
}
.news-item p {
  color: white;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  background: #3b5b86;
  color: white;

  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;

  min-height: 110px; /* 🔥 THIS FIXES SIZE */
}
@media (max-width: 600px) {
  .news-item {
    padding: 10px;
    gap: 10px;
  }

  .news-item img {
    width: 55px;   /* 🔥 smaller image */
    height: 55px;
  }

  .news-item h4 {
    font-size: 14px; /* 🔥 smaller text */
  }
}
.founders {
  padding: 60px 20px;
  text-align: center;
  background: #0b2c5a;
  color: white;
}

.founders h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.founder-card {
  background: #3b5b86;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%; /* 🔥 makes it circular */
  margin-bottom: 15px;
}

.founder-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.founder-card p {
  font-size: 14px;
  color: #dcdcdc;
}
@media (max-width: 600px) {
  .founders-container {
    flex-direction: column;
    align-items: center;
  }
}