@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img-replace {
  height: 50px;
  width: auto;
  display: block;
}
.logo-main-navbar {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 10px;
}
.logo-img,
.logo-text,
.logo-sub {
  display: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links a:hover {
  color: var(--primary-orange);
  border-bottom: 2px solid var(--primary-orange);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--primary-red);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
  position: relative;
  border: 2px solid #fff;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--primary-orange);
}
@media (max-width: 900px) {
  .navbar {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .logo {
    align-items: flex-start;
  }
  .logo-img {
    width: 48px;
    height: 48px;
    font-size: 2rem;
    font-weight: 800;
    margin-right: 12px;
    background: #16d964;
    color: #fff;
  }
  .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #6ee7b7;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-align: left;
  }
  .logo-sub {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    margin-left: 2px;
    text-align: left;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    margin-left: auto;
  }
  .hamburger span {
    width: 22px;
    height: 3px;
    margin: 4px 0;
  }
  .nav-links {
    display: none;
  }
  .hero-bg {
    min-height: 80vh;
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.who-section {
  background: #fafbfc;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 64px;
  padding-left: 5vw;
  padding-right: 5vw;
  margin: 0;
  color: #222;
  position: relative;
  z-index: 1;
}
.who-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  gap: 48px;
}
.who-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 700px;
}
.who-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 32px 0;
  color: #222;
}
.who-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}
.who-btn {
  background: var(--primary-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.who-btn:hover {
  background: #b71c1c;
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.18);
}
.who-img {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  max-width: 600px;
  position: relative;
}
/* Slider styles */
.slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.6s;
  opacity: 0;
}
.slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slide img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}
@media (max-width: 1100px) {
  .who-section {
    padding-top: 80px;
    padding-bottom: 48px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .who-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0;
  }
  .who-img {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
  }
  .who-img img {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .who-section {
    padding-top: 70px;
    padding-bottom: 32px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .who-container {
    padding: 0;
    gap: 24px;
  }
  .who-text h2 {
    font-size: 2rem;
  }
  .who-text p {
    font-size: 1rem;
  }
  .who-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .slider {
    border-radius: 16px;
    min-height: 180px;
  }
  .slide img {
    border-radius: 16px;
  }
}
@media (max-width: 900px) {
  .who-section {
    margin-top: 0;
  }
  .sectors-arrow {
    display: none !important;
  }
}
.sectors-section {
  background: #f5f6f8;
  padding: 48px 0;
  width: 100%;
  overflow: hidden;
}
.sectors-header {
  text-align: center;
  padding: 0 20px 32px 20px;
}
.sectors-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #18181b;
}
.sectors-header p {
  color: #636a7c;
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 600px;
}
.sectors-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.sectors-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
  margin: -16px 0;
}
.sector-card-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  scroll-snap-align: center;
}
.sector-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 32px 24px;
  width: 100%;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.sector-card:hover {
  box-shadow: 0 8px 32px rgba(211, 47, 47, 0.1);
  transform: translateY(-4px);
}
.sector-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sector-title {
  color: var(--primary-red);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sector-desc {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.5;
}
/* Responsive styles */
@media (max-width: 1400px) {
  .sector-card {
    min-width: 260px;
    max-width: 360px;
  }
}
@media (max-width: 1200px) {
  .sectors-header h2 {
    font-size: 2.2rem;
  }
  
  .sector-card {
    min-width: 240px;
    max-width: 320px;
    padding: 28px 20px;
  }
  
  .sector-title {
    font-size: 1.2rem;
  }
  
  .sector-desc {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .sectors-section {
    padding: 40px 0;
  }
  
  .sectors-header h2 {
    font-size: 2rem;
  }
  
  .sectors-header p {
    font-size: 1.1rem;
  }
  
  .sector-card {
    min-width: 220px;
    max-width: 300px;
    padding: 24px 16px;
  }
  
  .sector-title {
    font-size: 1.1rem;
  }
  
  .sector-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .sectors-section {
    padding: 32px 0;
  }
  
  .sectors-header {
    padding: 0 16px 24px 16px;
  }
  
  .sectors-header h2 {
    font-size: 1.8rem;
  }
  
  .sectors-header p {
    font-size: 1rem;
  }
  
  .sectors-carousel-wrapper {
    padding: 0 12px;
  }
  
  .sectors-carousel {
    gap: 16px;
    padding: 12px 0;
    margin: -12px 0;
  }
  
  .sector-card {
    min-width: 200px;
    max-width: 280px;
    padding: 20px 12px;
    border-radius: 20px;
  }
  
  .sector-title {
    font-size: 1rem;
  }
  
  .sector-desc {
    font-size: 0.9rem;
  }
}
@media (max-width: 400px) {
  .sector-card {
    min-width: 180px;
    max-width: 260px;
    padding: 16px 10px;
  }
}
.impact-section {
  background: #f7f8fa;
  width: 100%;
  padding: 48px 0;
  overflow: hidden;
}
.impact-header {
  text-align: center;
  padding: 0 20px 32px 20px;
}
.impact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #18181b;
}
.impact-header p {
  color: #636a7c;
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 700px;
}
.impact-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.impact-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
  margin: -16px 0;
}
.impact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 32px 24px;
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: center;
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(211, 47, 47, 0.1);
}
.impact-number {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
}
.impact-title {
  color: #18181b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.impact-desc {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}
.impact-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding: 0 20px;
}
.impact-btn {
  background: #d32f2f;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 16px 48px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30,201,107,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.impact-btn:hover {
  background: #13b856;
  box-shadow: 0 8px 32px rgba(30,201,107,0.18);
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .impact-section {
    padding: 40px 0;
  }
  .impact-header h2 {
    font-size: 2.2rem;
  }
  .impact-header p {
    font-size: 1.1rem;
  }
  .impact-card {
    width: 280px;
    padding: 28px 20px;
  }
  .impact-number {
    font-size: 2.2rem;
  }
  .impact-title {
    font-size: 1.2rem;
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .impact-section {
    padding: 32px 0;
  }
  .impact-header {
    padding: 0 16px 24px 16px;
  }
  .impact-header h2 {
    font-size: 2rem;
  }
  .impact-header p {
    font-size: 1rem;
  }
  .impact-carousel-wrapper {
    padding: 0 12px;
  }
  .impact-carousel {
    gap: 16px;
    padding: 12px 0;
    margin: -12px 0;
  }
  .impact-card {
    width: 260px;
    padding: 24px 16px;
  }
  .impact-number {
    font-size: 2rem;
  }
  .impact-title {
    font-size: 1.1rem;
  }
  .impact-desc {
    font-size: 0.95rem;
  }
  .impact-btn {
    font-size: 1.1rem;
    padding: 14px 36px;
  }
}
/* Small Mobile Styles */
@media (max-width: 480px) {
  .impact-section {
    padding: 24px 0;
  }
  .impact-header {
    padding: 0 12px 20px 12px;
  }
  .impact-header h2 {
    font-size: 1.8rem;
  }
  .impact-carousel-wrapper {
    padding: 0 8px;
  }
  .impact-carousel {
    gap: 12px;
    padding: 8px 0;
    margin: -8px 0;
  }
  .impact-card {
    width: 240px;
    padding: 20px 12px;
  }
  .impact-number {
    font-size: 1.8rem;
  }
  .impact-title {
    font-size: 1rem;
  }
  .impact-desc {
    font-size: 0.9rem;
  }
  .impact-btn {
    font-size: 1rem;
    padding: 12px 32px;
  }
}
.sdg-section {
  background: #f7f8fa;
  width: 100%;
  padding: 0 0 48px 0;
}
.sdg-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 5vw 0 5vw;
}
.sdg-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 700px;
  margin-top: 32px;
}
.sdg-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 32px 0;
  color: #222;
  letter-spacing: -1px;
}
.sdg-green {
  color: var(--primary-red);
}
.sdg-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}
.sdg-grid {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.sdg-card {
  display: none;
}
.sdg-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  background: #fff;
  user-select: none;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.sdg-combined-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  background: #00000000;
  user-select: none;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  display: block;
}
/* SDG Colors */
.sdg1 { background: #e5243b; }
.sdg2 { background: #dda63a; }
.sdg3 { background: #4c9f38; }
.sdg4 { background: #c5192d; }
.sdg5 { background: #ff3a21; }
.sdg6 { background: #26bde2; }
.sdg7 { background: #fcc30b; color: #222; }
.sdg10 { background: #e01483; }
.sdg11 { background: #fd6925; }
.sdg13 { background: #3f7e44; }
.sdg15 { background: #56c02b; }
.sdg17 { background: #19486a; }
@media (max-width: 1200px) {
  .sdg-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 4vw 0 4vw;
  }
  .sdg-grid {
    justify-content: flex-start;
    margin-top: 24px;
  }
}
@media (max-width: 900px) {
  .sdg-container {
    padding: 32px 2vw 0 2vw;
    gap: 24px;
  }
  .sdg-text h2 {
    font-size: 2rem;
  }
  .sdg-grid {
    margin-top: 24px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .sdg-card {
    font-size: 1rem;
    min-width: 0;
    min-height: 0;
    padding: 10px 4px 6px 4px;
  }
  .sdg-num {
    font-size: 1.2rem;
  }
  .sdg-title {
    font-size: 0.98rem;
  }
}
.clients-section {
  background: #f7f8fa;
  width: 100%;
  padding: 0 0 48px 0;
}
.clients-header {
  text-align: center;
  padding: 48px 0 24px 0;
}
.clients-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #18181b;
}
.clients-header p {
  color: #636a7c;
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 700px;
}
.clients-carousel-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 16px;
}
.clients-carousel {
  display: flex;
  gap: 32px;
  align-items: center;
  transition: none;
  will-change: transform;
}
.client-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 24px 32px;
  min-width: 180px;
  min-height: 120px;
  max-width: 200px;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.client-card img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .client-card {
    min-width: 140px;
    max-width: 180px;
    padding: 20px 16px;
  }
  .clients-carousel {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .clients-header h2 {
    font-size: 2rem;
  }
  .client-card {
    min-width: 110px;
    max-width: 120px;
    min-height: 80px;
    max-height: 80px;
    padding: 10px 4px;
  }
  .clients-carousel {
    gap: 10px;
  }
  .client-card img {
    max-width: 90px;
    max-height: 50px;
  }
}
.why-section {
  background: #e5e7eb;
  width: 100%;
  padding: 0 0 48px 0;
}
.why-header {
  text-align: center;
  padding: 48px 0 24px 0;
}
.why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #18181b;
}
.why-header p {
  color: #444;
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 700px;
}
.why-cards {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 40px 32px 32px 32px;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 40px;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(30,201,107,0.10);
  transform: translateY(-4px) scale(1.02);
}
.why-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title {
  color: #d32f2f;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-desc {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.5;
}
.why-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.why-btn {
  background: #d32f2f;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 16px 48px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30,201,107,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.why-btn:hover {
  background: #13b856;
  box-shadow: 0 8px 32px rgba(30,201,107,0.18);
}
@media (max-width: 1200px) {
  .why-cards {
    gap: 28px;
  }
  .why-card {
    min-width: 220px;
    max-width: 98vw;
    padding: 32px 14px 24px 14px;
    margin-bottom: 32px;
  }
}
@media (max-width: 900px) {
  .why-header h2 {
    font-size: 2rem;
  }
  .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .why-btn {
    font-size: 1rem;
    padding: 12px 32px;
  }
}
@media (max-width: 600px) {
  .why-header {
    padding: 32px 0 18px 0;
  }
  .why-card {
    min-width: 0;
    max-width: 320px;
    width: 90vw;
    padding: 24px 12px 24px 12px;
    border-radius: 18px;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-cards {
    gap: 24px;
  }
  .why-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}
.footer-section {
  background: #ef6c00;
  color: #fff;
  width: 100%;
  padding: 0;
  font-size: 1.08rem;
  margin-top: 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1700px;
  margin: 0 auto;
  padding: 48px 5vw 24px 5vw;
  flex-wrap: wrap;
}
.footer-col, .footer-col1, .footer-col2, .footer-col3 {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 420px;
  margin-bottom: 24px;
  text-align: left !important;
  align-items: flex-start !important;
  display: flex;
  flex-direction: column;
}
.footer-col3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 18px;
  display: block;
}
.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  text-align: left;
}
.footer-address, .footer-contact {
  margin-bottom: 18px;
  text-align: left;
}
.footer-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.5;
  justify-content: flex-start;
}
.footer-icon {
  font-size: 1.2em;
  margin-top: 2px;
  min-width: 1.2em;
  text-align: center;
  opacity: 0.8;
}
.footer-nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-align: left;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--primary-orange);
}
.footer-map-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
.footer-map {
  width: 100%;
  height: 120px;
  border: none;
  border-radius: 12px;
  display: block;
}
.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 8px;
  width: 100%;
  justify-content: flex-start;
}
.footer-newsletter input[type="email"] {
  flex: 1 1 0;
  padding: 12px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  outline: none;
}
.footer-newsletter button {
  background: var(--primary-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter button:hover {
  background: #b71c1c;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw 12px 5vw;
  font-size: 1rem;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-bottom-left {
  flex: 1 1 0;
  color: #fff;
  opacity: 0.9;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.footer-bottom-center {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-right {
  flex: 1 1 0;
  text-align: right;
  color: #fff;
  opacity: 0.9;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
}
.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 4vw 18px 4vw;
  }
  .footer-col, .footer-col1, .footer-col2, .footer-col3 {
    max-width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    padding: 18px 2vw 8px 2vw;
  }
  .footer-col, .footer-col1, .footer-col2, .footer-col3 {
    min-width: 0;
    max-width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .navbar {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .hamburger {
    width: 40px;
    height: 40px;
    display: flex !important;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  
  .mobile-nav a {
    font-size: 1.3rem;
  }
  
  .nav-links {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: #e2e8f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.hero-btn.primary {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
}

.hero-btn.primary:hover {
  background: #b71c1c;
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.3);
  transform: translateY(-2px);
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 80vh;
    padding: 100px 20px 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
}

.dropdown > a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
}

.dropdown > a:hover {
  color: var(--primary-orange);
  border-bottom: 2px solid var(--primary-orange);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b3c47;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10001;
  border-radius: 8px;
  padding: 8px 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  border-bottom: none;
  height: auto;
  align-items: flex-start;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--primary-orange);
}

/* Mobile dropdown styles */
.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown-content {
  display: none;
  background: rgba(255,255,255,0.1);
  padding: 10px 0;
  margin: 10px 0;
  border-radius: 8px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown-content a {
  font-size: 1.2rem;
  padding: 12px 24px;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-dropdown-content a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--primary-orange);
}

.mobile-dropdown > a {
  position: relative;
  padding-right: 30px;
}

.mobile-dropdown > a::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  transition: transform 0.3s;
}

.mobile-dropdown.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Gallery Section */
.gallery-section {
  background: #f7f8fa;
  padding: 80px 5vw;
  text-align: center;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
}

.gallery-item-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.gallery-item-info p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.gallery-btn {
  background: var(--primary-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 16px 48px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.gallery-btn:hover {
  background: #b71c1c;
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 4vw;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 36px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-item-info {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 16px;
  }
  
  .gallery-item-info h3 {
    font-size: 1.1rem;
  }
  
  .gallery-item-info p {
    font-size: 0.9rem;
  }
  
  .gallery-btn {
    font-size: 1rem;
    padding: 14px 36px;
  }
}

/* Updated color scheme */
:root {
  --primary-red: #d32f2f;
  --primary-orange: #ef6c00;
  --primary-red-light: rgba(211, 47, 47, 0.1);
  --primary-orange-light: rgba(239, 108, 0, 0.1);
}

.footer-bottom-right span {
  color: var(--primary-orange);
}

.dropdown > a:hover {
  color: var(--primary-orange);
  border-bottom: 2px solid var(--primary-orange);
}

.dropdown-content a:hover {
  color: var(--primary-orange);
}

.team-member-title {
  color: var(--primary-red);
}

.team-member-info h3 {
  color: var(--primary-red);
}

/* Specific styles for the founder page */
.founder-section {
  padding: 120px 5vw 80px 5vw;
  background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
  color: #222;
}
.founder-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stack elements on small screens */
  align-items: center;
  gap: 40px;
}
.founder-image-wrapper {
  flex-shrink: 0;
  width: 250px; /* Adjust size as needed */
  height: 250px; /* Adjust size as needed */
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--primary-red); /* Use primary color from theme */
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-details {
  flex-grow: 1;
  text-align: left;
  padding-bottom: 0 !important;
}
.founder-details > :last-child {
  margin-bottom: 0 !important;
}
.founder-details h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-orange); /* Use secondary color from theme */
}
.founder-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}
.founder-details p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Desktop layout */
@media (min-width: 769px) {
    .founder-container {
        flex-direction: row; /* Arrange side-by-side on larger screens */
        align-items: flex-start; /* Align items to the top */
        text-align: left; /* Align text to the left */
    }
    .founder-image-wrapper {
        margin-right: 40px; /* Add space between image and text */
         margin-left: 0; /* Reset margin */
    }
     .founder-details {
        text-align: left; /* Align text to the left */
    }
     .founder-details h2, .founder-details h3 {
        text-align: left; /* Align headings to the left */
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
     .founder-section {
        padding: 100px 4vw 60px 4vw;
    }
    .founder-container {
        gap: 30px;
    }
    .founder-image-wrapper {
        width: 220px;
        height: 220px;
        border-width: 7px;
    }
    .founder-details {
        padding-bottom: 0 !important;
    }
    .founder-details h2 {
        font-size: 2.4rem;
    }
     .founder-details h3 {
        font-size: 1.4rem;
    }
    .founder-details p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 100px 4vw 60px 4vw;
    }
    .founder-container {
        gap: 30px;
    }
    .founder-image-wrapper {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }
    .founder-details {
        padding-bottom: 0 !important;
    }
    .founder-details h2 {
        font-size: 2.2rem;
    }
     .founder-details h3 {
        font-size: 1.3rem;
    }
    .founder-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 80px 3vw 40px 3vw;
    }
     .founder-container {
        gap: 20px;
    }
    .founder-image-wrapper {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    .founder-details {
        padding-bottom: 0 !important;
    }
    .founder-details h2 {
        font-size: 1.8rem;
    }
    .founder-details h3 {
        font-size: 1.1rem;
    }
    .founder-details p {
        font-size: 0.95rem;
    }
}

/* Gallery Header */
.gallery-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/gallery/header-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 24px 80px 24px;
  margin-top: 0;
}

.gallery-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.gallery-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Gallery Category Sections */
.gallery-category {
  padding: 64px 5vw;
  background: #f7f8fa;
}

.gallery-category:nth-child(even) {
  background: #fff;
}

.gallery-category-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-category-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 12px;
}

.gallery-category-header p {
  color: #636a7c;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Hidden Images */
.gallery-grid img.hidden {
  display: none;
}

/* See All Button */
.see-all-btn {
  background: var(--primary-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background 0.2s, box-shadow 0.2s;
}

.see-all-btn:hover {
  background: #b71c1c;
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.18);
}

/* Gallery Responsive Design */
@media (max-width: 1200px) {
  .gallery-category {
    padding: 48px 4vw;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    height: 240px;
  }
}

@media (max-width: 900px) {
  .gallery-header {
    padding: 100px 20px 60px 20px;
  }
  
  .gallery-header h1 {
    font-size: 2.8rem;
  }
  
  .gallery-category-header h2 {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  
  .gallery-grid img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-header {
    padding: 80px 16px 40px 16px;
  }
  
  .gallery-header h1 {
    font-size: 2.2rem;
  }
  
  .gallery-header p {
    font-size: 1.1rem;
  }
  
  .gallery-category {
    padding: 32px 3vw;
  }
  
  .gallery-category-header h2 {
    font-size: 1.8rem;
  }
  
  .gallery-category-header p {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .gallery-grid img {
    height: 150px;
    border-radius: 8px;
  }
  
  .see-all-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Gallery Item Styles */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.gallery-item-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Gallery Grid Responsive */
@media (max-width: 1200px) {
    .gallery-item img {
        height: 240px;
    }
}

@media (max-width: 900px) {
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-item-info {
        padding: 15px;
    }
    
    .gallery-item-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .gallery-item img {
        height: 150px;
    }
    
    .gallery-item-info {
        padding: 10px;
    }
    
    .gallery-item-info h3 {
        font-size: 1rem;
    }
    
    .gallery-item-info p {
        font-size: 0.8rem;
    }
}

.footer-col.footer-col1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-col.footer-col1 .footer-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.footer-col.footer-col1 .footer-title {
  text-align: left;
  margin-bottom: 18px;
}

.footer-col.footer-col1 .footer-address,
.footer-col.footer-col1 .footer-contact {
  text-align: left;
  margin-bottom: 18px;
}

.footer-col.footer-col1 .footer-icon-row {
  justify-content: flex-start;
}

/* Donation Page Animations */
.donate-info, .qr-code {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.donate-info.animate, .qr-code.animate {
  opacity: 1;
  transform: translateY(0);
}

.impact-card:nth-child(2) {
  transition-delay: 0.2s;
}

.impact-card:nth-child(3) {
  transition-delay: 0.4s;
}

/* Secure Payment Badge */
.secure-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #666;
  margin-top: 16px;
}

.secure-text i {
  color: #28a745;
}

/* Donation Method Hover Effects */
.donation-method {
  position: relative;
  overflow: hidden;
}

.donation-method::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.donation-method:hover::after {
  transform: translateX(100%);
}

/* Impact Card Hover Effects */
.impact-card {
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.impact-card:hover::before {
  transform: scaleX(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .donation-method, .impact-card {
    transform: none !important;
  }
  
  .donation-method:hover, .impact-card:hover {
    transform: translateY(-4px) !important;
  }
}

/* Modern SVG background for founder section */
.founder-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.founder-section {
  position: relative;
  overflow: visible;
}

/* Glassmorphism effect for founder details */
.glass-card {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Decorative wave divider */
.wave-divider {
  width: 100%;
  margin-top: 40px;
  line-height: 0;
  position: relative;
  z-index: 2;
}

/* Founder badge */
.founder-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #d32f2f 60%, #ef6c00 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(211,47,47,0.08);
  letter-spacing: 1px;
  animation: badgeFadeIn 1.2s ease;
}
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animated underline for founder name */
.founder-name-animated {
  display: inline-block;
  position: relative;
}
.founder-name-animated::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32f2f, #ef6c00);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(.77,0,.18,1);
  position: absolute;
  left: 0;
  bottom: -6px;
}
.founder-name-animated:hover::after {
  width: 100%;
}

/* Achievement icons */
.achievement-icon {
  font-size: 2.2rem;
  color: #d32f2f;
  margin-bottom: 10px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.achievement-card:hover .achievement-icon {
  transform: scale(1.2) rotate(-8deg);
  color: #ef6c00;
}

/* Animated numbers */
.achievement-number {
  font-size: 2rem;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

/* Scroll to top button */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  background: linear-gradient(135deg, #d32f2f 60%, #ef6c00 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(211,47,47,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #ef6c00 60%, #d32f2f 100%);
  transform: scale(1.08);
}

/* Responsive improvements */
@media (max-width: 1200px) {
  .founder-svg-bg svg { width: 350px; height: 350px; }
}
@media (max-width: 768px) {
  .founder-svg-bg svg { width: 200px; height: 200px; }
  .wave-divider { margin-top: 20px; }
}
@media (max-width: 480px) {
  .founder-svg-bg svg { width: 120px; height: 120px; }
  .founder-badge { font-size: 0.85rem; padding: 4px 12px; }
}

/* Modern Founder Details Section */
.founder-details-section {
  width: 100%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  z-index: 2;
  position: relative;
}
.founder-bio-card {
  padding: 32px 28px 24px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
}
.bio-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.bio-icon {
  font-size: 2rem;
  color: var(--primary-red);
}
.bio-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-red);
}
.founder-bio-card p {
  font-size: 1.08rem;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.7;
}
.founder-impact-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.impact-block {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(211,47,47,0.06);
  padding: 24px 20px 18px 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0;
}
.impact-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-top: 4px;
}
.impact-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 4px;
  display: block;
}
.impact-block p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}
.founder-quote-block {
  background: linear-gradient(90deg, #d32f2f 60%, #ef6c00 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px 24px 24px 60px;
  font-size: 1.25rem;
  font-style: italic;
  position: relative;
  box-shadow: 0 4px 24px rgba(211,47,47,0.08);
  margin: 0 auto;
  max-width: 900px;
}
.quote-icon {
  position: absolute;
  left: 18px;
  top: 24px;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}
.founder-quote-block blockquote {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-style: italic;
  border: none;
  background: none;
}
.founder-badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 0 2px;
}
.founder-badge-chip {
  background: #fff;
  color: var(--primary-red);
  border-radius: 16px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(211,47,47,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
}
.founder-badge-chip i {
  color: var(--primary-orange);
  font-size: 1.1rem;
}
.founder-badge-chip:hover {
  background: var(--primary-orange);
  color: #fff;
}
.founder-legacy-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.legacy-block {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(211,47,47,0.06);
  padding: 24px 20px 18px 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0;
}
.legacy-icon {
  font-size: 2rem;
  color: var(--primary-red);
  margin-top: 4px;
}
.legacy-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 4px;
  display: block;
}
.legacy-block p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design for Founder Details Section */
@media (max-width: 900px) {
  .founder-details-section {
    gap: 24px;
  }
  .founder-bio-card {
    padding: 24px 12px 18px 12px;
  }
  .founder-impact-row, .founder-legacy-row {
    flex-direction: column;
    gap: 18px;
  }
  .impact-block, .legacy-block {
    padding: 18px 10px 12px 10px;
    min-width: 0;
  }
  .founder-quote-block {
    padding: 24px 12px 18px 40px;
    font-size: 1.1rem;
    max-width: 100%;
  }
  .quote-icon {
    left: 8px;
    top: 14px;
    font-size: 2rem;
  }
  .founder-badges-row {
    gap: 10px;
  }
  .founder-badge-chip {
    font-size: 0.95rem;
    padding: 7px 12px;
  }
}
@media (max-width: 600px) {
  .founder-details-section {
    gap: 16px;
  }
  .founder-bio-card {
    padding: 14px 4px 10px 4px;
    font-size: 0.98rem;
  }
  .founder-quote-block {
    padding: 14px 4px 10px 28px;
    font-size: 1rem;
  }
  .quote-icon {
    left: 2px;
    top: 8px;
    font-size: 1.3rem;
  }
  .founder-badges-row {
    gap: 6px;
  }
  .founder-badge-chip {
    font-size: 0.9rem;
    padding: 5px 8px;
  }
}