
@import url('mobile-menu.css');


@import url('chatbot.css');


@font-face {
  font-family: 'Railway';
  src:url('/assets/fonts/Raleway-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/BebasNeue-Bold.otf') format('opentype'),
       url('/assets/fonts/BebasNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



:root {
  --primary-color: #8cc63f;
  --secondary-color: #f7941d;
  --dark-gray: #333333;
  --light-gray: #f2f2f2;
  --white: #ffffff;
  --black: #000000;
--font-heading: 'Bebas Neue', sans-serif;
   --font-primary: 'Railway', Railway, sans-serif;
}

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

body, p, li, span, a, input, textarea, button {
  font-family: 'Railway', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6, .section-title, .footer-column h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}


p, .section-title, .footer-column h3 {
  font-family: 'Railway', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}


.header-container {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 5%;
}

.top-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem 0;
  background-color: var(--white);
  border-bottom: 1px solid #f0f0f0;
}

.support-cause-btn {
  background-color: #8cc63f;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-right: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-cause-btn:hover {
  background-color: #7ab52e;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.certification-badge img {
  height: 50px;
  vertical-align: middle;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 5px;
}

.nav-link {
  padding: 10px 15px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '▼';
  font-size: 8px;
  margin-left: 5px;
  color: #666;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #8cc63f;
}

.nav-link:hover::after {
  color: #8cc63f;
  transform: translateY(2px);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  border-top: 3px solid #8cc63f;
  padding: 10px 0;
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: #333;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: #8cc63f;
  padding-left: 25px;
}

.nav-item:hover .dropdown-content {
  display: block;
}

.search-icon {
  font-size: 16px;
  color: #666;
  cursor: pointer;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: #8cc63f;
}


.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 80vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  float: left;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-slide-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-slide h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-know-more {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.hero-know-more:hover {
  background: #7ab52e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  margin: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: rgba(255, 255, 255, 0.9) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  color: #333 !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.owl-prev,
.owl-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #333 !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}


.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--primary-color) !important;
  transform: scale(1.2);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-section {
  padding: 60px 0;
  background-color: var(--white);
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.view-details {
  color: var(--dark-gray);
  opacity: 0.7;
  cursor: pointer;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.read-more:hover {
  color: var(--primary-dark);
}


.impact-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.impact-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
  text-transform: uppercase;
}

.impact-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Map iframe responsive styles */
.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 15px;
}

.map-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sketchfab-embed-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sketchfab-embed-wrapper iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/3;
  max-height: 600px;
  display: block;
}

.map-item .know-more {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.map-item .know-more:hover {
  background-color: #7ab52e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.plus {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  vertical-align: top;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.stat-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark-gray);
}


.counter {
  display: inline-block;
}


@media (max-width: 992px) {
  .impact-stats {
      gap: 40px;
  }
  
  .stat-number {
      font-size: 4.5rem;
  }
  
  .plus {
      font-size: 2.7rem;
  }
  
  .stat-label {
      font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .intro-section,
  .impact-section {
      padding: 40px 0;
  }
  
  .impact-title {
      font-size: 2.4rem;
      margin-bottom: 40px;
  }
  
  .impact-stats {
      gap: 30px;
  }
  
  .stat-item {
      min-width: 150px;
  }
  
  .stat-number {
      font-size: 4rem;
  }
  
  .plus {
      font-size: 2.4rem;
  }
  
  .stat-label {
      font-size: 1.4rem;
  }
  
  /* Map responsive styles for tablets */
  .map-container {
      padding: 0 15px;
      margin: 25px auto;
  }
  
  .sketchfab-embed-wrapper {
      max-width: 650px;
  }
  
  .sketchfab-embed-wrapper iframe {
      max-height: 480px;
  }
}

@media (max-width: 576px) {
  .intro-text {
      font-size: 1rem;
      text-align: left;
  }
  
  .impact-title {
      font-size: 2.2rem;
  }
  
  .stat-item {
      flex-basis: 40%;
      margin-bottom: 20px;
  }
  
  .stat-number {
      font-size: 3.5rem;
  }
  
  .plus {
      font-size: 2.1rem;
  }
  
  /* Map responsive styles for mobile */
  .map-container {
      padding: 0 10px;
      margin: 20px auto;
  }
  
  .sketchfab-embed-wrapper {
      max-width: 100%;
      margin-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .sketchfab-embed-wrapper iframe {
      max-height: 350px;
  }
  
  .map-item .know-more {
      padding: 8px 20px;
      font-size: 0.8rem;
  }
}
  
  .stat-label {
      font-size: 1.3rem;
      margin-bottom: 10px;
  }
  
  .stat-description {
      font-size: 0.85rem;
  }



#our-programmes {
  padding: 70px 0;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #000;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.programme-item {
  display: flex;
  align-items: flex-start;
}

.programme-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.programme-icon img {
  width: 100%;
  height: auto;
}

.programme-content {
  flex: 1;
}

.programme-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

.programme-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.programme-description {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: #333;
}


.education {
  color: #e8c97d;
}

.education::after {
  background-color: #e8c97d;
}

.healthcare {
  color: #c3b1d0;
}

.healthcare::after {
  background-color: #c3b1d0;
}

.women {
  color: #a2d4d2;
}

.women::after {
  background-color: #a2d4d2;
}

.livelihood {
  color: #e2c5a9;
}

.livelihood::after {
  background-color: #e2c5a9;
}

.grassroots {
  color: #8dc88a;
}

.grassroots::after {
  background-color: #8dc88a;
}

.disaster {
  color: #f39f92;
}

.disaster::after {
  background-color: #f39f92;
}


@media (max-width: 992px) {
  .programmes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 20px;
  }
}

@media (max-width: 768px) {
  .programmes-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .section-title {
      font-size: 2.4rem;
      margin-bottom: 40px;
  }
  
  .programme-title {
      font-size: 1.6rem;
  }
  
  .programme-description {
      font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .programme-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .programme-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .programme-title {
      margin: 0 auto 10px;
  }
}




@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/BebasNeue-Regular.otf') format('opentype'),
       url('/assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/BebasNeue-Bold.otf') format('opentype'),
       url('/assets/fonts/BebasNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #000;
}


.sdg-section {
  padding: 70px 0;
  background-color: #fff;
}

.section-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px;
  color: #000;
}

.sdg-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}

.sdg-item {
  position: relative;
  width: 170px;
}

.hex-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 115%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hex-icon {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1); 
}

