/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Updated Color Palette - Daksh Foundation 2025 */
:root {
  /* Primary Brand Colors */
  --primary-blue: #005b96;
  --secondary-green: #4caf50;
  --accent-light-blue: #e3f2fd;
  /* Neutral Colors */
  --white: #ffffff;
  --text-dark: #212121;
  --text-light: #555555;
  --bg-light: #f5f5f5;
  /* Hover & Success States */
  --hover-blue: #003e73;
  --success-green: #2e7d32;
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
  font-size: 16px;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Top Bar */
.top-bar {
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 0;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-left: 15px;
}

.social-links a {
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-light-blue);
}

.top-buttons {
  display: flex;
  gap: 15px;
}

.btn-donate,
.btn-sponsor {
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-donate {
  background: var(--secondary-green);
  color: var(--white);
}

.btn-donate:hover {
  background: var(--success-green);
  transform: translateY(-2px);
}

.btn-sponsor {
  background: var(--white);
  color: var(--primary-blue);
}

.btn-sponsor:hover {
  background: var(--accent-light-blue);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-green);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-badge img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-badge:hover img {
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-buttons {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  width: 100%;
}

.hero-slider,
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

/* Slide 1 */
.hero-slide:nth-child(1) {
  background-image: url("assets/About/1.webp");
}

/* Slide 2 */
.hero-slide:nth-child(2) {
  background-image: url("assets/About/2.webp");
}

/* Slide 3 */
.hero-slide:nth-child(3) {
  background-image: url("assets/About/3.webp");
}

/* Slide 4 */
.hero-slide:nth-child(4) {
  background-image: url("assets/About/4.webp");
}

/* Slide 5 */
.hero-slide:nth-child(5) {
  background-image: url("assets/About/5.webp");
}

/* Slide 6 */
.hero-slide:nth-child(6) {
  background-image: url("assets/About/6.webp");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 91, 150, 0.85) 0%,
      rgba(0, 91, 150, 0.65) 25%,
      rgba(0, 91, 150, 0.3) 40%,
      rgba(0, 91, 150, 0.05) 50%,
      rgba(0, 91, 150, 0) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
}

.hero-text {
  max-width: 750px;
  color: var(--white);
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  hyphens: auto;
  word-break: break-word;
}

.hero-title .highlight {
  color: #ffd54f;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.98;
  color: #f5f5f5;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.25);
  max-width: 680px;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  cursor: pointer;
}

.btn-primary {
  background: #005b96;
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(255, 213, 79, 0.4);
}

.btn-primary:hover {
  background: #003e73;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 213, 79, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: #005b96;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background: var(--white);
  width: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

/* Universal Section Styles */
section {
  padding: 80px 0;
  transition: opacity 0.5s ease;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.section-title.green {
  color: var(--secondary-green);
}

.section-title.green::after {
  background-color: var(--secondary-green);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 15px auto 0;
}

/* Page Header for Inner Pages */
.page-header {
  background: linear-gradient(rgba(0, 91, 150, 0.8), rgba(0, 62, 115, 0.8)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%,
      rgba(76, 175, 80, 0.3) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(0, 91, 150, 0.3) 0%,
      transparent 50%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.page-header p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Carbon Intro Section */
.carbon-intro {
  background: var(--white);
  padding: 60px 0;
}

.carbon-intro .intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.carbon-intro .section-header {
  text-align: left;
  margin-bottom: 0;
}

.carbon-intro .section-title {
  font-size: 38px;
  margin-bottom: 20px;
  text-align: left;
}

.carbon-intro .section-title::after {
  left: 0;
  transform: translateX(0);
}

.carbon-intro .section-subtitle {
  text-align: left;
  max-width: none;
  font-size: 18px;
  margin: 0;
}

.intro-visuals {
  text-align: right;
}

.intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 25%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.intro-image:hover {
  transform: scale(1.02);
}

/* Carbon Initiative Section */
.carbon-initiative {
  background: var(--bg-light);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.work-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 91, 150, 0.8);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .image-overlay {
  opacity: 1;
}

.work-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.work-content h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.work-content p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--text-light);
  hyphens: auto;
  word-break: break-word;
}

/* CSR Partnership Section */
.csr-partnership {
  background: var(--white);
  padding: 60px 0;
}

.csr-partnership .vm-content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vm-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-blue),
      var(--secondary-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.vm-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.vm-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: ripple 2s ease-out infinite;
}

.vm-icon-wrapper i {
  font-size: 36px;
  color: var(--white);
  z-index: 1;
}

.vm-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
}

.vm-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.vm-card:hover {
  transform: scale(1.05);
}

/* Impact Stats for Carbon */
.carbon-impact .impact-container {
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.carbon-impact .impact-data .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.carbon-impact .stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.carbon-impact .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-blue),
      var(--secondary-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.carbon-impact .stat-item:hover::before {
  transform: scaleX(1);
}

.carbon-impact .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.carbon-impact .stat-icon {
  font-size: 40px;
  color: var(--secondary-green);
  margin-bottom: 10px;
  display: block;
}

.carbon-impact .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.carbon-impact .stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Join Hands Section */
.join-hands {
  background: var(--bg-light);
}

.join-hands .contact-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
  align-items: start;
}

.join-hands .contact-grid-container:hover {
  box-shadow: var(--shadow-lg);
}

.join-hands .contact-form-wrapper,
.join-hands .contact-info-wrapper {
  text-align: left;
}

.join-hands .contact-form-wrapper h3,
.join-hands .contact-info-wrapper h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.join-hands .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
  justify-content: flex-start;
}

