
/* ======Bootstrap Icons===== */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
    url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;

}/* ----------------------------------------------
   RESET + FONT
---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


    body {
      font-family: "Figtree", sans-serif;
      overflow-x: hidden;
    }

    /* ================= TOPBAR ================= */
    .topbar {
      background: #152546;
      height: 60px;
      display: flex;
      align-items: center;
      color: #fff;
    }

    /* ================= TOPBAR GRID ================= */
    .topbar-grid {
      display: grid;
      grid-template-columns: 150px 1fr auto;
      align-items: center;
      height: 60px;
      position: relative;
    }

    /* ================= LOGO ================= */
    .logo-holder {
      position: relative;
      width: 150px;
      height: 60px;
    }

    .logo-box {
      position: absolute;
      left: 0;
      /* top: 22px; */
      width: 125px;
      height: 140px;
      background: #fff;
      padding: 8px;
      border-bottom-left-radius: 14px;
      border-bottom-right-radius: 14px;
      z-index: 999;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    }

    .logo-box img {
      width: 105px;
      height: 121px;
      object-fit: contain;
    }

    /* ================= CONTACT ================= */
    .contact-row {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .contact-row i {
      color: #ff9c00;
      margin-right: 6px;
    }

    /* ================= SOCIAL ICONS ================= */
    .social-row {
      display: grid;
      grid-auto-flow: column;
      gap: 6px;
      align-items: center;
    }

    .follow-label {
      margin-right: 6px;
    }

    .social-icon {
      width: 28px;
      height: 28px;
      background: #ff9c00;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: #fff;
    }
/* ================= RESPONSIVE TOPBAR ================= */

/* ---- Tablets & Small Laptops ---- */
@media (max-width: 992px) {

  .topbar {
    height: auto;
    padding: 12px 0;
  }

  .topbar-grid {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
    height: auto;
  }

  /* Logo stays left */
  .logo-holder {
    width: 120px;
    height: 60px;
  }

  .logo-box {
    width: 120px;
    height: 130px;
    top:-15px;
  }

  /* Contact shifts to next row */
  .contact-row {
    grid-column: 1 / 3;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    display: none;
  }

  /* Social row moves below contact */
  .social-row {
    grid-column: 1 / 3;
    justify-content: center;
    display: none;
  }
}

/* ---- Mobile Phones ---- */
@media (max-width: 576px) {

  .topbar {
    height: auto;
    padding: 15px 0;
  }

  .topbar-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }

  .logo-holder {
    margin: 0 auto;
    height: 60px;
  }

  .logo-box {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Contact becomes stacked */
  .contact-row {
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
  }

  /* Social icons centered */
  .social-row {
    justify-content: center;
    margin-top: 8px;
  }
}

    /* ================= HERO SLIDER ================= */
    .hero-slider {
      position: relative;
      height: 600px;
      z-index: 99;
      background: url('../img/slider_bg.png') center/cover no-repeat;
      padding-top: 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 480px;
      align-items: center;
      height: 100%;
      gap: 40px;
      margin-top: 30px;
    }

    /* ================= LEFT TEXT ================= */
    .hero-left h1 {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.1;
      color: #0e1b2b;
    }

    .highlight {
      color: #ff9c00;
    }

    .hero-left p {
      margin-top: 10px;
      font-size: 16px;
      max-width: 500px;
    }

    .hero-btn {
      margin-top: 25px;
      border: 2px solid #0e1b2b;
      padding: 10px 28px;
      border-radius: 40px;
      font-weight: 600;
      color: #0e1b2b;
    }

    .hero-btn:hover {
      background: #0e1b2b;
      color: #fff;
    }

    /* ================= RIGHT IMAGE ================= */
    .hero-img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* ================= REMOVE BOOTSTRAP INDICATORS ================= */
    .carousel-indicators {
      display: none !important;
    }

    /* ================= CUSTOM DOTS ================= */
    .custom-dots {
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 20;
    }

    .custom-dots .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #a5a5a5;
      cursor: pointer;
      transition: 0.3s;
    }

    .custom-dots .dot.active {
      width: 12px;
      height: 12px;
      background: #303030;
    }

    /* ================= RESPONSIVE ================= */
   /* ================= RESPONSIVE (TABLET & MOBILE) ================= */