.hex-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-30%);
  padding: 0 10px;
}

.hex-content h3 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.sdg-number {
  display: block;
  font-size: 1.5rem;
  color: white;
  margin-top: 10px;
}


.sdg-health .hex-container {
  background: linear-gradient(to bottom, #c2a1d5, #a377bb);
}

.sdg-gender .hex-container {
  background: linear-gradient(to bottom, #f48ba2, #e15f7c);
}

.sdg-education .hex-container {
  background: linear-gradient(to bottom, #f5dc7e, #f0c629);
}

.sdg-work .hex-container {
  background: linear-gradient(to bottom, #a1d39e, #6eb966);
}

.sdg-inequality .hex-container {
  background: linear-gradient(to bottom, #8e9fda, #6477c5);
}

.sdg-partnership .hex-container {
  background: linear-gradient(to bottom, #9ac87f, #6eb547);
}


.stories-section {
  padding: 70px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.stories-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.story-item {
  flex: 1;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.story-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; 
  overflow: hidden;
  border-radius: 8px;
}

.story-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-button img {
  width: 30px;
  height: 30px;
  position: relative;
  left: 2px; 
}

.story-caption {
  margin-top: 10px;
  text-align: left;
}

.story-caption h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #1e4a8f;
}

.story-caption p {
  font-size: 0.9rem;
  margin: 5px 0 0;
  color: #555;
}

.story-title {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #000;
  text-align: left;
}

.story-title h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.story-logo {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
}

.story-logo img {
  max-height: 40px;
  width: auto;
}


@media (max-width: 992px) {
  .sdg-icons {
      gap: 10px;
  }
  
  .sdg-item {
      width: 150px;
  }
  
  .hex-content h3 {
      font-size: 0.75rem;
  }
  
  .sdg-number {
      font-size: 1.3rem;
  }
  
  .stories-grid {
      flex-wrap: wrap;
  }
  
  .story-item {
      flex: 0 0 calc(50% - 10px);
      max-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2.4rem;
  }
  
  .section-subtitle {
      font-size: 2.8rem;
      margin-bottom: 40px;
  }
  
  .sdg-icons {
      justify-content: center;
  }
  
  .sdg-item {
      width: 130px;
  }
  
  .hex-icon {
      width: 40px;
      height: 40px;
  }
  
  .stories-grid {
      gap: 15px;
  }
}

@media (max-width: 576px) {
  .sdg-icons {
      gap: 15px;
  }
  
  .sdg-item {
      width: 150px;
  }
  
  .stories-grid {
      flex-direction: column;
  }
  
  .story-item {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 20px;
  }
  
  .play-button {
      width: 60px;
      height: 60px;
  }
  
  .play-button img {
      width: 25px;
      height: 25px;
  }
}

.support-section {
  padding: 70px 0;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.cause-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cause-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cause-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; 
  overflow: hidden;
}

.cause-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.cause-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cause-content {
  padding: 20px;
  background: #fff;
}

.cause-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin: 0 0 15px;
}

.know-more {
  font-size: 0.9rem;
  color: #8cc63f; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.know-more:hover {
  color: #6f9e32; 
}


@media (max-width: 1024px) {
  .causes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2.4rem;
      margin-bottom: 30px;
  }

  .cause-title {
      font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .causes-grid {
      grid-template-columns: 1fr;
  }
  
  .cause-image {
      padding-bottom: 60%; 
  }
  
  .cause-content {
      padding: 15px;
  }
}



@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/BebasNeue-Bold.otf') format('opentype'),
       url('/assets/fonts/BebasNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.partners-section {
  padding: 50px 0;
  background-color: #c1d6d7; 
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}


.logo-carousel-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 500px;
  overflow: hidden;
}


.logo-column {
  display: flex;
  flex-direction: column;
  width: 22%;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: scrollUp;
}


.column-1 {
  animation-duration: 30s;
}

.column-2 {
  animation-duration: 25s;
}

.column-3 {
  animation-duration: 28s;
}

.column-4 {
  animation-duration: 22s;
}


.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 15px;
  background-color: transparent;
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(0);
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.1);
}


@keyframes scrollUp {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-50%); 
  }
}