.join-hands .follow-us-title {
  margin-top: 40px;
  text-align: left;
}

.join-hands .contact-social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
}

.btn-submit {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-height: 44px;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--hover-blue);
  transform: translateY(-2px);
}

.join-visual {
  text-align: center;
  margin-top: 40px;
}

.join-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.join-image:hover {
  transform: scale(1.02);
}

/* About Us: Intro Section */
.about-intro-section {
  padding: 80px 0;
  background-color: var(--white);
}

.about-intro-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: flex-start;
}

.about-intro-text .section-sub-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: var(--secondary-green);
}

.about-intro-text .section-title {
  font-size: 38px;
  margin-top: 0;
  margin-bottom: 30px;
  display: block;
  text-align: left;
}

.about-intro-text .section-title::after {
  left: 0;
  transform: translateX(0);
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-intro-text p strong {
  color: var(--primary-blue);
  font-weight: 600;
}

.about-intro-image {
  text-align: center;
  padding-top: 70px;
}

.about-intro-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-intro-image img:hover {
  transform: scale(1.02);
}

.about-intro-image .image-caption {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* Color specific classes */
.blue-text {
  color: var(--primary-blue) !important;
}

.green-text {
  color: var(--secondary-green) !important;
}

/* Who We Are Section (Homepage) */
.who-we-are {
  background: var(--bg-light);
}

.who-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text {
  padding-right: 20px;
}

.who-intro,
.who-highlight {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-dark);
  hyphens: auto;
  word-break: break-word;
}

.who-stats {
  margin: 30px 0;
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  border-left: 5px solid var(--secondary-green);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.who-stats:hover {
  box-shadow: var(--shadow-md);
}

.who-stats strong {
  color: var(--secondary-green);
  font-weight: 700;
}

.read-more-wrapper {
  margin-top: 30px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-read-more:hover {
  background: var(--hover-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 91, 150, 0.3);
}

.who-images-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.who-images-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideVertical 30s linear infinite;
  transition: transform 0.3s ease;
}

.who-images-slider:hover {
  animation-play-state: paused;
}

@keyframes slideVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.image-slide {
  flex-shrink: 0;
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.image-slide:hover {
  transform: scale(1.02);
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-slide:hover img {
  transform: scale(1.05);
}

/* About Us: Vision & Mission */
.vision-mission {
  padding: 80px 0;
  background: var(--accent-light-blue);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(76, 175, 80, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-mission::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 91, 150, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vm-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.vm-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-blue),
      var(--secondary-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.vm-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.vm-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: ripple 2s ease-out infinite;
}

.vm-icon-wrapper i {
  font-size: 36px;
  color: var(--white);
  z-index: 1;
}

.vision-card .vm-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-blue), var(--hover-blue));
}

.mission-card .vm-icon-wrapper {
  background: linear-gradient(135deg,
      var(--secondary-green),
      var(--success-green));
}

.vm-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
}

.vm-main-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.vm-main-text strong {
  color: var(--primary-blue);
  font-weight: 600;
}

.vm-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-blue),
      var(-- secondary-green));
  margin: 20px auto;
  border-radius: 2px;
}

