:root {
  --secondary-orage: #ff5528;
  --primary-green: #122f2a;
  --bg-main-color: #f5f9fa;
  --primary-yellow: #fbe122;
  --primary-purple: #8139e7;

  /* Consistent font family */
  --font-primary: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  
  /* Responsive font sizes using clamp(min, preferred, max) - IMPROVED READABILITY */
  --fs-h1: clamp(24px, 4.5vw, 42px); /* Mobile: 24px, Desktop: 42px - Hero only */
  --fs-section-title: clamp(26px, 4vw, 36px); /* Mobile: 26px, Desktop: 36px - All section headings */
  --fs-h2: clamp(22px, 3.5vw, 32px); /* Mobile: 22px, Desktop: 32px */
  --fs-h3: clamp(20px, 3vw, 24px); /* Mobile: 20px, Desktop: 24px */
  --fs-h4: clamp(18px, 2.5vw, 20px); /* Mobile: 18px, Desktop: 20px */
  --fs-body: clamp(15px, 2vw, 17px); /* Mobile: 15px, Desktop: 17px - INCREASED */
  --fs-small: clamp(13px, 1.8vw, 15px); /* Mobile: 13px, Desktop: 15px */
  
  /* Line heights */
  --lh-heading: 1.3;
  --lh-body: 1.6;
}

/* Reset and box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: var(--bg-main-color);
  font-size: 100%; /* 16px base */
  font-family: var(--font-primary);
  line-height: var(--lh-body);
}

/* Global Typography - Applied to ALL pages */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--primary-green);
}

h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
}

p, li, a, span, div {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #555;
}

a {
  text-decoration: none;
  color: inherit;
}

/* List styling */
ul, ol {
  font-family: var(--font-primary);
}

/* Button and form elements */
button, input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
}

small {
  font-size: var(--fs-small);
}

header {
  height: 00px;
}
nav {
  height: 100%;
}
.below_top_section_navbar {
  display: flex;
  position: relative;
  height: 100%;
  margin-top: 70px;
  width: 86%;
  margin: 70px auto;
}
.section {
  max-width: 1400px;
  margin: 0 auto;
}
.sidebar {
  position: fixed;
  left: -300px; /* hidden initially */
  top: 0;
  width: 280px;
  background: #121212;
  height: 100vh;
  z-index: 999;
  transition: left 0.3s ease;
  padding: 20px;
  color: #fff;
}

.sidebar.active {
  left: 0;
}
.polygon_navbar_design {
  z-index: 2;
  position: absolute;
  left: 0;
  top: -50px;
  width: 165px;
  height: calc(50px + 100%);
  background-color: var(--careox-base, var(--secondary-orage));
  content: "";
  clip-path: polygon(0 0, 100% 0, 42% 100%, 0% 100%);
}
.green_moricon_section {
  position: absolute;
  left: 88px;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--careox-black, var(--primary-green));
  content: "";
  z-index: -1;
  clip-path: polygon(6.7% 0, 100% 0, 100% 100%, 0% 100%);
}
.main_content_of_navbar {
  z-index: 3;
  width: 100%;
}
.navbar_content {
  width: 100%;
  position: relative;
  right: 0px;
  background-color: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.content_center {
  position: absolute;
  background-color: var(--primary-green);
  padding: 10px 15px;
  border-radius: 75px;
  display: flex;
  width: 99%;
  justify-content: space-between;
  margin: 10px 10px;
  align-items: center;
}

/* Desktop logo sizing */
.content_center img {
  height: 75px; /* Increased desktop logo size */
}

.top_section_icon_content {
  padding: 15px 30px;
}

.contact_info {
  display: flex;
  gap: 30px;
}

.info_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info_content {
  display: flex;
  flex-direction: column;
}

.info_content span:first-child {
  color: #333;
  font-weight: 600;
}

.info_content span:last-child {
  color: #666;
  font-size: 14px;
}

.phone-icon,
.email-icon,
.location-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-orage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  mask: url(../image/iconbg.svg);
}