.logo-carousel-container:hover .logo-column {
  animation-play-state: paused;
}


@media (max-width: 992px) {
  .logo-carousel-container {
      height: 450px;
  }
  
  .logo-column {
      width: 23%;
  }
  
  .logo-item {
      padding: 15px;
      margin: 10px;
  }
  
  .logo-item img {
      max-height: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2.4rem;
      margin-bottom: 30px;
  }
  
  .logo-carousel-container {
      height: 400px;
  }
  
  .logo-column {
      width: 48%;
  }
  
  
  .column-3, .column-4 {
      display: none;
  }
}

@media (max-width: 576px) {
  .logo-carousel-container {
      height: 350px;
  }
  
  .logo-column {
      width: 100%;
  }
  
  
  .column-2 {
      display: none;
  }
  
  .logo-item {
      padding: 10px;
      margin: 8px;
  }
  
  .logo-item img {
      max-height: 40px;
  }
}

.awards-slider-section {
  background-color: #333; 
  color: #fff;
  overflow: hidden;
}

.awards-swiper {
  width: 100%;
  height: auto;
}

.award-slide-content {
  display: flex;
  flex-wrap: wrap;
}

.award-text {
  flex: 1;
  min-width: 300px;
  padding: 80px 40px 80px 80px;
}

.award-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.award-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.view-all-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #fff;
}

.award-image {
  flex: 1;
  min-width: 300px;
  height: 500px;
  overflow: hidden;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.accreditations-section {
  padding: 70px 0;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}


.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

.accreditation-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.accreditation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accreditation-content {
  display: flex;
  flex-direction: column;
}

.accreditation-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px;
  margin: 0;
  text-align: center;
  color: #333;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation-description {
  background-color: #f5f5f5;
  padding: 15px;
  text-align: center;
}

.accreditation-description p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}


.certificate-accreditations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  display: none; 
}

.cert-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.cert-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-content {
  display: flex;
  flex-direction: column;
}

.cert-title {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px;
  margin: 0;
  background: #fff;
  color: #333;
}