.vm-card p.vm-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.vm-card .mission-quote {
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--secondary-green);
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.vm-card .mission-quote::before,
.vm-card .mission-quote::after {
  content: '"';
  font-size: 40px;
  color: var(--secondary-green);
  opacity: 0.3;
  position: absolute;
}

.vm-card .mission-quote::before {
  left: -5px;
  top: -10px;
}

.vm-card .mission-quote::after {
  right: -5px;
  bottom: -20px;
}

.vm-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 91, 150, 0.08);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.mission-card .feature-tag {
  background: rgba(76, 175, 80, 0.08);
  color: var(--secondary-green);
}

.feature-tag:hover {
  transform: scale(1.05);
  background: var(--primary-blue);
  color: var(--white);
}

.mission-card .feature-tag:hover {
  background: var(--secondary-green);
}

.feature-tag i {
  font-size: 12px;
}

/* Our Work / Programs */
.our-work,
.projects-section,
.carbon-initiative {
  background: var(--bg-light);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
}

.read-more:hover {
  color: var(--success-green);
  transform: translateX(5px);
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Where We Work */
.where-we-work {
  background-color: var(--white);
}

.work-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.map-visual img:hover {
  transform: scale(1.02);
}

.state-list-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 24px;
  border-bottom: 3px solid var(--secondary-green);
  padding-bottom: 12px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.state-list {
  list-style: none;
  columns: 2;
  column-gap: 30px;
}

.state-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.state-list li:hover {
  color: var(--primary-blue);
}

.state-list li i {
  color: var(--secondary-green);
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Our Partners */
.our-partners {
  background: var(--bg-light);
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 20%,
      black 80%,
      transparent);
  mask-image: linear-gradient(to right,
      transparent,
      black 20%,
      black 80%,
      transparent);
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 50s linear infinite;
  transition: transform 0.3s ease;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  height: 120px;
  margin: 0 40px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.logo-track img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Lead Gen Form */
.lead-gen-form {
  background: var(--bg-light);
}

/* About Page: Director's Message */
.director-message-section {
  background: var(--bg-light);
}

.director-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.director-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.director-image img:hover {
  transform: scale(1.02);
}

.director-text h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.director-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.director-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.director-text h4 {
  margin-top: 20px;
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.director-text em {
  color: var(--text-light);
  font-size: 16px;
}

/* Programs Page: Project List */
.projects-section {
  padding-top: 0;
}

.project-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-list li {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.project-list li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.project-list i {
  color: var(--secondary-green);
  margin-right: 15px;
  font-size: 24px;
}

/* Gallery Page */
.gallery {
  background: var(--bg-light);
  padding-bottom: 40px;
}

.gallery-tabs-container {
  position: relative;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.tab-btn:not(:last-child)::after {
  content: "|";
  color: var(--text-light);
  margin: 0 10px;
  font-weight: normal;
}

.tab-btn:hover {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.tab-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 25px;
  border-bottom: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tab-btn.active::after {
  color: rgba(255, 255, 255, 0.7);
}

.tab-contents {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: var(--white);
}

/* Partnership Page */
.partnership-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partnership-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partnership-card i {
  font-size: 3rem;
  color: var(--secondary-green);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.partnership-card:hover i {
  transform: scale(1.1);
}

.partnership-card h3 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-blue);
}

/* Get Involved Page */
.involvement-section {
  background-color: var(--bg-light);
}

.involvement-section .involvement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.involvement-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--secondary-green);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involvement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.involvement-card h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.involvement-card h3 i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.involvement-card:hover h3 i {
  transform: rotate(10deg);
}

.involvement-card p {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-dark);
}

.involvement-card a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.involvement-card a:hover {
  color: var(--hover-blue);
}

/* Career Page */
.career-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.career-card {
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.career-card:hover {
  box-shadow: var(--shadow-lg);
}

.career-card h3 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-blue);
}

.job-list {
  list-style: none;
}

.job-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.job-list li:hover {
  background-color: var(--bg-light);
  padding-left: 15px;
}

.career-apply {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
}

.career-apply:hover {
  box-shadow: var(--shadow-md);
}

.career-apply h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
}

.career-apply .btn-primary {
  margin-top: 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.job-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-green);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.job-card h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.job-card p:first-of-type {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
}

.job-card p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.job-card h4 {
  color: var(--secondary-green);
  margin: 20px 0 10px;
  font-family: "Poppins", sans-serif;
}

.job-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.job-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: var(--text-dark);
}