.icon-item.purple {
  background-color: var(--primary-purple);
}
.icon-item.yellow {
  background-color: var(--primary-yellow);
}
.icon-item.orange {
  background-color: var(--secondary-orage);
}
.icon-item i {
  color: white;
  font-size: 20px;
}
.top_section_icon_content {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  font-family: sans-serif;
  font-size: 14px;
  background-color: #f5f9fa;
  padding: 10px 20px;
  margin-top: 15px; /* Reduced from 40px */
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon {
  width: 35px;
  height: 35px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.facebook {
  background-color: #f1453d;
}

.twitter {
  background-color: #f9a51a;
}

.vimeo {
  background-color: #6f4be4;
}

.pinterest {
  background-color: #4cc9b2;
}
.polygon_navbar {
  position: absolute;
  height: 100%;
  width: 165px;
  background: #f5f9fa;
}
.action-btn {
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.action-btn a {
  min-width: auto;
  padding: 12px 24px;
  background-color: var(--secondary-orage);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.action-btn img {
  width: 45px;
  height: 45px;
  margin-right: 5px;
}

/* Anchor with icon */
.action-btn a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.action-btn i{
  font-size: 25px;
  color: white;
  display: none;
}

/* Hover effect */
.action-btn img {
  animation: shrinkAnim 0.5s ease-in-out infinite;
  transform-origin: center;
}
/* Animation keyframes */
@keyframes shrinkAnim {
  0% {
    transform-origin: 0px 33px;
    transform: rotate(0.33deg);
  }
  25% {
    transform-origin: 0px 33px;
    transform: rotate(1deg);
  }
  50% {
    transform-origin: 0px 33px;
    transform: rotate(1.95deg);
  }
  75% {
    transform-origin: 0px 33px;
    transform: rotate(-0.33deg);
  }
  100% {
    transform-origin: 0px 33px;
    transform: rotate(-1deg);
  }
}
.action_section_of_navbar {
  position: absolute;
  height: 60px;
  margin-top: 5px;
  width: 70%;
  background-color: var(--primary-green);
}
.action_section_of_navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}
/* Container styles */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f2b27;
  padding: 15px 30px;
  color: white;
  font-family: sans-serif;
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #f9a51a;
}

.nav-links li a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #f9a51a;
  margin-top: 3px;
}

/* Action section */
.action_section_of_navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.action_section_of_navbar a {
  color: white;
  position: relative;
  font-size: 18px;
  text-decoration: none;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: #555;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #f9a51a;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 50%;
}
.action_of_navbar {
  display: flex;
  gap: 10px;
}
.swiper-backface-hidden .swiper-slide{
  display: flex;
  align-items: flex-end;
}
.swiper-slide{
  display: flex;

}
.slider_one_main {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0px 0 0px 0px;
  overflow: hidden;
  width: 100%;
  margin-top: -70px;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
}

.swiper,
.swiper-slide {
  height: 100%;
  min-height: 90vh;
}

/* Individual slide background styling */
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.slide-bg-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.right_side_image_content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner_content_of_slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 85vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.left_slider_content {
  max-width: 50%;
  z-index: 2;
}

.left_slider_content .hand-icon {
  width: 60px;
  margin-bottom: 20px;
}

.left_slider_content h1 {
  font-size: var(--fs-h1);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: bold;
}

.left_slider_content .scribble {
  color: #ff5722;
  font-style: italic;
  font-family: "Caveat", cursive;
  font-size: var(--fs-h2);
  display: inline-block;
}

.left_slider_content p {
  font-size: var(--fs-body);
  color: #fff;
  margin-bottom: 30px;
  max-width: 500px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.discover-btn {
  background-color: var(--primary-yellow);
  color: var(--primary-green);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: bold;
  font-size: var(--fs-body);
  text-decoration: none;
  transition: background 0.3s ease;
}

.discover-btn:hover {
  background-color: var(--primary-yellow);
}

.play-btn1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.play-btn1 {
  position: relative;
  background: #0b2f28;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  animation: ripple-shadow 1.5s ease-out infinite;
  margin-left: 20px;
}

@keyframes ripple-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 40px rgba(0, 0, 0, 0);
  }
}

/* Right image section with masking */
.right_slider_container_image {
  max-width: 45%;
  position: relative;
}

.image_covering_slide {
  background-image: url("../image/image.png");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 651px;
  aspect-ratio: 1 / 1;
}

