/* ========== RESET / GLOBAL ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
	  font-family: 'sans-serif', Poppins;
    }
	/* ========== HEADER & CONTAINER ========== */
    .site-header {
      background: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      position: relative;
      z-index: 999;
    }

    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 18px;
    }
	/* ========== NAVBAR (FLEX: LOGO + MENU SIDE BY SIDE) ========== */
    /* NAVBAR */
	.navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /*flex-wrap: wrap;
      gap: 20px;
      min-height: 80px;*/
      position: relative;
    }
	
	/* LOGO - fixed alignment, no extra margin/padding issues */
    .logo {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }
	 .logo img {
      height: 60px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: 0.2s;
    }
  /* ----- MAIN MENU (DESKTOP) ----- */
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 6px;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
    }
	/* menu items */
    .nav-menu li {
      position: relative;
      list-style: none;
    }
     .nav-menu li a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 10px 14px;
      display: inline-block;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
	 .nav-menu li a:hover {
      background:#333;
      color:#fff;
    }
	/* DONATE BUTTON STYLE */
    .btn {
      background: #008080 !important;
      color: white !important;
      border-radius: 40px;
      padding: 8px 20px !important;
      font-weight: 600;
      transition: 0.2s;
      box-shadow: 0 2px 5px rgba(0,128,128,0.2);
    }
	.btn:hover {
      background: #006666 !important;
      transform: scale(0.98);
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
	
	/* ========== DROPDOWN (parent) ========== */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      min-width: 160px;
      /*box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
      border-radius: 16px;
      padding: 8px 0;
      z-index: 1050;
      border: 1px solid #eef2f6;*/
    }
	
	.dropdown:hover .dropdown-menu {
      display: block;
      animation: fadeInUp 0.2s ease;
    }
	 .dropdown-menu li {
      width: 100%;
    }
	 .dropdown-menu a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 12px;
      font-size: 0.9rem;
      white-space: nowrap;
    }
	 /* SUBMENU (third level) */
    .submenu {
      position: relative;
    }

    .submenu-menu {
      display: none;
      position: absolute;
      left: 100%;
      top: 0;
      background: #fff;
      min-width: 150px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
      /*border-radius: 14px;
      padding: 8px 0;*/
      border: 1px solid #eef2f6;
    }
		
    .submenu:hover .submenu-menu {
      display: block;
      animation: fadeInLeft 0.2s ease;
    }

    .submenu-menu li a {
      white-space: nowrap;
    }
 /* ========== SEARCH BOX ========== */
    .search-item {
      margin-left: 4px;
    }

    .search-box {
      display: flex;
      align-items: center;
      background: #f5f5f5;
      border: 1px solid #000;
      border-radius: 60px;
      padding: 5px 8px 5px 16px;
	  box-shadow:0 2px 8px rgba(0,0,0,0.1);
      transition: 0.2s;
    }
    .search-box input {
      border: none;
      outline: none;
      background: transparent;
      padding: 6px 0;
      width: 130px;
      font-size: 0.85rem;
      color: #1e293b;
    }
	 .search-box input::placeholder {
      color: #94a3b8;
    }
    .search-box button {
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      padding: 6px 8px;
      border-radius: 50%;
      color: #fff;
      transition: 0.2s;
    }
	 .search-box button:hover {
      background: #e2e8f0;
    }
    .search-box:focus-within {
      border-color: #007bff;
      background: #ffffff;
      box-shadow: 0 0 0 2px rgba(0,128,128,0.2);
    }
	/* ========== HAMBURGER (mobile) ========== */
    #menu-toggle {
      display: none;
    }
	
	.menu-icon {
      display: none;
      font-size: 32px;
      cursor: pointer;
      color: #1e293b;
      transition: 0.2s;
      background: transparent;
      padding: 8px 5px;
      border-radius: 8px;
    }
	/* .menu-icon:hover {
      background: #f1f5f9;
    }*/
	
	/* ========== ANIMATIONS ========== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-6px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
  /* ========== RESPONSIVE: TABLET & DESKTOP FIX ========== */
    /* Default desktop: all good, logo left, menu right */
    @media (max-width: 1024px) {
      .container {
        padding: 0 20px;
      }
      .nav-menu li a {
        padding: 8px 10px;
        font-size: 0.88rem;
      }
      .search-box input {
        width: 100px;
      }
    }
	/* ========== MOBILE (= 880px) more robust breakpoint ========== */
    @media (max-width: 880px) {
      .menu-icon {
        display: block;
		position:relative;
        z-index: 1001;
      }
	  
       .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        display: none;
		z-index: 1000;/*menu visible  */
		/* align-items: flex-start;
        padding: 20px 20px 28px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
        border-top: 1px solid #e2e8f0;
        gap: 6px;
        max-height: 80vh;
        overflow-y: auto;*/
      }
	  
	  #menu-toggle:checked ~ .nav-menu {
        display: flex;
      }
	  .nav-menu li {
        width: 100%;
		border-top:1px solid #eee;
        border-bottom: none;
      }
	  
	  .nav-menu a {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        white-space: normal;
      }
	  
	  /* fix dropdown in mobile: static */
      .dropdown-menu,.submenu-menu {
        position: static;
		box-shadow: none;
        /*width: 100%;
        background: #f8fafc;
        border-radius: 16px;
        margin-top: 5px;
        padding: 6px 0 6px 18px;
        display: none;
        border: none;*/
      }
	  
	   .dropdown:hover .dropdown-menu,
      .submenu:hover .submenu-menu {
        display: block;
      }
      .dropdown-menu a,
      .submenu-menu a {
        padding: 10px 20px;
      }

      .submenu-menu {
        padding-left: 28px;
      }

      .search-item {
        width: 100%;
        margin-top: 12px;
      }

      .search-box {
        width: 100%;
        justify-content: space-between;
      }

      .search-box input {
        width: 100%;
      }

      .btn {
        text-align: center;
        display: inline-block;
        width: fit-content;
      }
    }
	  /* ========================= */
