/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

:root {
  --primary-color: orange;
  --secondary-color: rgb(65, 63, 61);
  --accent-color: #f64e60;
  --dark-color: #1c6e5e;
  --light-color: #f9fbfd;
  --text-color: #000;
  --text-light: #95aac9;
  --font-main: "DM Sans", sans-serif;
  --font-heading: "DM Sans", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --bg-color: #f2e4d845;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1250px;
  padding-left: 20px;
  padding-right: 20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  /*scroll-behavior: smooth;*/
}

body {
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--light-color);
  /* padding-top: 60px; */
  font-family: var(--font-main);
  font-weight: 400;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  transition: var(--transition);
  text-decoration: none!important;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #1c6e5e;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.top-bar .container {
  padding-left: 45px;
  padding-right: 20px;
}

/* hide on scroll */
.top-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ================= TOP BAR TEXT ================= */

.top-bar-text {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-text i {
  color: #f6a400;
  font-size: 14px;
}

.top-bar-text a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.top-bar-text a:hover {
  color: #f6a400;
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons span {
  font-size: 14px;
  color: #fff;
  margin-right: 6px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a i {
  font-size: 14px;
}

/* Hover effect (ORANGE) */
.social-icons a:hover {
  background: #f6a400;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .top-bar-text {
    display: flex;
    font-size: 12px;
    line-height: 1.4;
    gap: 6px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icons {
    justify-content: center;
    margin-top: 6px;
  }

  .social-icons span {
    display: inline;
    font-size: 12px;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 991px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
  }

  /* Hide email address on mobile and tablet */
  .email-address {
    display: none;
  }

  /* Hide "Follow Us" text on mobile and tablet */
  .follow-us-text {
    display: none !important;
  }

  /* Ensure phone number is on the left */
  .phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Ensure social icons are on the right */
  .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    justify-content: flex-end;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
  }

  .social-icons a i {
    font-size: 12px;
  }

  .top-bar-text {
    display: flex;
    font-size: 12px;
    line-height: 1.4;
    flex-wrap: nowrap;
    margin: 0;
  }

  .top-bar {
    padding: 8px 0;
  }
}

@media (max-width: 575px) {
  .top-bar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .phone-number {
    font-size: 11px;
  }

  .phone-number i {
    font-size: 11px;
  }

  .social-icons a {
    width: 24px;
    height: 24px;
  }

  .social-icons a i {
    font-size: 11px;
  }

  .top-bar {
    padding: 6px 0;
  }
}

body.has-sticky-header {
  padding-top: 90px;
}

/* Header Wrapper */
#headerWrapper {
  position: relative;
  z-index: 999;
}

/* HEADER */
header {
  background: #fff;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0; /* ✅ added */
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1001; /* Higher than regular header */
}

/* NAV */
.navbar-brand img {
  max-height: 40px;
}

.nav-link {
  font-weight: 600;
  color: #222 !important;
  padding: 10px 18px !important;
}

.nav-link.active {
  color: #f6a400 !important;
  font-weight: 700;
  position: relative;
}

/* .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #f6a400;
  border-radius: 2px;
} */

/* DROPDOWN */
.dropdown-menu {
  border-radius: 12px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 10px 20px;
}

/* ACTION BUTTONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f6a400;
  border: none;
  color: #fff;
}

.icon-btn.cart {
  background: #1c6e5e;
}

.donate-btn {
  background: #f6a400;
  color: #fff;
  padding: 12px 22px;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
}

.grid-btn {
  background: #f6a400;
  border: none;
  width: 50px;
  height: 50px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .header-actions {
    flex-wrap: wrap;
    margin-top: 15px;
  }
}

.header-placeholder {
  height: auto;
}

.navbar {
  padding: 14px 0;
}

.navbar-brand img {
  max-height: 45px;
  padding: 0px;
  padding-left: 10px !important;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color) !important;
  padding: 12px 18px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  color: var(--light-color);
}

.icon-btn.dark {
  background: var(--dark-color);
}

.donate-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.donate-btn2:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.grid-btn {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border: none;
  color: var(--light-color);
}

@media (max-width: 991px) {
  /* Keep header row intact */
  #mainHeader .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* Make menu overlay instead of pushing layout */
  #mainHeader .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  /* Menu list spacing */
  #mainHeader .navbar-nav {
    text-align: center;
    gap: 10px;
  }
  #mainHeader .navbar-brand {
    flex: 0 0 auto;
    max-width: calc(100% - 60px);
  }

  /* Keep toggle on same line */
  #mainHeader .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }

  #mainHeader .nav-link {
    padding: 4px 0 !important;
    font-size: 16px;
  }

  /* Donate button centered */
  #mainHeader .header-actions {
    justify-content: center;
    margin-top: 20px;
  }
}

.inner-banner {
  position: relative;
  height: 180px;
  background: url("../images/banner-1.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

/* each INNER PAGE BANNER css start */
/* .inner-banner {
  position: relative;
  height: 180px;
  background: url("/images/banner-2.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0; 
  isolation: isolate; 
} */

/* Overlay */
.inner-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  z-index: 1;
  pointer-events: none;
  max-height: 180px; /* Explicitly limit height */
}

/* Content */
.banner-content {
  position: relative;
  text-align: center;
  color: var(--light-color);
  width: 100%;
  z-index: 2;
}

.banner-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  margin-top: 5px;
}

.breadcrumb a {
  color: #f6a400;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: #ffffff;
  font-weight: 500;
}

.breadcrumb .current {
  color: #ffffff;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .inner-banner {
    height: 240px;
  }

  .inner-banner .banner-overlay {
    max-height: 240px; /* Match mobile height */
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* home page BANNER SECTION  */
.banner-section {
  width: 100%;
  overflow: hidden;
  padding: 0px;
}

.banner-section .carousel-item {
  height: auto;
  min-height: 200px;
}

.banner-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--text-color);
}

/* Banner Responsive Design */
@media (min-width: 1200px) {
  .banner-section .carousel-item {
    min-height: 500px;
  }

  .banner-section img {
    min-height: 500px;
    object-fit: contain;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section .carousel-item {
    min-height: 400px;
  }

  .banner-section img {
    min-height: 400px;
    object-fit: contain;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-section .carousel-item {
    min-height: 350px;
  }

  .banner-section img {
    min-height: 350px;
    object-fit: contain;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .banner-section .carousel-item {
    min-height: 300px;
  }

  .banner-section img {
    min-height: 300px;
    object-fit: contain;
  }
}

@media (max-width: 575px) {
  .banner-section .carousel-item {
    min-height: 250px;
  }

  .banner-section img {
    min-height: 250px;
    object-fit: contain;
  }
}

/* ================= CAROUSEL CONTROLS ================= */
.carousel-control-prev,
.carousel-control-next {
  width: 3%!important;
  height: 50px;
  /*top: 50%;*/
  top:250px!important;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-control-prev {
  left: 60px!important;
}

.carousel-control-next {
  right: 40px!important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  rgb(255 255 255 / 19%);
  border-radius: 50%;
  color:#fff;
  width: 45px!important;
  height: 45px!important;
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Custom arrow icons with smaller size */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c6e5e'%3e%3cpath d='m11.354 1.646-6 6a.5.5 0 0 0 0 .708l6 6a.5.5 0 0 0 .708-.708L6.207 8.5l5.855-5.855a.5.5 0 0 0-.708-.708z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c6e5e'%3e%3cpath d='m4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8.5 4.646 2.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Attractive hover effect */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(246, 164, 0, 0.4);
}

.carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='m11.354 1.646-6 6a.5.5 0 0 0 0 .708l6 6a.5.5 0 0 0 .708-.708L6.207 8.5l5.855-5.855a.5.5 0 0 0-.708-.708z'/%3e%3c/svg%3e");
}

.carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='m4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8.5 4.646 2.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Mobile friendly */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-size: 18px 18px;
  }
}

@media (max-width: 575px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 16px 16px;
  }
}