.masked-image {
  mask-image: url("../image/masklandingpage.svg");
  mask: url("../image/masklandingpage.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center center;
  -webkit-mask-position: center center;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.masked-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* healthcare section css */
.healthcare-section {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.vol-box {
  flex: 1;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
}

.left {
  background: linear-gradient(rgba(255, 86, 34, 0.856), rgba(255, 86, 34, 0.493)),
    url("../image/Healthcare-services.webp");
    background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.right { background: linear-gradient(rgba(11, 47, 40, 0.85), rgba(11, 47, 40, 0.664)),
    url("../image/EducationService.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.vol-content h2 {
  font-size: var(--fs-section-title);
  font-weight: bold;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  color: white; /* Ensure white text on colored backgrounds */
}

.vol-content p {
  margin-bottom: 25px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: white; /* Ensure white text on colored backgrounds */
}

.btn-left, .btn-right {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-size: var(--fs-body);
  font-weight: bold;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-left {
  background-color: var(--primary-yellow);
  color: var(--primary-green);
}

.btn-right {
  background-color: #fff;
  color: #042f2e;
}

.heart-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  background: url("../image/donation-help.png") no-repeat center center / contain;
}

@media (max-width: 768px) {
  .volunteer-section {
    flex-direction: column;
    height: auto;
  }

  .heart-icon {
    display: none;
  }
}

/* section 2  */
.hero-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* Left Side */
.hero-left {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f9d423;
  border: none;
  padding: 20px;
  border-radius: 12px;
  font-size: 24px;
  color: #052c65;
  cursor: pointer;
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.video-label p {
  font-size: 14px;
  margin: 0;
}

.video-label h3 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: bold;
}

/* Right Side */
.hero-right {
  flex: 1 1 45%;
  max-width: 600px;
}

.hero-right .tagline {
  display: block;
  font-size: var(--fs-small);
  font-weight: bold;
  color: #ff2c6f;
  margin-bottom: 10px;
}

.hero-right mark {
  background-color: var(--primary-yellow);
  padding: 2px 4px;
}

.hero-right h2 {
  font-size: var(--fs-section-title);
  color: var(--primary-green);
  margin-bottom: 20px;
}

.hero-right p {
  font-size: var(--fs-body);
  color: #555; /* Consistent with global paragraph color */
  margin-bottom: 30px;
  line-height: var(--lh-body);
}

/* Donation Grid */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.donation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-weight: bold;
  font-size: var(--fs-body);
}

.donation-item button {
  background: #f9d423;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  color: #052c65;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.donation-item button:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 60px;
  }
  .donation-grid {
    grid-template-columns: 1fr;
  }
}

/* next section  */
.services-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.services-header .subheading {
  color: #ff5a2c;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--fs-small);
  display: block;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: var(--fs-section-title);
  color: var(--primary-green);
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.services-header .highlight {
  color: #ff5a2c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
}
.sec-tittle {
  position: relative;
  z-index: 999;
}
.sec-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 20px;
    background-image: url("../image/shape1.png");
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-50%);
}
.service-card {
  border-radius: 16px;
  padding: 30px 15px;
  min-width: 100%;
  max-width: 300px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.covering_icons_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  margin: 0 auto;
  padding: 5px 5px 5px;
  /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin-bottom: 20px; */
}
.icon-box {
  margin: 0 auto 20px;
  padding: 12px;
  border-radius: 12px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  background-color: var(--helpest-base);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin: 0px auto;
}

.icon-box i {
  width: 100%;
  height: auto;
  font-size: 28px;
  color: white;
}
/* .covering_icons_box.yellow {
  background-color: rgb(255 193 7 / 40%);
}
.covering_icons_box.green {
  background-color: rgba(38 204 140 / 40%);
}
.covering_icons_box.pink {
  background-color: rgba(255 60 207 /40%);
}
.covering_icons_box.orange {
  background-color: rgba(250 75 28 / 40%);
} */
.service-card .covering_icons_box:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 10px solid #ffac00;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    border-bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.3;
}
/* Icon box color variations */
/* .icon-box.orange {
  background: #ff5a2c;
} */
/* .icon-box.yellow {
  background: #ffcf00;
}
.icon-box.green {
  background: #39d49d;
}
.icon-box.pink {
  background: #d958e6;
} */

.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  color: #0b2f28;
  font-family: var(--font-primary);
}