/*» TABLET (768-1024px) */
/* ========================= */
@media(min-width:769px) and (max-width:1024px){
  .navbar{
    padding:10px 15px;
  }

  .nav-menu{
    gap:5px;
  }
}

/* small fix for very narrow screens */
    @media (max-width: 480px) {
      .logo img {
        height: 48px;
      }
      .navbar {
        min-height: 68px;
      }
      .container {
        padding: 0 16px;
      }
    }
    /* extra safety: no menu items stack below logo on desktop */
    @media (min-width: 881px) {
      .navbar {
        flex-direction: row;
      }
      .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
      }
      /* ensure dropdown menus overlap properly without breaking alignment */
      .dropdown-menu {
        top: 42px;
      }
    }
span.text-theme{color:#722F37;}
/* =========================
   OUR CAROUSEL SECTION
========================= */
/* Height */
#mainCarousel .carousel-item {
  height: 85vh;
  min-height: 450px;
  position: relative;
}
/* Background images */
.bg-cover {
  background-size: cover;
  background-position: center;
}
.slide1 { background-image: url("../images/slide1.png"); }
.slide2 { background-image: url("../images/slide2.png"); }
.slide3 { background-image: url("../images/slide3.png"); }
.slide4 { background-image: url("../images/slide4.png"); }
/* Dark overlay */
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
/* Ensure content above overlay */
#mainCarousel .container, #mainCarousel .row, #mainCarousel .col-lg-6 {  
  position: relative;
  z-index: 2;
}
/* =====================================================
   CONTROLS (ARROWS)
===================================================== */
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* =========================
   OUR REACH SECTION
========================= */
.our-reach {
  background:linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),url("../images/cta-img.png") center/cover no-repeat;
}