/* Carousel indicators responsive */
@media (max-width: 768px) {
  .carousel-indicators {
    bottom: 15px;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 575px) {
  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
}

/* Sections */
.section {
  padding: 50px 0;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding-top: 2px;
  }

  .banner-section .carousel-item {
    height: 40vh;
  }
}

/* Section Styling */
.slider-section {
  background: var(--primary-color);
  padding: 80px 0;
}

.slider-wrapper {
  max-width: 1100px;
  margin: auto;
  background: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.carousel-item {
  height: 320px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-indicators [data-bs-target] {
  background-color: #0aa0d6;
}

@media (max-width: 768px) {
  .carousel-item img {
    width: 100%;
    height: 38%;
    object-fit: cover;
  }
  .carousel-item {
    height: 220px;
  }

  .slider-title {
    font-size: 24px;
  }
}

.section {
  padding: 50px 0;
  padding-top: 40px;
}

/* ===============================
   Donation CTA Section
=============================== */
.donation-cta {
  position: relative;
   background: url("../images/donation-bg.jpg") center/cover no-repeat;
  padding: 150px 0;
  overflow: hidden;
}

/* Dark Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 41%), rgb(0 0 0 / 37%));
  z-index: 1;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

/* Tag */
.cta-tag {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
  font-size:16px!important;
}

/* Heading */
.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbbf24;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.45);
}

.cta-btn i {
  transition: transform 0.3s ease;
}

/* Hover */
.cta-btn:hover {
  background: #f59e0b;
  transform: translateY(-4px);
}

.cta-btn:hover i {
  transform: translateX(6px);
}

/* ===============================
   Decorative Elements
=============================== */
.brush-accent {
  position: absolute;
  top: -30px;
  left: -40px;
  width: 280px;
  height: 120px;
  background: #fbbf24;
  transform: rotate(-8deg);
  border-radius: 0 0 80px 0;
  z-index: 2;
}

.heart-accent {
  position: absolute;
  top: 30%;
  right: 60px;
  font-size: 42px;
  color: #fbbf24;
  z-index: 2;
  opacity: 0.9;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 2.1rem;
  }

  .heart-accent {
    display: none;
  }
}

@media (max-width: 576px) {
  .donation-cta {
    padding: 90px 0;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }
}

/* ===============================
   Banner Section
=============================== */
.services-banner {
  position: relative;
  background: url("https:/images.unsplash.com/photo-1542816417-0983c9c9ad53")
    center/cover no-repeat;
  padding: 100px 0 180px;
  border-radius: 0 0 40px 40px;
  overflow: visible;
}

/* Dark overlay */
.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Banner text */
.banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.banner-overlay h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-top: 10px;
}

/* ===============================
   Cards Container
=============================== */
.services-cards {
  position: relative;
  z-index: 3;
  margin-top: -120px;
}

/* ===============================
   Service Card
=============================== */
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px dashed var(--dark-color);
}

/* Hover overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* Icon */
.icon-box {
  width: 75px;
  height: 75px;
  background: #aed3cc;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  z-index: 1;
  position: relative;
}

.icon-box i {
  font-size: 32px;
  color: #0f766e;
}

/* Text */
.service-card h5,
.service-card p,
.view-link {
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-color);
  transition: 0.4s;
}

/* .view-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  margin-top: 12px;
  transition: 0.4s;
} */

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.view-link {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* ===============================
   Hover Effects
=============================== */
.service-card:hover {
  transform: translateY(-14px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover .view-link {
  color: #ffffff;
}

.service-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(8deg);
}

.service-card:hover .icon-box i {
  color: #ffffff;
}

.service-card:hover .view-link i {
  transform: translateX(6px);
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 768px) {
  .banner-overlay h2 {
    font-size: 2rem;
  }

  .services-cards {
    margin-top: -80px;
  }
}

/* footer css start */

.footer {
  position: relative;
  padding: 48px 0;
  background: #dde2e2;
  color: var(--secondary-color);
  padding-bottom: 0px;
}

/* Gradient Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 110, 253, 0.05),
    transparent,
    rgba(13, 110, 253, 0.05)
  );
  pointer-events: none;
}

/* Layout */
.footer-container {
  position: relative;
  max-width: var(--container-width);
  margin: auto;
  padding: 0 20px;
}
.footer .navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #9ca3af;
}
.footer-col {
  position: relative;
  padding-right: 24px;
}

.footer-col:first-child {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background: #9ca3af;
  opacity: 0.6;
}

.footer-logo {
  max-width: 185px;
  width: 100%;
  height: auto;
  display: block;
}

/* Text */
.footer-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
}

/* Quick Links */
/* ================= FOOTER LINKS ================= */

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a::before {
  content: "➜" ;
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-color);
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

/* Hover – attractive with movement */
.footer-links a:hover {
  color: var(--dark-color);
  transform: translateX(5px);
  font-weight: 500;
}

.footer-links a:hover::before {
  color: var(--primary-color);
  opacity: 1;
  transform: translateY(-50%) translateX(2px);
}

/* ACTIVE LINK ONLY - REMOVED */

.contact-item a:hover,
.highlight i,
.about-content h2 span {
  color: var(--primary-color);
}

/* FOOTER SOCIAL ICONS  */

.footersocial-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footersocial-icons span {
  font-size: 15px;
  color: var(--text-color);
  margin-right: 6px;
}

.footersocial-icons a {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.footersocial-icons a i {
  font-size: 14px;
}

/* Hover effect (ORANGE) */
.footersocial-icons a:hover {
  background: #f6a400;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footersocial-icons {
    justify-content: center;
    margin-top: 6px;
  }

  .footersocial-icons span {
    font-size: 12px;
  }
  .footer-logo {
    height: 50px;
  }
}

/* Contact Info */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 3px;
}

.contact-item a:hover {
  color: var(--primary-color);
}
.contact-item i {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 2px;
}

/* Map */
.map-box1 {
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
}

.map-box1 iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.map-box1 iframe:hover {
  filter: grayscale(0%);
}

/* Bottom Bar */
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 16px;
  color: var(--text-color);
  padding-bottom: 1px;
}
.footer-bottom a {
  color: #ff9800;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #e65100;
  text-decoration: underline;
}