.service-card p {
  font-size: var(--fs-body);
  color: #555;
  line-height: var(--lh-body);
  margin-bottom: 30px;
  font-family: var(--font-primary);
}

.service-card a {
  font-weight: bold;
  text-decoration: none;
  color: #0b2f28;
  font-size: var(--fs-small);
  background-color: #fbe122;
  padding: 10px 15px;
  margin-top: 30px;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.service-card a span {
  margin-left: 5px;
  color: #0b2f28;
  rotate: 90deg ;
}

/* section 3 */
.volunteer-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.volunteer-header .subheading {
  color: #ff5a2c;
  font-weight: bold;
  font-style: italic;
  font-size: var(--fs-small);
  margin-bottom: 8px;
  display: block;
}

.volunteer-header {
  text-align: center;
}

.volunteer-header h2 {
  font-size: var(--fs-section-title);
  color: var(--primary-green);
  margin-bottom: 40px;
  font-weight: 700;
}

.volunteer-header .highlight {
  color: #ff5a2c;
}

.volunteer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: center;
}

.volunteer-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  width: 100%;
}

.volunteer-card.orange {
  border-bottom: 5px solid #fa4b1c;
}
.volunteer-card .volunteer-inside-card .card-info .share {
  color: #fff;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 1px 0px 1px ;
  font-size: 20px;
}

.card-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 25px 26px;
  overflow: hidden;
}

.card-info::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: transparent;
  transition: height 0.4s ease, background-color 0.4s ease;
  z-index: -1;
}

.card-info.blue::before {
  background-color: #009eff;
}

.card-info.orange::before {
  background-color: #fa4b1c;
}

.card-info.yellow::before {
  background-color: #ffc107;
}

.card-info.green::before {
  background-color: #26cc8c;
}

.card-info.purple::before {
  background-color: #7726eb;
}

.card-info:hover::before {
  height: 100%;
}

.card-info:hover .text h3,
.card-info:hover .text p {
  color: #fff;
  transition: color 0.3s ease 0.2s;
}

.card-info:hover .share {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transition: all 0.3s ease 0.2s;
}

.volunteer-card.orange .volunteer-inside-card .card-info .share{
  background-color: #fa4b1c;
}
.volunteer-card.yellow .volunteer-inside-card .card-info .share{
  background-color: #ffc107;
}
.volunteer-card.green .volunteer-inside-card .card-info .share{
  background-color: #26cc8c;
}
.volunteer-card.purple .volunteer-inside-card .card-info .share{
  background-color: #7726eb;
}

.volunteer-card.yellow {
  border-bottom: 5px solid #ffc107;
}
.volunteer-card.green {
  border-bottom: 5px solid #26cc8c;
}
.volunteer-card.purple {
  border-bottom: 5px solid #7726eb;
}

.volunteer-card:hover {
  transform: translateY(-5px);
}

.volunteer-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 25px 26px;
}