@media (max-width: 992px) {

  .hero-slider {
    height: auto;
    padding: 40px 0 80px;    /* top+bottom spacing */
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 30px;
    margin-top: 20px;
    height: auto;
  }

  .hero-left h1 {
    font-size: 34px;              /* reduced for mobile */
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 15px;
    max-width: 90%;
    margin: 10px auto 0;
  }

  .hero-btn {
    margin: 20px auto 0;
    display: inline-block;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  .hero-img {
    width: 75%;
    max-width: 320px;
    margin: 10px auto 0;
    height: auto;
    object-fit: contain;         /* ensures full image visible */
  }

  .custom-dots {
    bottom: -20px;               /* closer to slider for mobile */
  }
}


/* ============== SMALLER MOBILE (max-width: 576px) ============== */
@media (max-width: 576px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-img {
    width: 85%;
    max-width: 260px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .custom-dots .dot {
    width: 8px;
    height: 8px;
  }

  .custom-dots .dot.active {
    width: 10px;
    height: 10px;
  }
}

/* ================= GRID WRAPPER ================= */
.three-blocks-grid {
  width: 100%;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr; /* RIGHT BOX IS WIDER */
  width: 100%;
  min-height: 310px; /* Bigger height as you asked */
}

/* ================= SHARED BOX STYLE ================= */
.box {
  display: flex;
  align-items: center;
  padding: 50px;
  height: 100%;
}

/* LEFT BOX */
.left-box {
  background: #152546;
  color: white;
}

/* MIDDLE BOX */
.middle-box {
  background: #EC8C25;
  color: white;
}

/* CONTENT */
.content .sub-title {
  font-size: 16px;
  font-weight: 500;
}

.left-box .sub-title {
  color: #FFA235;
}
.middle-box .sub-title {
  color: #fff;
}

.content h2 {
  font-size: 23px;
  line-height: 1.4;
  margin: 15px 0 25px;
  font-weight: 500;
}

.block-btn {
  background: white;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #152546;
  border: 2px solid transparent;
}

.block-btn:hover {
  border-color: white;
  background: transparent;
  color: white;
}

.orange-btn {
  color: #EC8C25;
}

.orange-btn:hover {
  border-color: white;
  color: white;
  background: transparent;
}

/* ================= RIGHT VIDEO BOX ================= */
.right-box {
  padding: 0;
  background: #000;
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;  /* Fills entire box */
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .grid-wrapper {
    grid-template-columns: 1fr; /* Stack */
    min-height: auto;
  }

  .box {
    padding: 35px 25px;
    min-height: 320px;
  }

  .video-wrapper {
    height: 300px;
  }

  .content h2 {
    font-size: 18px;
  }
}
/*  */
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 60px 0;
}

/* LEFT IMAGE TOUCHING LEFT EDGE */
.about-left {
  padding: 0 !important;
  margin: 0;
}

.about-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT SIDE CONTENT */
.about-right {
  padding: 40px 50px;
}

.about-tag {
  font-size: 16px;
  color: #EC8C25;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-tag i {
  margin-right: 6px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  color: #152546;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 550px;
}

.know-btn {
  border: 2px solid #152546;
  border-radius: 40px;
  padding: 10px 28px;
  color: #152546;
  font-weight: 600;
}

.know-btn:hover {
  background: #152546;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .about-full-img {
    height: 300px;
  }

  .about-title {
    font-size: 30px;
  }
}

/* ================= VMV SECTION ================= */
.vmv-section {
  padding: 10px 0;
}

/* CARD */
.vmv-card {
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  text-align: center;
  padding: 45px 25px 40px;
  background: #fff;
  transition: 0.3s;
  margin-bottom: 30px;
}

.vmv-card:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* ICON */
.vmv-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* TITLE */
.vmv-title {
  font-size: 25px;
  font-weight: 500;
  color: #0a0535;     /* deep navy – matches screenshot */
  margin-bottom: 12px;
}

/* TEXT */
.vmv-text {
  font-size: 16px;
  color: #000000;
  max-width: 260px;
  margin: 0 auto 18px;
}