.job-card ul li::before {
  content: "•";
  color: var(--secondary-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.why-join {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light-blue) 100%);
  padding: 80px 0;
  margin: 60px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.why-join::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-join .container {
  position: relative;
  z-index: 1;
}

.why-join .section-header {
  margin-bottom: 40px;
}

.why-tagline {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-green);
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  text-align: center;
}

.why-description {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-align: center;
}

.why-benefits {
  max-width: 900px;
  margin: 0 auto;
}

.why-subtitle {
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.why-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.why-list li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-green);
}

.why-list li i {
  flex-shrink: 0;
  color: var(--secondary-green);
  font-size: 24px;
  margin-top: 2px;
  min-width: 24px;
}

.why-list li div {
  flex: 1;
}

.why-list li strong {
  font-size: 18px;
  color: var(--primary-blue);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 8px;
}

.why-list li p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* CONTACT PAGE STYLES */
.contact-page-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.contact-grid-container:hover {
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
  transform: rotate(360deg);
}

.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
}

.info-text p,
.info-text a {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--primary-blue);
}

.follow-us-title {
  margin-top: 40px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-social-links a:hover {
  background-color: var(--hover-blue);
  transform: translateY(-3px);
}

.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
}

/* Key Advantages Section */
.key-advantages {
  background: var(--bg-light);
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.advantage-item {
  position: relative;
  background: var(--white);
  padding: 30px 40px;
  border-radius: 12px;
  border-left: 5px solid var(--secondary-green);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-blue);
}

.item-number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 100px;
  font-weight: 800;
  color: var(--primary-blue);
  opacity: 0.07;
  z-index: 1;
  line-height: 1;
  transition: transform 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.advantage-item:hover .item-number {
  transform: scale(1.1);
}

.advantage-item p {
  position: relative;
  z-index: 2;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.7;
  hyphens: auto;
  word-break: break-word;
}

/* Our Journey */
.our-journey {
  background: var(--white);
}

.our-journey .journey-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.our-journey .journey-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-journey .journey-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.our-journey .journey-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--secondary-green),
      var(--primary-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.our-journey .journey-card:hover .journey-icon {
  transform: rotate(360deg);
}

.our-journey .journey-card h3 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-blue);
}

/* Impact Statistics Section */
.impact-stats {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.impact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 50px;
}

.impact-image {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.impact-image img:hover {
  transform: scale(1.02);
}

.impact-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-data .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.impact-data .stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  /* Ensures consistent height for cards */
}