.card-info h3 {
  margin: 0;
  font-size: var(--fs-h4);
  color: var(--primary-green);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-info p {
  margin: 3px 0 0;
  font-size: var(--fs-body);
  color: #555;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.share {
  background: white;
  padding: 8px;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Color variations */
.card-info.blue {
  border-color: #009eff;
}
.card-info.orange {
  border-color: #ff5a2c;
}
.card-info.green {
  border-color: #0ac97d;
}
.card-info.purple {
  border-color: #6c4cff;
}

.card-info.blue .share {
  color: #009eff;
}
.card-info.orange .share {
  color: #ff5a2c;
}
.card-info.green .share {
  color: #0ac97d;
}
.card-info.purple .share {
  color: #6c4cff;
}

/* section 4 */
.donation-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.donation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.donation-left {
  margin-top: -50px;
  flex: 1 1 40%;
  position: relative;
}

.donation-image {
  width: 100%;
  max-width: 100%;
  display: block;
}

.donation-video-box {
  background: #f44336;
  padding: 60px;
  border-radius: 0 0 0px 30px;
  position: relative;
  margin-top: 0px;
  text-align: center;
}

.play-button {
  background: white;
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 20px;
  color: #f44336;
  cursor: pointer;
  animation: ripple-shadow 1.5s ease-out infinite;
}

.donation-right {
  flex: 1 1 45%;
}

.subheading {
  color: #f44336;
  font-style: italic;
  font-weight: bold;
  font-size: var(--fs-small);
}

.donation-right h2 {
  font-size: var(--fs-section-title);
  color: var(--primary-green);
  margin: 15px 0 30px;
}

.highlight {
  color: var(--primary-yellow);
  font-weight: bold;
  font-size: var(--fs-section-title);
  line-height: 1.4;
}

.form-box {
  background: #fff;
  border-radius: 20px 20px 20px 0px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 62px 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  font-size: var(--fs-h3);
  color: var(--primary-green);
}

.form-group small {
  color: #f44336;
  font-style: italic;
  font-size: var(--fs-small);
  margin-left: 5px;
}

.toggle-buttons {
  background: #f2f8fb;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  width: fit-content;
}

.toggle-buttons button {
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: var(--fs-body);
  color: var(--primary-green);
  cursor: pointer;
}

.toggle-buttons button.active {
  background: #f9a51a;
  color: #fff;
  border-radius: 30px;
}

.amount-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 12px 20px;
  width: fit-content;
  margin-bottom: 15px;
}

.dollar-icon {
  margin-right: 8px;
  color: #f9a51a;
}

.amount-input input {
  border: none;
  outline: none;
  width: 60px;
  font-size: var(--fs-body);
}

.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amount-options button {
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.checkbox-group input {
  margin-right: 10px;
}

.donate-button {
  margin-top: 25px;
  background: #f9a51a;
  color: #fff;
  font-weight: bold;
  padding: 18px 30px;
  border: none;
  border-radius: 30px;
  font-size: var(--fs-body);
  cursor: pointer;
}

.heading-content-donation-section{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.heading-content-donation-section h3{
  color: #fff; /* White text on dark/colored background for better contrast */
  font-size: var(--fs-section-title);
}

.main-content-donation-section{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin-top: 60px;
}

.donation-card{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.521);
  border-radius: 30px;
  padding: 80px 45px 70px;
  min-height: 320px;
}

.donation-card .button {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7d92f;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.donation-card .button img{
  margin-top: 3px;
  rotate: 180deg;
  width: 18px;
  height: 18px;
}

.donation-card p , .donation-card h3{
  color: white; /* White text on colored background for better contrast */
}

.donation-card h3 {
  font-size: var(--fs-h3);
}

.donation-card p {
  font-size: var(--fs-body);
}

.donate-button span {
  margin-left: 8px;
}

.donation-image {
  position: relative;
  display: block;
  margin-right: 60px;
  animation: topBottom 3s ease-in-out infinite;
}

/* news section  */
.blog-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header .sub-title {
  color: #ff5722;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--fs-small);
  margin-bottom: 10px;
}

.blog-header h2 {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
}

.blog-header .orange {
  color: #ff5722;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.blog-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #fff;
  color: #ff5722;
  font-size: var(--fs-small);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 20px;
}

.blog-content .meta {
  font-size: var(--fs-small);
  color: #888;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.blog-content .desc {
  font-size: var(--fs-body);
  color: #555;
  margin-bottom: 16px;
}

.read-more {
  font-size: var(--fs-body);
  text-decoration: none;
  font-weight: 600;
}
.read-more span {
  color: #ff5722;
}

/* testimonial section  */
.testimonial-swiper {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide {
  height: auto;
}

.testimonial-section {
  padding: 80px 0px !important;
  width: 100%;
  background: #fefefe;
  overflow: hidden;
}

.testimonial-header p.section-subtitle {
  color: #ff5722;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--fs-small);
  margin-bottom: 10px;
}

.testimonial-header h2 {
  font-size: var(--fs-section-title);
  font-weight: 700;
  color: var(--primary-green);
}

.testimonial-header h2 span {
  color: #ff5722;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 440px !important;
  width: 100%;
  min-width: 350px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  font-size: 30px;
  color: #ffb400;
  margin-bottom: 15px;
  text-align: left;
  user-select: none;
}
.user-info {
  user-select: none;
}
.testimonial-text {
  user-select: none;
  background: #fff7ed;
  border-radius: 12px;
  padding: 15px;
  font-size: var(--fs-body) !important;
  color: #555;
  margin-bottom: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  margin: 0;
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary-green);
}

.user-info p {
  margin: 0;
  font-size: var(--fs-small);
  color: #888;
}

.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.testimonial-card {
  min-width: 340px;
  flex-shrink: 0;
}

/* footer section  */
.site-footer {
  background: #042f2e;
  color: #d3d3d3;
  padding: 60px 30px 20px;
  font-family: "Arial", sans-serif;
}
.footer {
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid #2d4d4c;
  gap: 20px;
}

.newsletter-text h4 {
  font-size: var(--fs-h3);
  color: white;
}

.newsletter-text p {
  font-size: var(--fs-body);
  color: #d3d3d3; /* Consistent light gray color */
  margin-top: 4px;
}

.newsletter-form {
  display: flex;
  align-items: center;
}

.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 15px;
}

.newsletter-form button {
  background: var(--primary-yellow);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-yellow);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-top: 50px;
}

.footer-col h4 {
  color: white;
  font-size: var(--fs-h4);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: var(--fs-body);
  transition: color 0.3s;
}

.footer-col ul li a {
  color: #d3d3d3; /* Consistent light gray color - ALL LINKS */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f9a51a;
}

.footer-col ul li:hover {
  color: #f9a51a;
}

.footer-logo .logo-text {
  font-size: 26px;
}

.footer-col p {
  font-size: var(--fs-body);
  color: #d3d3d3; /* Consistent light gray color */
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col p i {
  color: var(--primary-yellow);
  margin-right: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col p strong {
  color: #d3d3d3; /* Ensure phone number has same color */
}

/* Special styling for email to keep it on one line */
.footer-col p:has(i.fa-envelope) {
  align-items: center;
}

/* Alternative for browsers that don't support :has() */
.footer-col .email-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body);
  color: #d3d3d3; /* Consistent light gray color */
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-col .email-contact span {
  color: #d3d3d3; /* Ensure email text has same color */
}

.footer-col .email-contact i {
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  text-decoration: none;
  display: inline-block;
}

.social-icons a i {
  background: #444;
  color: white;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover i {
  background: #f9a51a;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #2d4d4c;
}

.footer-bottom p {
  color: #d3d3d3 !important; /* Consistent light gray color */
  font-size: var(--fs-body);
  margin: 0;
}

@media (max-width: 1400px) {
  .inner_content_of_slider{
    max-width: 1200px;
  }
}
@media (max-width:1200px){
  .inner_content_of_slider{
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    border-radius: 8px 0px 0px 8px;
  }

  .newsletter-form button {
    width: 55px !important;
    width: 100%;
    border-radius: 0px 8px 8px 0px;
  }
  .below_top_section_navbar{
    width: 92%;
  }
  .content_center{
    margin: 0px;
  }
  .content_center img{
    height: 50px; /* Mobile logo - reasonable size */
  }
}

.testimonial-section {
  padding: 80px 20px;
  text-align: center;
  background: #fefefe;
  margin: 0 auto;
}

.testimonial-header p.section-subtitle {
  color: #ff5722;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 40px;
}

.testimonial-header h2 span {
  color: #ff5722;
}

.testimonial-swiper {
  padding-top: 20px;
  padding-bottom: 60px;
  width: 100%;
  overflow: hidden;
}

.swiper-slide.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stars {
  font-size: 20px;
  color: #ffb400;
  margin-bottom: 15px;
}

.testimonial-text {
  background: #fff7ed;
  border-radius: 12px;
  padding: 15px;
  font-size: var(--fs-body);
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
}

.user-info p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #ff5722;
  width: 44px;
  height: 44px;
  margin-top: -22px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 20px;
}

.swiper-pagination-bullet {
  background: #ff5722;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

ul{
  list-style: none;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-header h2 {
    font-size: 24px;
  }
}
/* .card-info:hover{
  background-color: var(--primary-green);
  transition: all ease 0.5s;
  color: #fff;
  cursor: pointer;
} */



.sidebar {
  position: fixed;
  left: -300px; /* hidden initially */
  top: 0;
  width: 280px;
  background: #121212;
  height: 100vh;
  z-index: 999;
  transition: left 0.3s ease;
  padding: 20px;
  color: #fff;
}

.sidebar.active {
  left: 0;
}

.sidebar .logo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar .logo-content img {
  height: 50px;
  width: 60%;
}

.sidebar .close-icon {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.sidebar-links {
  margin-top: 50px;
  list-style: none;
  padding-left: 0;
}

.sidebar-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.582);
  padding-bottom: 12px;
    margin-bottom: 12px;
}

.sidebar-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Trigger icon */
.action-btn i {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* mobile responsive code  */
@media (max-width: 1208px) {
  .action-btn i{
    display: block !important;
    z-index: 1000; /* Ensure it's on top */
  }
  .action-btn img , .action-btn a{
    display: none;
  }
  .action_section_of_navbar{
    display: none;
  }
  .sidebar{
    /* position: relative; */
    /* left: 0px; */
    .sidebar{
    /* position: relative; */
    /* left: 0px; */
    width: 280px;
    background: #121212;
    height: 100vh;
    z-index: 1001; /* Ensure it's on top */
    top: 0px;
    /* margin-top: -160px; */
  }
  }
  .sidebar .logo-content img{
    height: 50px;
    width: 70%;
    margin-top: 30px;
  }
  .action-btn i {
    display: block !important;
  }
  .action-btn img,
  .action-btn a {
    display: none;
  }
  .action_section_of_navbar {
    display: none;
  }
}

@media (max-width:768px) {
  .healthcare-section{
    flex-direction: column;
  }
}

.sidebar-contact {
  margin-top: 30px;
  color: #fff;
  padding: 0 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}

.contact-item span {
  font-size: 13px;
  line-height: 1.5;
  color: #d3d3d3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
  max-width: calc(100% - 44px);
}

.icon-circle {
  width: 38px;
  height: 38px;
  background-color: #ff5528;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 15px;
}

.icon-circle.orange {
  background-color: #ff5528;
}

.sidebar-social {
  margin-top: 20px;
}

.sidebar-social a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  text-decoration: none;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px; /* hidden by default */
  width: 280px;
  height: 100vh;
  margin-top: -0px !important;
  background: #121212;
  z-index: 999;
  transition: left 0.3s ease;
  padding: 20px;
  color: #fff;
}

.sidebar.active {
  left: 0;
}

.sidebar.active main{

  z-index: -1;
  pointer-events: none; /* Makes the element unclickable */
  user-select: none; /* Prevents text selection */
}

@media (max-width:900px){
  .donation-container{
    flex-direction: column;
    margin: 0 5%;
    max-width: 550px;
  }
  .donation-right h2 {
    font-size: 28px;
    text-align: center;
}
.donation-video-box {
  border-radius:15px;
}
  span.subheading{
    margin-top: 20px;
    display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}
}

@media (max-width:1300px){
  .right_slider_container_image {
    max-width: 51%;
  }
}

@media (max-width:1000px){
  .inner_content_of_slider {
    max-width: 800px;
    flex-direction: column;
  }
  .right_slider_container_image {
    max-width: 100%;
    margin-top: 100px;
  }
  .left_slider_content {
    max-width: 90%;
    z-index: 2;
  }
  .left_slider_content h1 , .left_slider_content .scribble{
    font-size: 35px;
  }
  .right_side_image_content{
    height: 100%;
    width: 100%;
    margin-top: 30px;
    display: flex;
        align-items: center;
        justify-content: center;
  }
  .right_side_image_content img{
    height: 100%;
  }

}

@media (max-width:500px){
  .donation-container{
    margin: 0px;
  }
  .donation-card{
    min-width: 280px !important;
    max-width: 280px !important;
    flex-shrink: 0;
    margin-right: 18px;
    padding: 70px 35px 60px !important;
    position: relative;
    border-radius: 25px;
  }
  
  .donation-card .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    padding: 0;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7d92f;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .donation-card .button img {
    width: 20px;
    height: 20px;
  }
  
  .main-content-donation-section{
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    min-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 15px 60px 15px !important;
    gap: 0 !important;
    grid-template-columns: none !important;
  }
  
  .donation-card {
    scroll-snap-align: start;
  }
  
  .donation-card:last-child {
    margin-right: 15px;
  }

  .testimonial-card{
    min-width: 240px !important;
  }
  
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -10px);
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -10px);
    right: auto;
}