/* LINK */
.vmv-link {
  color: #EC8C25;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.vmv-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .vmv-card {
    padding: 40px 20px;
  }

  .vmv-title {
    font-size: 20px;
  }

  .vmv-text {
    font-size: 14px;
  }
}

/* Main Section Styling */
.services-section {
  padding: 30px 0;
}

.services-container {
  background: #152546;     /* deep navy blue */
  padding: 60px 50px;
  border-radius: 30px;
}

/* Top Tag */
.services-tag {
  font-size: 16px;
  font-weight: 500;
  color: #EC8C25;
  margin-bottom: 10px;
}

.services-tag i {
  margin-right: 5px;
}

/* Main Heading */
.services-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 35px;
}

/* Service Cards */
.service-card {
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 266px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
}

.service-label {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

/* Responsive Fixes */
@media(max-width: 992px) {
  .services-container {
    padding: 45px 25px;
  }

  .service-card img {
    height: 170px;
  }
}

@media(max-width: 768px) {
  .services-title {
    font-size: 26px;
  }
}


/* ================ SECTION ================= */
.achievements-section {
  padding: 40px 0;
}

/* Title */
.ach-tag {
  font-size: 16px;
  font-weight: 500;
  color: #EC8C25;
  margin-bottom: 6px;
}

.ach-title {
  font-size: 32px;
  font-weight: 800;
  color: #152546;
  margin-bottom: 50px;
}

/* ========== GRID ========== */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  text-align: center;
}

/* Vertical Dividers */
.ach-grid .ach-item {
  position: relative;
  padding: 0 20px;
}

.ach-grid .ach-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  height: 120px;
  width: 1px;
  background: #d8d8d8;
}

/* ICON IMAGE — LARGE WITHOUT BG */
.ach-icon-img {
  width: 85px;   /* Increased */
  height: 85px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Text */
.ach-label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.ach-number {
  font-size: 36px;
  font-weight: 500;
  color: #152546;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .ach-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .ach-grid .ach-item::after {
    display: none;
  }
}



/* ================= DONATE SECTION ================= */
.donate-section {
  padding: 30px 0;
}

/* Light rounded container */
.donate-box {
  background: #f5f0e8; /* Light cream shade */
  padding: 50px;
  border-radius: 28px;
}

/* LEFT IMAGE */
.donate-left {
  text-align: center;
}

.donate-img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
}

/* RIGHT SIDE */
.donate-tag {
  font-size: 16px;
  font-weight: 500;
  color: #EC8C25;
  margin-bottom: 12px;
}

.donate-tag i {
  margin-right: 6px;
}

.donate-title {
  font-size: 34px;
  font-weight: 800;
  color: #152546;
  margin-bottom: 18px;
  line-height: 1.3;
}

.donate-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 25px;
}

/* BUTTON */
.donate-btn {
  background: #152546;
  color: #fff;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
}

.donate-btn:hover {
  background: #0d234f;
  color: #fff;
}
/* ================= TABLET (≤ 992px) ================= */
@media (max-width: 992px) {

  .donate-box {
    padding: 35px;
    text-align: center;
  }


  .donate-img {
    max-width: 300px;
    margin-bottom: 25px;
  }

  .donate-title {
    font-size: 28px;
  }

  .donate-text {
    font-size: 14px;
    max-width: 100%;
  }
}


/* ================= MOBILE (≤ 576px) ================= */
@media (max-width: 576px) {

  .donate-box {
    padding: 25px 20px;
  }

  .donate-img {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .donate-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .donate-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .donate-btn {
    padding: 9px 24px;
    font-size: 14px;
  }
}






/* ============================
News Section
================================ */
.news-section{
  padding: 20px 0px;
}

/* Titles */
.news-tag {
  font-size: 16px;
  font-weight: 500;
  color: #ff9900;
}

.news-title {
  font-size: 38px;
  font-weight: 800;
  color: #0a1a40;
  margin-bottom: 20px;
}

/* Video card */
.news-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.news-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: red;
  pointer-events: none;
}

/* ===================== DOTS ===================== */

.news-owl .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.news-owl .owl-dot {
  width: 30px;
  height: 5px;
  background: #d5d5d5 !important;
  border-radius: 5%;
  display: inline-block;
  margin: 0 6px;
  transition: 0.3s;
}