.impact-data .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-blue),
      var(--secondary-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.impact-data .stat-item:hover::before {
  transform: scaleX(1);
}

.impact-data .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.impact-data .stat-icon {
  font-size: 40px;
  color: var(--secondary-green);
  margin-bottom: 10px;
  display: block;
}

.impact-data .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.impact-data .stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

/* Growth Path */
.growth-path {
  background: var(--white);
}

.growth-path .timeline {
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.growth-path .timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.growth-path .timeline-item:hover {
  transform: scale(1.02);
}

.growth-path .timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.growth-path .timeline-stage {
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-green));
  color: var(--white);
  padding: 15px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.growth-path .timeline-item:hover .timeline-stage {
  transform: scale(1.05);
}

.growth-path .timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  transition: transform 0.3s ease;
}

.growth-path .timeline-item:hover .timeline-icon {
  transform: rotate(360deg);
}

.growth-path .timeline-content {
  text-align: left;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  list-style: none;
  min-height: 180px;
  transition: box-shadow 0.3s ease;
}

.growth-path .timeline-content:hover {
  box-shadow: var(--shadow-sm);
}

.growth-path .timeline-content li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.growth-path .timeline-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: 700;
}

/* What We Stand For */
.stand-for {
  background: var(--bg-light);
}

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

.stand-for .stand-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stand-for .stand-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.stand-for .stand-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.stand-for .stand-card:hover .stand-icon {
  transform: rotate(360deg);
}

.stand-for .stand-card h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.stand-for .stand-card p {
  color: var(--text-light);
}

/* Our Approach */
.our-approach {
  background: var(--white);
}

.our-approach .approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.our-approach .approach-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.our-approach .approach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.our-approach .approach-icon {
  font-size: 3rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.our-approach .approach-card:hover .approach-icon {
  transform: scale(1.2);
}

.our-approach .approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.our-approach .approach-card p {
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
  padding: 80px 0;
}

.testimonials-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.testimonials-track {
  display: flex;
  width: fit-content;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(50% - 30px);
  margin: 0 15px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--secondary-green);
  margin-bottom: 15px;
  align-self: flex-start;
  opacity: 0.7;
}