/* Mobile responsive improvements */
/* Hide discover more button on mobile */
.buttons .discover-btn {
  display: none !important;
}

/* Banner text adjustments for mobile - readable size and properly positioned */
.left_slider_content h1 {
  font-size: 22px !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}

.left_slider_content p {
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin-bottom: 12px !important;
  max-width: 90% !important;
}

/* Adjust slider content positioning for mobile - prevent image overlap */
.inner_content_of_slider {
  padding: 15px 10px !important;
  display: flex;
  align-items: flex-start !important;
  min-height: 300px;
}

.left_slider_content {
  max-width: 100% !important;
  padding: 10px !important;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-top: 20px;
}

.buttons {
  margin-top: 8px;
}

.play-btn1 {
  width: 35px !important;
  height: 35px !important;
  font-size: 12px !important;
}

/* Improved scroll buttons positioning and design */
.donation-section {
  position: relative;
  padding-bottom: 100px !important;
}

.scroll-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.scroll-btn {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffd700 0%, var(--primary-yellow) 100%);
}

.scroll-btn:active {
  transform: scale(0.98);
}

.scroll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #ccc;
  border-color: #999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.scroll-btn i {
  font-weight: bold;
  font-size: 18px;
}
}

/* Hide scroll buttons on desktop */
@media (min-width: 501px) {
  .scroll-buttons {
    display: none;
  }
  .hero-right p{
    margin-bottom: 0px;
  }
}
.services-section::after{
  background-color: #FDF8EA;
}
[data-opacity="6"]:before
 {
    opacity: 0.6;
}