/* =========================
   AWARDS SWIPER NAVIGATION SECTION
========================= */
.awardSwiper .swiper-button-prev,
.awardSwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: #48cfad;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  top: 45%;
}
.awardSwiper .swiper-button-prev::after,
.awardSwiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 600;
}
.awardSwiper .swiper-button-prev:hover,
.awardSwiper .swiper-button-next:hover {
  background-color: #36b39c;
}
/* ================= FOOTER BASE ================= */
.footer {
  background: #000;
  color: #fff;
}
.footer-logo {
  max-width: 180px;
   }

/* ================= FOOTER LINKS ================= */
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #48cfad;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links li a {
  color: #cbd5e1;
  padding-left: 12px;
  position: relative;
}
.footer-links li a::before {
  content: "â€º";
  position: absolute;
  left: 0;
  color: #48cfad;
}
.footer-links li a:hover {
  color: #48cfad;
}
/* ================= ICONS (ADDRESS / PHONE / EMAIL) ================= */
.footer i {
  color: #fff;
  font-size: 13px;
}
/* ================= SOCIAL ICONS ================= */
.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2e35;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
 }
.social-icons a:hover {
  transform: translateY(-3px);
}
/* Social brand hover colors */
.facebook:hover { background: #3b5998; }
.twitter:hover { background: #000; }
.linkedin:hover { background: #0077b5; }
.youtube:hover { background: #ff0000; }
.instagram:hover {  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: 40px;
  background: #071425;
  padding: 15px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #cbd6ff;
}

/*================= Scroll To Top Button =================*/
#scrollTopBtn{
  width:45px;
  height:45px;
  bottom:0px;  
  right:20px;
  z-index:1050;
}
/* ===== COMMON FLOATING BUTTON BASE ===== */
.floating-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  border: none;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
/* ===== DONATE FLOAT BUTTON ===== */
.donate-button {
  bottom: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(to bottom, #30c5ff, #0077b6);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 72px;
  border: 4px solid #e0e0e0;
  box-shadow: var(--shadow-soft);
  text-decoration:none;
}
.donate-button:hover {
  background: linear-gradient(180deg, #00b4d8, #023e8a);
  transform: scale(1.05);
}

/* Breadcrumb Background Only */
.breadcrumb-section {
  background:    linear-gradient(rgba(6,30,65,.6), rgba(6,30,65,.6)), url("../images/breadcrumb.png") center / cover no-repeat;
}
/* Breadcrumb divider without inline CSS */
.custom-breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: "> ";
  }

/* Optional spacing & clarity */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
  font-weight: 600;
}
/* Remove default Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* Icon default state (collapsed) */
.accordion-button .faq-icon {
 
  color: #000;
  transition: transform 0.3s ease;
}
/* When accordion is OPEN */
.accordion-button:not(.collapsed) .faq-icon::before {
  content: "\f056"; /* FontAwesome minus-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* When accordion is CLOSED */
.accordion-button.collapsed .faq-icon::before {
  content: "\f055"; /* FontAwesome plus-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
/*===== ABOUT TABS (MINIMAL)  =====*/
.about-tabs .nav-tabs .nav-link {
  font-weight: 600;
  color: #333;
}

.about-tabs .nav-tabs .nav-link.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
}

.about-tabs .tab-pane {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
}

/* ===== REPORTS TABS (MINIMAL) ===== */

.reports-section .nav-tabs {
  border-bottom: none;
}

.reports-section .nav-tabs .nav-link {
  font-weight: 600;
  color: #444;
  border: none;
  padding: 10px 18px;
}

.reports-section .nav-tabs .nav-link:hover {
  color: #0d6efd;
}

.reports-section .nav-tabs .nav-link.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
  background: transparent;
}

/* TAB CONTENT */
.reports-section .tab-pane {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
}

/* REPORT LIST */
.reports-section .list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.reports-section .list-group-item:last-child {
  border-bottom: none;
}
.payment-option {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}
.payment-option:hover {
  background: #f8f9fa;
}
.payment-option input {
  margin-right: 8px;
}
/* QR image size control */
.qr-img{
  max-width:200px;
}

/* Optional: better card look */
.card{
  border-radius:12px;
}

/* Optional: section spacing improve */
#donate{
  background:#f8f9fa;
}