.footer-bottom span {
  font-weight: 600;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-logo {
    max-width: 140px;
    margin: 0 auto;
  }

  .footer-col:first-child {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* About NGO Section css */
.about-ngo {
  padding-top: 30px !important;
  padding: 0px 0px;
  background-color: var(--bg-color);
}

.about-top {
  margin-bottom: 15px;
}

/* View More button */
.view-more-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.view-more-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.view-more-btn:hover {
  color: var(--primary-color);
}

.view-more-btn:hover i {
  transform: translateX(4px);
}

/* Mobile alignment */
@media (max-width: 768px) {
  .about-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ================================
   NGO Left Image Stack
================================ */

/* .homeabout{
  padding-left:0px!important;
} */
.ngo-image-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* Main Image */
.ngo-image-stack .main-img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* Overlay Image */
.ngo-image-stack .overlay-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 65%;
  border-radius: 22px;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
}

/* ================================
   Responsive
================================ */
@media (max-width: 991px) {
  .ngo-image-stack {
    margin: auto;
  }

  .ngo-image-stack .overlay-img {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 60%;
  }

  .ngo-image-stack::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .ngo-image-stack .overlay-img {
    position: static;
    width: 100%;
    margin-top: 20px;
    filter: grayscale(0%);
  }
}

/* Content */
.about-content .section-tag {
  display: inline-block;
  background: rgba(246, 164, 0, 0.12);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-content .section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.about-content .section-title span {
  color: var(--primary-color);
}

.about-content .section-desc1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 16px;
  text-align: justify;
}

/* Mission */
.about-mission {
  background: var(--light-color);
  padding: 15px;
  border-left: 4px solid var(--primary-color);
  /* margin-bottom: 25px; */
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.about-mission h5 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 85px;
}

.highlight-box {
  background: var(--light-color);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-box i {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.highlight-box h6 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
  font-size: 17px;
}

.highlight-box p {
  font-size: 15px;
  color: var(--text-color);
}

.highlight-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .about-highlights {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .about-content .section-title {
    font-size: 26px;
  }
  .programs-section {
    position: relative;
    padding: 28px 0;
  }
}

/* Button */
/* .Homeabout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px; 
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}


.Homeabout-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
} */

/* sucess story Section */
.success-story-section {
  background-color: var(--light-color);
  padding: 30px 0 !important;
}
.success-story-section .row {
  align-items: stretch; /* forces equal height columns */
}

/* Text */
.section-tag {
  color: var(--dark-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-desc {
  color: var(--secondary-color);
  margin-top: 15px;
  max-width: 520px;
}

/* Progress */
.progress-wrapper {
  margin-top: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 6px;
}

.progress {
  height: 8px;
  background-color: var(--bg-color);
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 20px;
  transition: width 1.2s ease;
}

.progress-bar.green {
  background-color: var(--dark-color);
}

.progress-bar.orange {
  background-color: var(--primary-color);
}

/* Button */
.custom-btn {
  border: 1px solid var(--text-color);
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  transition: 0.3s;
}

.custom-btn:hover {
  background: var(--text-color);
  color: var(--light-color);
}

/* Image Stack */

.image-stack {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.img-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.img-small {
  position: absolute;
  top: -40px;
  left: 0;
  width: 220px;
  border-radius: 25px;
  filter: grayscale(100%);
}

.experience-badge {
  position: absolute;
  bottom: 58%;
  left: 69%;
  padding: 0;
  line-height: 1.3;
}

/* TEXT */
.experience-badge h1 {
  font-size: 45px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.experience-badge p {
  margin: 0;
  font-size: 25px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .experience-badge {
    bottom: 53%;
    left: 65%;
  }
}

@media (max-width: 991px) {
  .image-stack {
    height: auto;
  }

  .image-stack .img-large {
    height: auto;
  }

  .experience-badge {
    bottom: 45%;
    left: 62%;
  }
}

@media (max-width: 768px) {
  .experience-badge {
    bottom: 61%;
    left: 73%;
  }

  .experience-badge h1 {
    font-size: 35px;
  }

  .experience-badge p {
    font-size: 18px;
  }
}

@media (max-width: 425px) {
  .experience-badge {
    bottom: 54%!important;
    left: 64% !important;
  }

  .experience-badge h1 {
    font-size: 30px;
  }

  .experience-badge p {
    font-size: 20px;
  }
    .img-small {
    display: none;
  }

  .image-stack {
    text-align: center;
  }
}




@media (max-width: 375px) {
  .experience-badge {
    bottom: 32%;
    left: 53%;
  }

  .experience-badge h1 {
    font-size: 25px;
  }

  .experience-badge p {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .experience-badge {
    bottom: 56%;
    left: 65%;
  }

  .experience-badge h1 {
    font-size: 22px;
  }

  .experience-badge p {
    font-size: 15px;
  }
}
/* Impact Counter Home Section  css */

.impact-counter {
  padding: 50px 0;
  background: #ffa0004f;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.impact-item {
  text-align: center;
  min-width: 200px;
}

.impact-item h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

/* Colors */
.green h2 {
  color: #065f46;
}

.orange h2 {
  color: #f59e0b;
}

.prefix,
.suffix {
  font-size: 26px;
  font-weight: 700;
}

.impact-item p {
  font-size: 16px;
  color: var(--text-color);
  margin: 0;
  font-weight: 600 !important;
}

/* Divider */
.divider {
  width: 1px;
  height: 55px;
  background: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .divider {
    display: none;
  }
}

/* ======== OUR PROGRAMS ========= */
.programs-section {
  position: relative;
  padding: 50px 0;
  padding-top: 0px;
  background: var(--bg-color);
  overflow: hidden;
}

/* Subtle pattern */
.programs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Section Header css start */

.section-header {
  max-width: 680px;
  /* margin: 0 auto 0px; */
  margin: 28px auto 0px;
}

.section-tag {
  display: inline-block;
  background: rgb(246 164 0 / 20%);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Description */
.section-desc {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 1.4;
  justify-content: center;
}

/* ====== RESPONSIVE ======= */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 5px;
  }
}

/* ======== SCROLL REVEAL ========= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

/* ======= GALLERY PREVIEW ======== */
.gallery-preview-section {
  padding: 8px 0;
  background: var(--light-color);
}

/* Gallery Card */

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-card img {
  width: 100%;
  height: 234px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Title */
.gallery-overlay h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Hover Effects */
.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay h5 {
  transform: translateY(0);
}

/* Hover Effect */
/* .gallery-card:hover img {
  transform: scale(1.05);
} */

/* View More Button */
.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* ======== RESPONSIVE ======= */
@media (max-width: 768px) {
  .gallery-card img {
    height: 220px;
  }
}

/* TESTIMONIAL SECTION css start  */

/* Section */
.testimonial-section {
  padding: 40px 0;
  background: var(--bg-color);
  padding-bottom: 0px;
}

/* Header */
.testimonial-header {
  margin-bottom: 10px;
}

.section-tag {
  color: orange;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-header h2 {
  font-size: 42px;
  font-weight: 700;
}

/* WRAPPER */

.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Slider area */
.testimonial-slider {
  flex: 1;
}

.testimonial-swiper {
  height: 420px;
}

/* === REVIEW LAYOUT === */

.review-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

/* Quote Card */
.review-quote {
  background: #ffffff;
  padding: 45px;
  border-radius: 24px;
  position: relative;
  border: 1px dashed var(--dark-color);
  color: var(text-color) !important;
}

.review-quote::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 44px;
  width: 40px;
  height: 40px;
  background: url("images/quote-n.png") no-repeat center;
  background-size: contain;
  opacity: 0.65;
  pointer-events: none;
}

.review-quote p {
  color: var(text-color) !important;
  margin: 20px 0;
  line-height: 1.7;
  font-size: 16px;
}

.review-quote h4 {
  font-weight: 700;
}

.role {
  font-size: 15px;
  color: var(--text-color);
}

/* Image Card */
.review-image {
  width: 100%;
  max-width: 320px;
  height: 310px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9a825, #f57c00);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==== CONTROLS ==== */

.testimonial-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.testimonial-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background: orange;
}

/* ==== RESPONSIVE == */

@media (max-width: 992px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .review-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-image {
    margin: 0 auto;
  }

  .testimonial-controls {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

/* resposnsivness start */
@media (min-width: 1400px) {
  .testimonial-section {
    padding: 60px 0 0;
  }

  .testimonial-header h2 {
    font-size: 44px;
  }

  .testimonial-wrapper {
    gap: 50px;
  }

  .review-layout {
    gap: 50px;
  }

  .review-quote {
    padding: 55px;
    border-radius: 28px;
  }

  .review-quote p {
    font-size: 17px;
    line-height: 1.75;
  }

  .review-image {
    height: 330px;
    max-width: 340px;
    border-radius: 26px;
  }

  .testimonial-controls button {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1200px) {
  .testimonial-header h2 {
    font-size: 36px;
  }

  .testimonial-wrapper {
    gap: 36px;
  }

  .review-layout {
    gap: 36px;
  }

  .review-quote {
    padding: 42px;
  }

  .review-quote p {
    font-size: 16.5px;
  }

  .review-image {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .testimonial-section {
    padding: 36px 0 0;
  }

  .testimonial-wrapper {
    gap: 30px;
  }

  .review-layout {
    gap: 28px;
  }

  .review-quote {
    padding: 32px;
  }

  .review-quote p {
    font-size: 16px;
  }

  .review-image {
    height: 280px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 32px 0 0;
  }

  .testimonial-header h2 {
    font-size: 30px;
  }

  .review-quote {
    padding: 26px;
  }

  .review-quote p {
    font-size: 15px;
  }

  .review-image {
    height: 250px;
    max-width: 260px;
  }

  .testimonial-controls {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .testimonial-section {
    padding: 28px 0 0;
  }

  .testimonial-header h2 {
    font-size: 26px;
    text-align: center;
  }

  .testimonial-wrapper {
    gap: 20px;
  }

  .review-layout {
    gap: 22px;
  }

  .review-quote {
    padding: 22px;
    border-radius: 18px;
  }

  .review-quote::before {
    top: 14px;
    left: 20px;
    width: 26px;
    height: 26px;
  }

  .review-quote p {
    font-size: 14px;
    line-height: 1.6;
  }

  .review-quote h4 {
    font-size: 16px;
  }

  .role {
    font-size: 13px;
  }

  .review-image {
    height: 220px;
    max-width: 240px;
    border-radius: 18px;
  }

  .testimonial-controls button {
    width: 36px;
    height: 36px;
  }
}

/* FAQ SECTION CSS :start */

.faq-section {
  background: #fafafa;
  padding: 30px;
}

/* Left Content */
.faq-tag {
  color: #f6a400;
  font-weight: 600;
}

.faq-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: justify;
}

.faq-desc {
  color: var(--text-color);
  max-width: 520px;
  margin-top: 16px;
}

/* CTA Box */
.faq-cta {
  background: linear-gradient(135deg, #fff9f0, #fff5e6);
  border-radius: 20px;
  padding: 25px;
  border: 2px solid rgba(246, 164, 0, 0.2);
  box-shadow: 0 8px 25px rgba(246, 164, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f6a400, #ff9800);
}

.faq-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(246, 164, 0, 0.25);
}

.faq-cta-content {
  text-align: center;
}

.cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.faq-cta-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: #1c6e5e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.contact-btn {
  background: linear-gradient(135deg, #f6a400, #ff9800);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(246, 164, 0, 0.3);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #e59400, #f6a400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 164, 0, 0.4);
}

/* FAQ Scroll Container */
.faq-scroll-container {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}

/* Custom scrollbar styling */
.faq-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.faq-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.faq-scroll-container::-webkit-scrollbar-thumb {
  background: #f6a400;
  border-radius: 10px;
}

.faq-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #e59400;
}

/* Responsive FAQ Container */
@media (max-width: 768px) {
  .faq-scroll-container {
    max-height: 400px;
    padding-right: 5px;
    margin-right: -5px;
  }
}

@media (max-width: 576px) {
  .faq-scroll-container {
    max-height: 350px;
    padding-right: 3px;
    margin-right: -3px;
  }
}

/* FAQ Items */
.faq-item {
  background: #fff;
  border-radius: 30px;
  padding: 22px 26px;
  margin-bottom: 15px;
  border: 1px dashed var(--dark-color);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 17px;
  color: var(--text-color);
  user-select: none;
}

.chevron {
  font-size: 18px;
  transition: transform 0.4s ease;
  color: #1c6e5e;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 0px;
  text-align: justify;
}

/* Responsive */
@media (min-width: 1400px) {
  .faq-section {
    padding: 40px;
  }

  .faq-title {
    font-size: 3rem;
  }

  .faq-desc {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
  }

  .faq-cta {
    padding: 36px;
    border-radius: 28px;
  }

  .faq-item {
    padding: 26px 32px;
    border-radius: 34px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer {
    font-size: 16px;
    line-height: 1.75;
    text-align: justify;
  }
}

@media (max-width: 1200px) {
  .faq-section {
    padding: 26px;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-desc {
    font-size: 16.5px;
  }

  .faq-cta {
    padding: 30px;
  }

  .faq-item {
    padding: 22px 26px;
  }
}
@media (max-width: 992px) {
  .faq-section {
    padding: 22px;
  }

  .faq-title {
    font-size: 2.3rem;
  }

  .faq-desc {
    font-size: 16px;
    text-align: justify;
  }

  .faq-cta {
    padding: 28px;
    border-radius: 22px;
  }

  .faq-item {
    padding: 22px 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15.5px;
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 18px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .faq-cta {
    padding: 24px;
  }

  .faq-item {
    padding: 20px 22px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 14px;
  }

  .faq-title {
    font-size: 1.4rem;
    text-align: start;
  }

  .faq-desc {
    font-size: 14px;
    margin-top: 10px;
  }

  .faq-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .faq-cta-header {
    gap: 12px;
  }

  .faq-icon {
    width: 42px;
    height: 32px;
    font-size: 14px;
  }

  .contact-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .faq-item {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .faq-question {
    font-size: 14px;
    gap: 10px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* CONTACT PAGE CSS */

.contact-section {
  padding: 0 0 40px;
}

.contact-section .row {
  align-items: stretch;
}

.contact-section .col-lg-5,
.contact-section .col-lg-7 {
  display: flex;
  flex-direction: column;
}

/* ================= HEADER ================= */

.section-tag {
  color: orange;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
}

.section-desc {
  max-width: 600px;
  color: var(--text-color);
  margin: 15px auto 0;
  font-size: 16px;
}

/* ================= INFO BOX ================= */

.contact-info-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  flex: 1;
  border: 1px solid var(--dark-color);
}

.contact-info-box h4 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.info-item i {
  font-size: 20px;
  color: orange;
  margin-top: 4px;
}

.info-item a {
  text-decoration: none;
  color: var(--text-color);
}

/* ================= SOCIAL LINKS ================= */

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s;
}

.social-links a:hover {
  background: orange;
  color: #fff;
}

/* ================= MAP ================= */

.map-box {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--dark-color);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= FORM ================= */

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  flex: 1; /* ✅ equal height */
  border: 1px solid var(--dark-color);
}

.contact-form-box h4 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.form-control {
  border-radius: 12px;
  padding: 12px;
  border: var(--bs-border-width) solid #b6babd;
}
.rc-anchor-light.rc-anchor-normal,
.rc-anchor-light.rc-anchor-compact {
  border: 1px solid #c3c0c0;
  border-radius: 20px !important;
}

/* ================= BUTTON ================= */

.submit-btn {
  background: orange;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e69500;
}
.contact-form-box .col-12 {
  display: flex;
  justify-content: center;
}

/* ================= RESPONSIVE ================= */

@media (min-width: 1400px) {
  .contact-info-box,
  .contact-form-box {
    padding: 45px;
  }

  .map-box {
    height: 320px;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .contact-info-box,
  .contact-form-box {
    padding: 35px 38px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .contact-section .col-lg-5,
  .contact-section .col-lg-7 {
    display: block;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 35px;
  }

  .map-box {
    height: 260px;
  }

  .section-title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 0 0 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px;
    margin-bottom: 25px;
  }

  .map-box {
    height: 230px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 0 0 25px;
  }

  .section-title {
    font-size: 26px;
    text-align: center;
  }

  .section-desc {
    font-size: 14px;
    padding: 0 10px;
    text-align: center;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 25px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .info-item {
    gap: 10px;
  }

  .info-item i {
    font-size: 18px;
  }

  .map-box {
    height: 200px;
    border-radius: 16px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* =============================
about page css start
============================= */
.aboutimpact-section {
  padding: 30px 0;
  background: #ffffff;
}

/* Tag */
.aboutimpact-tag {
  display: inline-block;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

/* Title */
.aboutimpact-title {
  font-size: 28px;
  font-weight: 700;
  color: #008959;
  margin-bottom: 8px;
}

/* Image Wrapper */
.aboutimpact-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.aboutimpact-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Overlay Card */
.aboutimpact-overlay {
  position: absolute;
  bottom: 30px;
  right: 20px;
  color: #ffffff;
  padding: 0px;
  border-radius: 16px;
  width: 208px;
}

.aboutimpact-overlay h4 {
  font-size: 35px;
  font-weight: 800;
}

.aboutimpact-overlay p {
  font-size: 22px;
  margin: 2px 0;
  font-weight: 700;
}

.aboutoverlay-link {
  color: #ecfeff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}

/* About page Right Content */
.aboutimpact-list {
  padding-left: 15px;
}

.aboutimpact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.aboutimpact-item i {
  font-size: 22px;
  color: var(--dark-color);
  margin-top: 4px;
}

.aboutimpact-item h5 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px !important;
}

.aboutimpact-item p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 0px !important;
}

/* Wrapper for side-by-side layout */
.aboutcontact-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Make both boxes equal width */
.aboutcontact-wrap .aboutcontact-box1 {
  flex: 1;
  min-width: 260px;
}

/* CTA box */
.aboutcontact-box1 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  border-radius: 60px;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  /* background: linear-gradient(135deg, #fbbf24, #f59e0b); */
  background: var(--primary-color);
  text-align: center;
}

/* Icon */
.aboutcontact-box1 i {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}
.aboutcontact-box1 a {
  color: #fff;
}

/* Text */
.aboutcontact-box1 small {
  font-size: 15px;
  color: #ffffff;
  display: block;
}

.aboutcontact-box1 strong {
  font-size: 16px;
  color: #ffffff;
}

/* Hover */
.aboutcontact-box1:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(245, 158, 11, 0.5);
}

/* VOLUNTEER SPECIAL STYLE */

.volunteer-btn {
  background: var(--primary-color);
  border: none;
}

.volunteer-btn i {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.volunteer-btn small,
.volunteer-btn strong {
  color: #ffffff;
}

.volunteer-btn:hover {
  box-shadow: 0 22px 45px rgba(245, 158, 11, 0.5);
}

/* responsiveness start */
@media (min-width: 1400px) {
  .aboutimpact-section {
    padding: 45px 0;
  }

  .aboutimpact-title {
    font-size: 32px;
  }

  .aboutimpact-overlay {
    width: 220px;
    bottom: 60px;
    right: 25px;
  }

  .aboutimpact-overlay h4 {
    font-size: 36px;
  }

  .aboutimpact-overlay p {
    font-size: 22px;
  }

  .aboutimpact-item p {
    font-size: 18px;
    line-height: 1.7;
  }
}

@media (max-width: 1024px) {
  .aboutimpact-title {
    font-size: 28px;
  }

  .aboutimpact-overlay {
    width: 193px;
  }
  .aboutimpact-overlay {
    position: absolute;
    bottom: 34px;
    right: 7px;
  }

  .aboutimpact-overlay h4 {
    font-size: 32px;
  }

  .aboutimpact-overlay p {
    font-size: 20px;
  }

  .aboutcontact-box1 {
    padding: 10px 18px;
  }
}

@media (max-width: 992px) {
  .aboutimpact-section {
    padding: 30px 0;
  }

  .aboutimpact-title {
    font-size: 26px;
  }

  .aboutimpact-overlay {
    width: 190px;
    bottom: 72px;
    right: 50px;
  }

  .aboutimpact-overlay h4 {
    font-size: 30px;
  }

  .aboutimpact-overlay p {
    font-size: 18px;
  }

  .aboutimpact-item p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .aboutimpact-section {
    padding: 26px 0;
  }

  .aboutimpact-title {
    font-size: 34px;
  }

  .aboutimpact-overlay {
    width: 214px;
  }

  .aboutimpact-overlay h4 {
    font-size: 35px;
  }

  .aboutimpact-overlay p {
    font-size: 22px;
  }

  .aboutimpact-item p {
    font-size: 24px;
  }

  .aboutcontact-wrap {
    gap: 14px;
  }
}
@media (max-width: 576px) {
  .aboutimpact-section {
    padding: 22px 0;
  }

  .aboutimpact-tag {
    font-size: 15px;
  }

  .aboutimpact-title {
    font-size: 22px;
  }

  /* Image & overlay */
  .aboutimpact-image-wrapper {
    border-radius: 14px;
  }

  .aboutimpact-overlay {
    bottom: 35px;
    right: 30px;
    /*bottom: 29px;*/
    /*right: 26px;*/
    width: 118px;
  }

  .aboutimpact-overlay h4 {
    font-size: 30px;
  }

  .aboutimpact-overlay p {
    font-size: 12px;
  }

  .aboutoverlay-link {
    font-size: 13px;
  }

  /* List */
  .aboutimpact-list {
    padding-left: 0;
    margin-top: 20px;
  }

  .aboutimpact-item {
    gap: 12px;
  }

  .aboutimpact-item i {
    font-size: 18px;
  }

  .aboutimpact-item p {
    font-size: 15px;
  }

  /* CTA buttons */
  .aboutcontact-box1 {
    padding: 8px 16px;
    gap: 10px;
  }

  .aboutcontact-box1 i {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .aboutcontact-box1 small {
    font-size: 13px;
  }

  .aboutcontact-box1 strong {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .aboutimpact-section {
    padding: 22px 0;
  }

  .aboutimpact-tag {
    font-size: 15px;
  }

  .aboutimpact-title {
    font-size: 22px;
  }

  .aboutimpact-image-wrapper {
    border-radius: 14px;
  }

  .aboutimpact-overlay {
    bottom: 16px !important;
    right: -3px !important;
    width: 118px;
  }

  .aboutimpact-overlay h4 {
    font-size: 20px;
  }

  .aboutimpact-overlay p {
    font-size: 11px;
  }
}

/* CSR Partners Section */
.partners-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  overflow: hidden;
}

/* Header */
/* .partners-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
} */

.partners-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ===========================
   Slider Wrapper
=========================== */
.partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

/* Infinite Track */
.partners-track {
  display: flex;
  width: calc(200%);
  animation: scroll 35s linear infinite;
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* ===========================
   Partner Logo Card
=========================== */
.partner-logo {
  min-width: 260px;
  height: 150px;
  margin: 0 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient glow */
.partner-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Logo Image */
.partner-logo img {
  filter: grayscale(0%);
  max-width: 160px;
  max-height: 90px;
  opacity: 0.95;
  transition: all 0.45s ease;
  z-index: 1;
}

/* ===========================
   Hover Effects
=========================== */
.partner-logo:hover {
  transform: translateY(-12px) scale(1.04);
}

.partner-logo:hover::before {
  opacity: 1;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ===========================
   Infinite Animation
=========================== */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 992px) {
  .partner-logo {
    min-width: 260px;
    height: 135px;
  }

  .partner-logo img {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .partners-title {
    font-size: 2.1rem;
  }

  .partner-logo {
    min-width: 190px;
    height: 120px;
    margin: 0 16px;
  }

  .partner-logo img {
    max-width: 120px;
  }
}

.about-section {
  padding: 30px 0;
}

.about-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-card i {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 20px;
}

.about-card:hover {
  transform: translateY(-10px);
}

/* ===========================
OUR STORY SECTION START
=========================== */
section {
  padding: 20px 0;
}

.section-tag {
  display: inline-block;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.story-section {
  background: #ffffff;
}

.story-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  text-align: justify;
}

/* Highlight Card */
.story-card {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgb(15 118 110 / 27%);
  transition: all 0.4s ease;
  text-align: justify;
}

.story-card i {
  font-size: 44px;
  margin-bottom: 18px;
}

.story-card:hover {
  transform: translateY(-10px);
}

@media (min-width: 1400px) {
  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .story-text {
    font-size: 1.1rem;
    line-height: 1.75;
  }

  .story-card {
    padding: 26px 32px;
    border-radius: 26px;
  }

  .story-card i {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  section {
    padding: 26px 0;
  }

  .section-title {
    font-size: 33px;
  }

  .story-text {
    font-size: 1.05rem;
  }

  .story-card {
    padding: 20px 26px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 22px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .story-text {
    font-size: 1.02rem;
  }

  .story-card {
    padding: 18px 24px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 18px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .story-text {
    font-size: 1rem;
  }

  .story-card {
    padding: 16px 22px;
  }
}
@media (max-width: 576px) {
  section {
    padding: 16px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .story-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .story-card {
    padding: 14px 18px;
    border-radius: 16px;
    margin-top: 15px;
  }

  .story-card i {
    font-size: 32px;
    margin-bottom: 12px;
  }
}

/* ===========================
   Founder Section
=========================== */
.founder-section {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.founder-img {
  width: 375px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
}

.founder-name {
  margin-top: 20px;
  font-weight: 700;
  color: var(--text-color);
}

.founder-role {
  color: var(--text-color);
  font-size: 15px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.1rem;
  }

  .founder-img {
    width: 220px;
    height: 220px;
  }
}

/* Our Story css start */
.story-highlight {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.story-highlight i {
  font-size: 40px;
  color: #2563eb;
}

/* Vision mission Values Section */
.value-card {
  display: flex;
  flex-direction: column;
}

.values-section {
  padding: 30px 0;
}

/* Title */
.values-title {
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
}

/* Card Base */
.modern-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 25px 10px;
  text-align: center;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
  border: 1px dashed var(--dark-color);
}

/* Hover Overlay */
.modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* Icon */
.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e6fffa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.45s ease;
  position: relative;
  z-index: 1;
}

.icon-wrap i {
  font-size: 32px;
  color: #0f766e;
  transition: all 0.45s ease;
}

/* Text */
.modern-card h4,
.modern-card p {
  position: relative;
  z-index: 1;
  transition: color 0.45s ease;
}

.modern-card p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

/* ================================
   Hover Effects
================================ */
.modern-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(15, 118, 110, 0.35);
}

.modern-card:hover::before {
  opacity: 1;
}

.modern-card:hover h4,
.modern-card:hover p {
  color: #ffffff;
}

.modern-card:hover .icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg) scale(1.1);
}

.modern-card:hover .icon-wrap i {
  color: #ffffff;
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
  .values-title {
    font-size: 2rem;
  }

  .modern-card {
    padding: 38px 24px;
  }
}

/* Certificates */
.certificate-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}

/* HEADINGS */
.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0px 0;
  color: var(--dark-color);
}

.section-subtitle {
  color: #6b7280;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* CERTIFICATE CARD */
.certificate-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  width: 100%;
}

/* IMAGE */
.certificate-card img {
  max-width: 100%;
  max-height: 265px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* HOVER EFFECT */
.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.certificate-card:hover img {
  transform: scale(1.05);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 575px) {
  .certificate-section {
    padding: 40px 0;
  }

  .certificate-card {
    padding: 14px;
  }

  .certificate-card img {
    max-height: 265px;
  }
}

/* Our Team section css start */

.team-section {
  padding: 30px 0;
}

/* Section title */
.team-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-color);
}

/* =====================
   Team Card (COMPACT)
===================== */

.team-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid ;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card h5 {
  margin-top: 14px;
  font-size: 1.2rem;
  font-weight: 700;
}

.team-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #64748b;
}

/* =====================
   Image (Smaller)
===================== */
.team-img {
  position: relative;
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  object-fit: cover;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* =====================
   Hover (Subtle)
===================== */
.team-card:hover {
  transform: translateY(-8px); /* reduced lift */
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .team-title {
    font-size: 1.9rem;
  }

  .team-img {
    width: 115px;
    height: 115px;
  }
}

/* ===============================
   Volunteer Form Section start
=============================== */
.volunteer-form-section {
  padding: 30px 0;
  background: #ffffff;
}

/* Heading */
.form-heading {
  color: var(--dark-color);
  font-weight: 700;
}

/* Form Box */
.form-wrapper {
  border: 1.5px solid #000;
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 10px;
}

/* Form Section Titles */
.form-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 8px;
}

/* Labels */
label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

label span {
  color: red;
}

/* Inputs */
.form-control {
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

/* Permanent Address specific styling */
#address {
  min-height: 80px;
  resize: vertical;
}

/* .form-control:focus {
  border-color: gray;
  box-shadow: 0 0 0 0.15rem rgba(20, 19, 19, 0.25);
} */

/* Gender */
.gender-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.gender-group label {
  font-weight: 500;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* volunteeer page Responsive */
/* @media (max-width: 768px) {
  .form-wrapper {
    padding: 25px;
  }

  .gender-group {
    flex-direction: column;
    gap: 8px;
  }
} */

@media (min-width: 1400px) {
  .volunteer-form-section {
    padding: 50px 0;
  }

  .form-wrapper {
    padding: 45px;
    border-radius: 32px;
  }

  .form-heading {
    font-size: 32px;
  }

  .form-control {
    font-size: 1rem;
    padding: 10px 14px;
  }

  .volunteer-form-section .submit-btn {
    padding: 16px 44px;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .form-wrapper {
    padding: 36px;
  }

  .form-heading {
    font-size: 28px;
  }

  .volunteer-form-section .submit-btn {
    padding: 15px 38px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .volunteer-form-section {
    padding: 35px 0;
  }

  .form-wrapper {
    padding: 30px;
    border-radius: 24px;
  }

  .form-heading {
    font-size: 26px;
  }

  .form-control {
    font-size: 0.9rem;
  }

  .volunteer-form-section .submit-btn {
    padding: 14px 36px;
  }
}

@media (max-width: 768px) {
  .volunteer-form-section {
    padding: 30px 0;
  }

  .form-wrapper {
    padding: 25px;
  }

  .gender-group {
    flex-direction: column;
    gap: 10px;
  }

  .volunteer-form-section .d-flex.justify-content-between {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
  }

  .volunteer-form-section .submit-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .volunteer-form-section {
    padding: 25px 0;
  }

  .form-wrapper {
    padding: 20px;
    border-radius: 20px;
  }

  .form-heading {
    font-size: 22px;
    text-align: center;
  }

  label {
    font-size: 0.9rem;
  }

  .form-control {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .gender-group {
    gap: 6px;
  }

  .form-actions {
    gap: 10px;
  }

  .recaptcha-wrapper {
    max-width: 60%;
  }

  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.72);
    transform-origin: left center;
  }

  .form-actions .submit-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .volunteer-form-section .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .volunteer-form-section .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.75);
    transform-origin: center center;
  }
}

/* Donate Page css start */

/* Donate Content*/
.donate-content {
  padding: 40px 0;
  padding-bottom: 15px;
  background: #f8fafc;
}

.donate-content .col-lg-6 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */
.donate-card1 {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed var(--dark-color);
}

/* Hover */
.donate-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* Headings */
.donate-card1 h3 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
  position: relative;
}

.donate-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed var(--dark-color) !important;
}

/* Hover */
.donate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* Headings */
.donate-card h3 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
  text-align: center;
  position: relative;
}

/* Amount Buttons */
.amount-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.amount-btn {
  border: 1px solid var(--dark-color);
  background: #ffffff;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--dark-color);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.35);
}

/* Custom Amount */
.custom-amount {
  margin-bottom: 18px;
  border-radius: 12px;
  padding: 12px;
}

/* Donate Button */
.donate-btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  transition: all 0.35s ease;
  cursor: pointer;
}

.donate-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.45);
}

/* Appeal Text */
.donate-card p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
}

/* Bank Details */
.bank-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bank-details li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-color);
}

.bank-details strong {
  color: #0f172a;
}

/* COMBINED BANK + UPI STYLE */

.upi-box {
  text-align: center;
  border-left: 1px dashed #1c6e5eb0;
  padding-left: 20px;
}

.upi-box h4 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-color);
}

.upi-id {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.upi-box img {
  max-width: 170px;
  border-radius: 12px;
  padding: 10px;
  border: 1px dashed #1c6e5eb0;
}

/* Legacy support */
.upi-card {
  text-align: center;
}

.upi-card img {
  max-width: 170px;
  margin: 15px auto 0;
  border-radius: 12px;
  border: 1px dashed #14b8a6;
  padding: 10px;
}
.donate-note {
  background: #f0fdfa66;
  border: 1px dashed rgba(20, 184, 166, 0.4);
}

@media (min-width: 992px) {
  .donate-top {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .donate-content {
    padding: 50px 0;
  }

  .donate-card {
    padding: 22px;
  }

  .upi-box {
    border-left: none;
    border-top: 1px dashed rgba(20, 184, 166, 0.4);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
  }
}

.donate-card p,
.donate-card1 p,
.modern-info p {
  text-align: justify;
          text-align: center;
}

/* Section background */
.donate-info {
  padding: 30px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Card */
.modern-info {
  position: relative;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  border: 1px dashed var(--dark-color);
}

/* Gradient accent bar */
.modern-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* Icon */
.modern-info i {
  font-size: 34px;
  color: #0f766e;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Title */
.info-card2 {
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  color: var(--dark-color);
}

/* Text */
.modern-info p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* ======================
   Hover Effects
====================== */
.modern-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(15, 118, 110, 0.35);
}

.modern-info:hover::before {
  opacity: 1;
}

.modern-info:hover i {
  color: #ffffff;
  transform: rotate(10deg) scale(1.1);
}

.modern-info:hover .info-card2,
.modern-info:hover p {
  color: #ffffff;
}

/*  Responsive */
@media (min-width: 1400px) {
  .donate-content {
    padding: 60px 0 40px;
  }

  .donate-card1,
  .donate-card {
    padding: 34px;
  }

  .donate-card p {
    font-size: 19px;
    line-height: 1.75;
  }

  .modern-info {
    padding: 40px;
  }
}
@media (max-width: 1200px) {
  .donate-card1,
  .donate-card {
    padding: 28px;
  }

  .donate-card p {
    font-size: 18px;
  }

  .modern-info {
    padding: 34px;
  }
}
@media (max-width: 992px) {
  .donate-content .col-lg-6 {
    gap: 22px;
  }

  .donate-card1,
  .donate-card {
    padding: 26px;
  }

  .donate-card p {
    font-size: 17px;
  }

  .upi-box {
    padding-left: 0;
    text-align: center;
  }

  .modern-info {
    padding: 30px;
  }

  .modern-info p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .donate-content {
    padding: 45px 0 30px;
  }

  .donate-card1,
  .donate-card {
    padding: 24px;
  }

  .donate-card p {
    font-size: 16px;
    text-align: center;
  }

  .upi-box {
    border-left: none;
    border-top: 1px dashed rgba(20, 184, 166, 0.4);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .upi-box img {
    margin: 0 auto;
  }

  .modern-info {
    padding: 26px;
  }
}

@media (max-width: 576px) {
  .donate-content {
    padding: 35px 0 20px;
  }

  .donate-content .col-lg-6 {
    gap: 18px;
  }

  .donate-card1,
  .donate-card {
    padding: 20px;
    border-radius: 14px;
  }

  .donate-card h3,
  .donate-card1 h3 {
    font-size: 20px;
    text-align: center;
  }

  .donate-card p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
  }

  .amount-options {
    justify-content: center;
    gap: 10px;
  }

  .amount-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .donate-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  .upi-box img {
    max-width: 140px;
  }

  .modern-info {
    padding: 22px;
  }

  .modern-info p {
    font-size: 15px;
  }
}

/* Gallary page css start */

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: none;
  background: #f2f2f2;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid gray;
}

.filter-btn.active,
.filter-btn:hover {
  background: #198754;
  color: #fff;
}

/* MASONRY */
.masonry-grid {
  column-count: 3;
  column-gap: 18px;
}

/* ITEM */
.masonry-item {
  position: relative;
  margin-bottom: 18px;
  break-inside: avoid;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

/* OVERLAY */
.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ICON */
.masonry-item .overlay i {
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
/* HOVER EFFECT */
.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.masonry-item:hover .overlay i {
  transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox.show {
  display: flex;
  animation: fadeZoom 0.35s ease;
}

.lightbox-img {
  max-width: 85%;
  max-height: 70vh;
  border-radius: 18px;
}

/* BUTTONS */
.lb-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.45);
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close {
  top: 20px;
  right: 25px;
}
.prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

/* THUMBNAILS */
.lightbox-thumbs {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 90%;
}

.lightbox-thumbs img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.5;
  cursor: pointer;
}

.lightbox-thumbs img.active {
  opacity: 1;
  outline: 2px solid #198754;
}

/* ANIMATION */
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }

  .masonry-item .overlay i {
    font-size: 22px;
    width: 46px;
    height: 46px;
  }

  .lb-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lb-btn.prev {
    left: 16px;
  }

  .lb-btn.next {
    right: 16px;
  }

  .lb-btn.close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
  .lightbox-img {
    max-width: 95%;
  }

  .masonry-item .overlay i {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }

  .lb-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .lb-btn.prev {
    left: 10px;
  }

  .lb-btn.next {
    right: 10px;
  }

  .lb-btn.close {
    top: 12px;
    right: 12px;
  }
}

/* event/program page css start */

.sec-padding {
  padding: 30px 0;
}

/* CARD */
.event-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px dashed var(--dark-color);
  height: 100%;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.event-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

.event-content {
  padding: 0 0 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  text-align: justify;
}
/* CONTENT */
.event-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-content h3 a {
  color: #198754;
  text-decoration: none;
  font-weight: 600 !important;
}

/* META */
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.event-meta i {
  color: var(--primary-color);
}

/* TEXT */
.event-content p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 10px;
  flex-grow: 1;
  text-align: justify;
}

/* FOOTER */
.event-footer {
  margin-top: auto;
  padding-top: 5px;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.event-link:hover {
  color: #e59400;
  transform: translateX(5px);
}

/* PAGINATION */
/* Pagination container */
.event-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

/* Page numbers & arrows */
.event-pagination a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f7e5e5;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.event-pagination a:hover {
  /*background: rgba(246, 164, 0, 0.15);*/
  color: #f6a400;
}

/* ⭐ ACTIVE PAGE */
.event-pagination a.active {
  background: linear-gradient(135deg, #f6a400, #ff9800);
  color: #fff;
  box-shadow: 0 10px 25px rgba(246, 164, 0, 0.45);
  transform: translateY(-2px);
}

/* Arrow buttons */
.event-pagination .prev,
.event-pagination .next {
  background: #ffffff0a;
  /*border: 1px solid #eee;*/
  padding-top: 45px;
}

/* .event-pagination .prev:hover,
.event-pagination .next:hover {
  background: #f6a400;
  color: #ffffff;
} */

/* Disabled arrow (optional future use) */
.event-pagination a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

/* RESPONSIVE */
/* @media (max-width: 768px) {
  .event-card {
    padding: 15px;
  }

  .event-thumb img {
    height: 200px;
  }

  .event-content {
    padding: 15px 0 0 0;
    text-align: center;
    min-height: auto;
  }

  .event-footer {
    margin-top: 15px;
    padding-top: 10px;
  }
} */

@media (min-width: 1400px) {
  .sec-padding {
    padding: 45px 0;
  }

  .event-card {
    padding: 26px;
    border-radius: 24px;
  }

  .event-thumb img {
    height: 260px;
  }

  .event-content {
    padding-left: 18px;
  }

  .event-content h3 {
    font-size: 22px;
  }

  .event-content p {
    font-size: 16.5px;
    line-height: 1.75;
  }

  .event-meta {
    font-size: 15px;
  }

  .event-pagination a {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .sec-padding {
    padding: 30px 0;
  }

  .event-card {
    padding: 20px;
  }

  .event-thumb img {
    height: 230px;
  }

  .event-content h3 {
    font-size: 20px;
  }

  .event-content p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .sec-padding {
    padding: 26px 0;
  }

  .event-card {
    padding: 18px;
  }

  .event-thumb img {
    height: 180px;
  }

  .event-content {
    padding-left: 12px;
  }

  .event-content h3 {
    font-size: 18px;
  }

  .event-content p {
    font-size: 15px;
  }

  .event-meta {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .event-card {
    padding: 16px;
  }

  .event-thumb img {
    height: 200px;
  }

  .event-content h3 {
    font-size: 18px;
  }

  .event-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .sec-padding {
    padding: 20px 0;
  }

  .event-card {
    padding: 14px;
    border-radius: 16px;
  }

  .event-thumb img {
    height: 180px;
    border-radius: 14px;
  }

  .event-content {
    padding: 12px 0 0;
    text-align: center;
    min-height: auto;
  }

  .event-content h3 {
    font-size: 17px;
  }

  .event-meta {
    justify-content: center;
    gap: 10px;
    font-size: 13px;
  }

  .event-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .event-link {
    font-size: 14px;
  }

  .event-pagination {
    gap: 8px;
    margin-top: 30px;
  }

  .event-pagination a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Contact Form reCAPTCHA Styling */
.recaptcha-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.recaptcha-wrapper .g-recaptcha {
  transform: scale(0.9);
  transform-origin: left center;
}

/* Scroll to Top Button with Progress */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1; /* ✅ keeps perfect circle */
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* ✅ prevents cut */
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Progress Circle */
.scroll-to-top svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  aspect-ratio: 1 / 1; /* ✅ key fix */
}

/* Ensure proper circle scaling */
.scroll-to-top svg circle {
  cx: 50%;
  cy: 50%;
  r: 45%;
}

/* Background Circle */
.scroll-to-top .progress-bg {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 6;
}

/* Progress Fill */
.scroll-to-top .progress-fill {
  fill: none;
  stroke: #f6a400;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}

/* Arrow Icon */
.scroll-to-top .arrow {
  position: relative;
  z-index: 2;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.scroll-to-top:hover .arrow {
  color: #f6a400;
}

.progress-fill {
  stroke-linecap: butt; 
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top .arrow {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top .arrow {
    font-size: 14px;
  }
}

/* Ensure submit button and reCAPTCHA have consistent padding */
.contact-form-box .d-flex.justify-content-between {
  padding: 10px 0;
}

.submit-btn {
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 55px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 5px;
}

.submit-btn:hover {
  background: #e59400;
  transform: translateY(-2px);
}

/* Mobile responsive for reCAPTCHA */
@media (max-width: 768px) {
  .contact-form-box .d-flex.justify-content-between {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .recaptcha-wrapper {
    justify-content: center;
  }

  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.8);
    transform-origin: center center;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* Volunteer Form Specific Styling */
.volunteer-form-section .d-flex.justify-content-between {
  padding: 20px 0;
  gap: 30px;
}

.volunteer-form-section .recaptcha-wrapper {
  display: flex;
  align-items: center;
}

.volunteer-form-section .recaptcha-wrapper .g-recaptcha {
  transform: scale(0.95);
  transform-origin: left center;
}

.volunteer-form-section .submit-btn {
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 55px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(246, 164, 0, 0.3);
}

.volunteer-form-section .submit-btn:hover {
  background: #e59400;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 164, 0, 0.4);
}

/* Mobile responsive for volunteer form */
/* @media (max-width: 768px) {
  .volunteer-form-section .d-flex.justify-content-between {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    padding: 15px 0;
  }

  .volunteer-form-section .recaptcha-wrapper {
    justify-content: center;
  }

  .volunteer-form-section .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center center;
  }

  .volunteer-form-section .submit-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .volunteer-form-section .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.75);
    transform-origin: center center;
  }
} */