[data-overlay=gray]:before {
    background-color: #FDF8EA;
}
[data-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}
.support-sec{
  background-image: url("../image/donation.jpg");
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}
.support-sec:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #003B49;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.9;
    z-index: -1;
}
.content-for-service{
    background: #fff;
    box-shadow: rgba(12, 12, 13, 0.1) 0px 4px 4px -1px, rgba(12, 12, 13, 0.05) 0px 4px 4px -1px;
    padding: 30px 20px;
    border-radius: 30px;
}
.covering_icons_box{
  background-color: #fff;
    display: inline-block;
    width: 180px;
    height: 90px;
    padding: 20px;
    line-height: 100px;
    text-align: center;
    position: relative;
    border-radius: 50% 50% 0px 0px / 100% 100% 0px 0px;
    transition: 0.4s;
}


.stagger-text span {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.stagger-text span.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Override all inline font-size styles with responsive values */
[style*="font-size"] h1,
[style*="font-size"] h2,
[style*="font-size"] h3,
[style*="font-size"] h4,
[style*="font-size"] h5,
[style*="font-size"] h6,
h1[style*="font-size"],
h2[style*="font-size"],
h3[style*="font-size"],
h4[style*="font-size"],
h5[style*="font-size"],
h6[style*="font-size"] {
  font-size: var(--fs-h2) !important;
}

p[style*="font-size"],
span[style*="font-size"],
div[style*="font-size"] {
  font-size: var(--fs-body) !important;
}

/* Specific mobile overrides for sections with inline styles */
@media (max-width: 768px) {
  [style*="font-size"] h1,
  [style*="font-size"] h2,
  [style*="font-size"] h3,
  h1[style*="font-size"],
  h2[style*="font-size"],
  h3[style*="font-size"] {
    font-size: clamp(18px, 3.5vw, 24px) !important;
  }
  
  [style*="font-size"] p,
  [style*="font-size"] span,
  p[style*="font-size"],
  span[style*="font-size"] {
    font-size: clamp(12px, 2vw, 14px) !important;
  }
}

/* Reduce header spacing on mobile */
@media (max-width: 768px) {
  .below_top_section_navbar {
    margin-top: 50px;
    margin-bottom: 10px;
  }
  
  .top_section_icon_content {
    margin-top: 5px;
    padding: 8px 15px;
  }
}