.testimonial-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.testimonial-name {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Impact Stories */
.impact-stories {
  background: var(--bg-light);
}

.impact-stories .story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.impact-stories .story-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.impact-stories .story-card:hover {
  transform: translateY(-5px);
}

.impact-stories .story-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.impact-stories .story-card:hover .story-image {
  transform: scale(1.05);
}

.impact-stories .story-content {
  padding: 25px;
}

.impact-stories .story-content h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.impact-stories .story-content p {
  color: var(--text-light);
}

.impact-stories .btn-story {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.impact-stories .btn-story:hover {
  color: var(--hover-blue);
}

.impact-stories .btn-story i {
  transition: transform 0.3s ease;
}

.impact-stories .btn-story:hover i {
  transform: translateX(5px);
}

/* Get Involved */
.get-involved {
  background: var(--white);
}

.get-involved .involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.get-involved .involved-card {
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.get-involved .involved-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.get-involved .involved-card h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.get-involved .involved-card p {
  color: var(--text-light);
}

/* Team Section */
.team-section {
  background: var(--white);
  padding: 80px 0;
}

.team-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.team-track {
  display: flex;
  width: fit-content;
  animation: teamScroll 30s linear infinite;
  transition: transform 0.3s ease;
}

.field-team-track {
  animation-duration: 90s;
  /* Slower for longer list */
}

.team-track:hover {
  animation-play-state: paused;
}

.team-card {
  flex-shrink: 0;
  width: 280px;
  margin: 0 20px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 30px 20px;
  min-height: 200px;
  /* Reduced min-height since no bio for field team */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-info {
  padding: 0;
}

.team-info h4 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.team-role {
  font-size: 14px;
  color: var(--secondary-green);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 10px;
}

@keyframes teamScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* FOOTER */
.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding-top: 60px;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-qr {
  width: 120px;
  height: 120px;
  border: 4px solid var(--white);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.footer-qr:hover {
  transform: scale(1.05);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-green);
}

.footer-col.contact-details a {
  color: var(--accent-light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col.contact-details a:hover {
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.subscribe-form {
  display: flex;
  margin-top: 15px;
}

.subscribe-form input {
  flex-grow: 1;
  border: none;
  padding: 12px;
  border-radius: 4px 0 0 4px;
  font-family: "Open Sans", sans-serif;
  transition: box-shadow 0.3s ease;
}

.subscribe-form input:focus {
  box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
}

.subscribe-form button {
  border: none;
  background: var(--secondary-green);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe-form button:hover {
  background: var(--success-green);
  transform: translateX(5px);
}

.footer-bottom {
  background-color: var(--hover-blue);
  padding: 20px;
  text-align: center;
  position: relative;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-social a {
  color: var(--white);
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-light-blue);
  transform: translateY(-3px);
}

.back-to-top {
  position: absolute;
  right: 20px;
  top: 1%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  backdrop-filter: blur(10px);
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
      0 0 30px rgba(255, 255, 255, 0.2);
  }
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--accent-light-blue);
  transform: translateY(-50%) scale(1.1);
  animation: none;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.7),
    0 0 35px rgba(255, 255, 255, 0.4);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-button {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-button:hover {
  background-color: #20b858;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Career Page Specific Styles */
.career-apply-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.career-apply {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.career-apply:hover {
  box-shadow: var(--shadow-lg);
}

.career-apply h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
}

.career-apply p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.career-apply a {
  color: var(--primary-blue);
  text-decoration: none;
}

.career-apply a:hover {
  color: var(--hover-blue);
}

.career-apply .container {
  max-width: 600px;
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) and (min-width: 769px) {

  /* Tablet/iPad specific adjustments */
  .hero-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .stand-for .stand-grid,
  .our-approach .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-track img {
    height: 100px;
    margin: 0 30px;
  }

  .nav-content {
    padding: 15px 30px;
  }

  .testimonial-card {
    width: calc(50% - 30px);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .csr-partnership .vm-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .carbon-impact .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .who-content,
  .work-area-content,
  .director-content {
    grid-template-columns: 1fr;
  }

  .about-intro-content {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .story-grid,
  .partnership-content,
  .involvement-grid,
  .project-list,
  .career-content {
    grid-template-columns: 1fr 1fr;
  }

  .vm-content {
    grid-template-columns: 1fr;
  }

  .growth-path .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .impact-data .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .our-journey .journey-content,
  .stand-for .stand-grid,
  .our-approach .approach-grid,
  .get-involved .involved-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .key-advantages .advantages-grid {
    grid-template-columns: 1fr;
  }

  .impact-container,
  .carbon-impact .impact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .carbon-impact .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .csr-partnership .vm-content {
    grid-template-columns: 1fr;
  }

  .join-hands .contact-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .carbon-intro .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-visuals {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }

  .gallery-item img {
    height: 180px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    z-index: 1001;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 15px;
  }

  .top-buttons {
    display: none;
  }

  .social-links {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-content {
    padding: 10px 20px;
  }

  .logo img {
    height: 50px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    transition: left 0.4s ease-in-out;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    z-index: 998;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a {
    font-size: 18px;
    display: block;
    padding: 20px;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 20px 40px 40px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    align-items: center;
  }

  .menu-buttons a {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 15px;
  }

  .nav-badge {
    display: none;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .slider-dots {
    bottom: 20px;
  }

  .section-title,
  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 18px;
  }

  .work-grid,
  .story-grid,
  .partnership-content,
  .involvement-section .involvement-grid,
  .contact-grid-container,
  .project-list,
  .career-content,
  .our-journey .journey-content,
  .stand-for .stand-grid,
  .our-approach .approach-grid,
  .get-involved .involved-grid {
    grid-template-columns: 1fr;
  }

  .impact-stories .story-grid {
    grid-template-columns: 1fr;
  }

  .state-list {
    columns: 1;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-intro-image {
    padding-top: 30px;
  }

  .about-intro-text .section-title,
  .about-intro-text .section-title::after {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .director-content {
    text-align: center;
  }

  .director-image {
    margin-bottom: 30px;
  }

  .vm-card h3 {
    font-size: 24px;
  }

  .advantage-item {
    padding: 25px;
  }

  .item-number {
    font-size: 80px;
  }

  .advantage-item p {
    font-size: 16px;
  }

  .impact-data .stats-grid {
    gap: 40px 20px;
  }

  .stat-item .stat-number {
    font-size: 42px;
  }

  .vision-mission {
    padding: 60px 0;
  }

  .vm-content {
    gap: 30px;
  }

  .vm-card {
    padding: 35px 25px;
  }

  .vm-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .vm-icon-wrapper i {
    font-size: 30px;
  }

  .vm-card h3 {
    font-size: 26px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-list li {
    font-size: 16px;
    justify-content: flex-start;
  }

  .back-to-top {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }

  .chat-widget {
    bottom: 20px;
    right: 20px;
  }

  .chat-button {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .team-card {
    width: 250px;
    margin: 0 15px;
  }

  .team-card img {
    height: 180px;
  }

  .testimonial-card {
    width: calc(100% - 10px);
    margin: 0 5px;
    min-height: 220px;
  }

  .carbon-impact .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .join-hands .contact-grid-container {
    padding: 20px;
    gap: 20px;
  }

  .join-hands .contact-form-wrapper h3,
  .join-hands .contact-info-wrapper h3 {
    text-align: center;
  }

  .join-hands .info-item {
    justify-content: center;
  }

  .join-hands .follow-us-title {
    text-align: center;
  }

  .join-hands .contact-social-links {
    justify-content: center;
  }

  .carbon-intro .section-title {
    font-size: 32px;
  }

  .carbon-intro .intro-content {
    gap: 20px;
  }

  .gallery-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn:not(:last-child)::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }

  .gallery-item img {
    height: 160px;
  }

  .why-join {
    padding: 60px 0;
    margin: 40px 0;
  }

  .why-tagline {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .impact-data .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    text-align: center;
  }

  .stat-item {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .page-header p {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
    padding: 0 5px;
  }

  .who-container {
    padding: 0 20px;
  }

  .who-content {
    gap: 40px;
  }

  .team-card {
    width: 220px;
    margin: 0 10px;
  }

  .team-bio {
    font-size: 13px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .job-card {
    padding: 20px;
  }

  .job-card ul li {
    font-size: 15px;
  }

  .career-apply {
    padding: 30px 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carbon-impact .stats-grid {
    grid-template-columns: 1fr;
  }

  .carbon-impact .stat-number {
    font-size: 28px;
  }

  .carbon-impact .stat-icon {
    font-size: 32px;
  }

  .vm-content {
    gap: 20px;
  }

  .vm-card {
    padding: 30px 20px;
  }

  .intro-image {
    border-radius: 20%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-item img {
    height: 250px;
  }

  .why-list li {
    padding: 20px;
    gap: 12px;
  }

  .why-list li i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .menu-buttons {
    gap: 5px;
  }

  .menu-buttons a {
    padding: 12px;
    font-size: 16px;
  }

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

  .slider-btn {
    display: none;
    /* Hide arrows on very small mobile to avoid overlap */
  }

  .team-section {
    padding: 60px 0;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    width: 95%;
    margin: 0 2.5%;
    padding: 20px 15px;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .join-hands .contact-grid-container {
    padding: 15px;
  }

  .btn-submit {
    padding: 10px 20px;
  }

  .intro-visuals,
  .join-visual {
    margin-top: 20px;
  }

  .intro-image,
  .join-image {
    border-radius: 15px;
  }

  .carbon-intro .section-subtitle {
    font-size: 16px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .gallery-item img {
    height: 200px;
  }

  .why-subtitle {
    font-size: 20px;
  }

  .career-apply .container {
    padding: 0 10px;
  }
}