.cert-description {
  background-color: #f5f5f5;
  padding: 20px;
}

.cert-description p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}


@media (max-width: 992px) {
  .accreditations-grid,
  .certificate-accreditations {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .accreditation-title {
      font-size: 1.1rem;
      min-height: 80px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2.4rem;
      margin-bottom: 30px;
  }
  
  .accreditation-image {
      height: 180px;
  }
}

@media (max-width: 576px) {
  .accreditations-grid,
  .certificate-accreditations {
      grid-template-columns: 1fr;
  }
  
  .accreditation-title {
      min-height: auto;
  }
}


@media (max-width: 1024px) {
  .award-text {
      padding: 60px 30px 60px 40px;
  }
  
  .award-title {
      font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .accreditations-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .award-image {
      height: 400px;
  }
}

@media (max-width: 768px) {
  .award-slide-content {
      flex-direction: column-reverse;
  }
  
  .award-text {
      padding: 40px 30px;
  }
  
  .award-title {
      font-size: 2rem;
  }
  
  .award-image {
      height: 350px;
  }
  
  .section-title {
      font-size: 2.4rem;
      margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .accreditations-grid {
      grid-template-columns: 1fr;
  }
  
  .award-title {
      font-size: 1.8rem;
  }
  
  .award-image {
      height: 300px;
  }
}




.hero-slider,
.hero-slides,
.hero-slider-indicators,
.hero-indicator,
.hero-slider-controls {
  display: none !important;
}


.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
}


.owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}


.hero-slide img {
  display: none; 
}


.owl-carousel {
  width: 100%;
  position: relative;
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  z-index: 1;
}


.owl-stage {
  display: flex;
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}


@media (max-width: 1200px) {
  .hero-slide h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-slide {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-slide h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-slide h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-slide-content {
    padding: 1rem;
  }
  
  .hero-know-more {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .owl-nav {
    display: none;
  }
}






.footer-container {
  background-color: #4a4a4a;
  color: #cccccc;
  padding: 60px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  position: relative;
}


.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #888888;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}


.footer-divider {
  border-top: 1px solid #666666;
  margin: 40px 0;
}

.footer-info-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.footer-address {
  max-width: 100%;
}

.footer-address p {
  margin: 0 0 5px 0;
  font-size: 13px;
  word-wrap: break-word;
}

.footer-address p:first-child {
  font-size: 14px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; 
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #8cc63f; 
}


.footer-newsletter-section {
  margin-top: 40px;
}

.footer-newsletter-section p {
  margin: 0 0 15px 0;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.form-inputs {
  flex-grow: 1;
  display: flex;
  gap: 20px;
  width: 100%;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #888888;
  color: #ffffff;
  padding: 10px 0;
  flex: 1;
  min-width: 120px;
  width: 100%;
}

.newsletter-form input::placeholder {
  color: #999999;
}

.newsletter-form button[type="submit"] {
  background-color: #8cc63f;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button[type="submit"]:hover {
  background-color: #7ab52e;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
  
  .footer-info-section {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-address {
    width: 100%;
  }
  
  .footer-social-links {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .form-inputs {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    width: 100%;
  }
  
  .newsletter-form button[type="submit"] {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 30px 10px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-column h4 {
    margin-bottom: 15px;
  }
  
  .footer-column h4::after {
    bottom: -5px;
  }
  
  .footer-column li {
    margin-bottom: 8px;
  }
  
  .footer-divider {
    margin: 25px 0;
  }
  
  .footer-newsletter-section {
    margin-top: 25px;
  }
  
  .newsletter-form button[type="submit"] {
    width: 100%;
    padding: 10px 15px;
  }
}

@media (max-width: 400px) {
  .footer-container {
    padding: 25px 10px;
    font-size: 13px;
  }
  
  .footer-column h4 {
    font-size: 15px;
  }
  
  .footer-address p {
    font-size: 12px;
  }
  
  .footer-address p:first-child {
    font-size: 13px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}



.hamburger {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1100;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #8cc63f;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.bx.bxs-x-circle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

.bx.bxs-x-circle:hover {
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: #f9f9f9;
    color: #8cc63f;
    padding-left: 30px;
}


@media (max-width: 991px) {
    .hamburger {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .donate-btn {
        margin-right: 10px;
    }
    
    
    .mobile-menu-overlay::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        transition: left 0.4s ease-in-out;
    }
    
    .mobile-menu-overlay.active::before {
        left: 0;
    }
}

@media (max-width: 1200px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-link {
    padding: 10px 10px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .main-header {
    padding: 10px 0;
    position: relative;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-link {
    padding: 15px 20px;
    justify-content: space-between;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    background-color: #f9f9f9;
  }
  
  .nav-item:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .search-icon {
    margin: 15px 20px;
    display: inline-block;
  }
  
  .top-header {
    padding: 10px 0;
    justify-content: center;
  }
  
  .support-cause-btn, .certification-badge {
    margin: 5px 0;
  }
  
  .logo img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }
  
  .programmes-grid, .campaign-grid, .empanelment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stats-container {
    padding: 2rem 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-middle {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-info, .footer-contact {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .newsletter-form form {
    flex-direction: column;
  }
  
  .newsletter-form input, .subscribe-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .programmes-grid, .campaign-grid, .empanelment-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-slider {
    height: 40vh;
    min-height: 250px;
  }
  
  .stats-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-links {
    justify-content: center;
  }
}


@media (hover: none) {
  .nav-link:hover {
    color: inherit;
  }
  
  .nav-link:hover::after {
    color: #666;
    transform: none;
  }
  
  .nav-item:active .nav-link {
    color: #8cc63f;
  }
  
  .nav-item:active .nav-link::after {
    color: #8cc63f;
    transform: translateY(2px);
  }
}

.donate-btn, .support-cause-btn {
  display: inline-block;
  background: #7cb342;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  margin-left: auto;
  margin-right: 12px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(124,179,66,0.08);
}
.donate-btn:hover, .support-cause-btn:hover {
  background: #558b2f;
  color: #fff;
}
.desktop-only { display: flex; align-items: center; }
@media (max-width: 992px) {
  .desktop-only { display: none !important; }
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    background: #fff;
    z-index: 1002;
  }
  .logo { flex: 0 0 auto; }
  .donate-btn { margin: 0 8px 0 auto; padding: 8px 18px; font-size: 1rem; border-radius: 6px; box-shadow: none; }
  .menu-toggle { display: block; position: static; margin-left: 0; margin-right: 0; z-index: 1003; background: none; border: none; font-size: 28px; color: #181f36; }
  .main-nav { display: none !important; }
  .mobile-nav-overlay {
    position: fixed;
    top: 0; right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #181f36;
    color: #fff;
    z-index: 2000;
    box-shadow: -2px 0 12px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .mobile-nav-overlay.active {
    transform: translateX(0);
  }
  .mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 18px 18px 0 0;
  }
  .close-mobile-nav {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  .mobile-nav-list {
    list-style: none;
    padding: 32px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .mobile-nav-list li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 24px;
    display: block;
    width: 100%;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .mobile-nav-list li a:hover {
    background: #263159;
  }
}
@media (max-width: 600px) {
  .main-header { padding: 6px 0; }
  .logo img { height: 38px; }
  .donate-btn { padding: 7px 10px; font-size: 0.95rem; margin-right: 6px; }
  .menu-toggle { font-size: 26px; }
  .mobile-nav-overlay { width: 90vw; }
}


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bfae7a; 
  padding: 10px 20px;
  font-size: 13px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}

.dropdown-submenu > .submenu-link .submenu-arrow {
  margin-left: 8px;
  font-size: 12px;
}

.dropdown-submenu > .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  z-index: 1001;
  border-top: none;
  padding: 10px 0;
}

.dropdown-submenu:hover > .submenu,
.dropdown-submenu:focus-within > .submenu {
  display: block;
}

.dropdown-content .dropdown-submenu > .submenu-link {
  color: #bfae7a;
  font-weight: 500;
}

.dropdown-content .dropdown-submenu > .submenu-link:hover {
  background: #f9f9f9;
  color: #8cc63f;
}

.dropdown-content .dropdown-submenu > .submenu a {
  color: #222;
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  background: none;
}

.dropdown-content .dropdown-submenu > .submenu a:hover {
  background: #f9f9f9;
  color: #8cc63f;
}