.news-owl .owl-dot.active {
  width: 30px;
  height: 5px;
  background: #0a1a40 !important;
}

/* Responsive */
@media (max-width: 576px) {
  .news-img {
    height: 220px;
  }

  .play-btn {
    font-size: 38px;
  }
  .news-title {
    font-size: 25px;
    font-weight: 800;
    color: #0a1a40;
    margin-bottom: 20px;
}
}

/* Section */
.qr-donate-section {
  padding: 20px 0 40px;
}

.qr-box {
  background: #F6F3EC;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Left Content */
.qr-tag {
  color: #EC8C25;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.qr-title {
  font-size: 36px;
  font-weight: 800;
  color: #152546;
  line-height: 1.3;
}

.highlight {
  color: #EC8C25;
}

.qr-text {
  font-size: 16px;
  color: #444;
  margin-top: 15px;
  max-width: 550px;
}

.qr-btn {
  margin-top: 22px;
  padding: 12px 32px;
  background: #152546;
  border-radius: 40px;
  color: white;
  font-weight: 600;
}

.qr-btn:hover {
  background: #EC8C25;
  color: #fff;
}

/* Trust Feature Icons */
.qr-icons-row {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.qr-icon-box {
  text-align: center;
}

.qr-icon-box i {
  font-size: 32px;
  color: #EC8C25;
}

.qr-icon-box p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #152546;
}

/* QR Image Box */
.qr-image-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  display: inline-block;
}

.qr-image {
  width: 240px;
  height: auto;
}

.qr-trust-name {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #152546;
  letter-spacing: 1px;
}

/* ------- PAYMENT ICONS -------- */
.payment-icons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.payment-icons div {
  text-align: center;
}

.payment-icons i {
  font-size: 26px;
  color: #152546;
  display: block;
}

.payment-icons span {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  color: #333;
}

/* ================= TABLET (≤ 992px) ================= */
@media (max-width: 992px) {

  .qr-box {
    padding: 35px;
  }

  .qr-title {
    font-size: 30px;
  }

  .qr-text {
    font-size: 15px;
  }

  .qr-icons-row {
    gap: 20px;
  }

  .qr-icon-box i {
    font-size: 28px;
  }

  .qr-image-box {
    padding: 20px;
  }

  .qr-image {
    width: 200px;
  }
}

/* ================= MOBILE (≤ 576px) ================= */
@media (max-width: 576px) {

  .qr-box {
    padding: 25px 20px;
    text-align: center;
  }

  /* Left & Right columns stack */
  .qr-donate-section .row {
    flex-direction: column;
  }

  .qr-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .qr-text {
    font-size: 14px;
    max-width: 100%;
  }

  .qr-btn {
    padding: 10px 26px;
    margin-top: 18px;
    font-size: 14px;
  }

  /* Icons row stacked */
  .qr-icons-row {
    flex-direction: row;
    gap: 12px;
    margin-top: 25px;
  }

  .qr-icon-box i {
    font-size: 26px;
  }

  /* QR image */
  .qr-image-box {
    margin-top: 25px;
    padding: 20px;
  }

  .qr-image {
    width: 180px;
  }

  .qr-trust-name {
    font-size: 14px;
    margin-top: 14px;
  }

  /* Payment icons stacked neatly */
  .payment-icons {
    gap: 16px;
  }

  .payment-icons i {
    font-size: 22px;
  }

  .payment-icons span {
    font-size: 11px;
  }
}


/* STRIP WRAPPER */
.empty-strip {
  width: 100%;
  height: auto;
  background: #152546;
  padding: 15px 0;
  color: white;
}

/* CONTENT ALIGNMENT */
.strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CONTACT DETAILS */
.strip-contact {
  display: flex;
  gap: 25px;
  font-size: 14px;
}

.strip-contact i {
  color: #EC8C25;
  margin-right: 6px;
}

/* SOCIAL ICONS */
.strip-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 28px;
  height: 28px;
  background: #EC8C25;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 576px) {

  .strip-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .strip-contact {
    flex-direction: column;
    gap: 6px;
  }

  .about-right {
    padding: 20px 25px;
}
}
