* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f9fa;
  line-height: 1.6;
  font-size: 16px;
}



/* Spinner */
.spinner {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.spinner.hidden {
  display: none;
}
.loader {
  width: 28px;
  height: 28px;
  border: 3px solid #ddd;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Message Box */
.success-box {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 6px;
  background: #e9fbe9;
  color: #1b6b1b;
  border: 1px solid #b7e5b7;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.success-box.show {
  opacity: 1;
}
.success-box.error {
  background: #ffe9e9;
  color: #b30000;
  border-color: #f5b7b7;
}
.success-box.fade {
  opacity: 0;
}

/* Spinner End */

/* Success Message Start */

.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}
.success-message.show {
  opacity: 1;
  transform: translateY(0);
}
.success-message .success-icon {
  font-size: 28px;
  margin-bottom: 6px;
  text-align: center;
}
/* Success Message Start here */

:root {
  --primary-color: #10b981;
  --primary-color-1: #02462e;
  --snow-white: #fffafa;
--primary-gradient: linear-gradient(
    90deg,
    rgba(16, 185, 129, 1) 0%,
    rgba(87, 199, 133, 1) 100%
  );
  --ghost-white: #f8f8ff;
  
  
  --main-bg-color: #daf2e5;
  
  --shadow-light: rgba(0, 0, 0, 0.08);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --border-radius: 16px;
  --card-background: rgba(255, 255, 255, 0.95);
  
  --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --secondary-gradient: linear-gradient(
    90deg,
    rgba(16, 185, 117, 0.74) 0%,
    rgba(87, 199, 133, 0.68) 67%,
    rgba(255, 250, 250, 0.84) 100%
  );
  --text-dark: #2c3e50;
  --text-medium: #34495e;
  --text-light: #7f8c8d;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 20px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.font-roboto {
  font-family: "Roboto", sans-serif;
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}



h2,
p,
h4,
a,
em,
li,
blockquote {
  font-family: "Roboto";
}
.navbar {
  background-color: var(--snow-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 150px;
  flex-shrink: 0;
  padding: 6px 0 0 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #059669;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--snow-white);
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-clip {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 0.375rem;
  margin: 0.25rem;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
  color: #059669;
}

.donate-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.donate-btn:hover {
  background-color: var(--primary-color-1);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #374151;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.statistics-section {
  min-height: 80vh;
  background: var(--primary-gradient);
  padding: 6rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 119, 198, 0.2) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatUp 15s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 80%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 50%;
  animation-delay: 4s;
}

.shape:nth-child(4) {
  width: 40px;
  height: 40px;
  left: 30%;
  animation-delay: 6s;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.section-title {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 60px;
  position: relative;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--ghost-white);
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--snow-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-card:nth-child(1) {
  transition-delay: 0.1s;
}
.stat-card:nth-child(1)::before {
  background: var(--accent-gradient);
}

.stat-card:nth-child(2) {
  transition-delay: 0.2s;
}
.stat-card:nth-child(2)::before {
  background: var(--success-gradient);
}

.stat-card:nth-child(3) {
  transition-delay: 0.3s;
}
.stat-card:nth-child(3)::before {
  background: var(--secondary-gradient);
}

.stat-card:nth-child(4) {
  transition-delay: 0.4s;
}
.stat-card:nth-child(4)::before {
  background: var(--primary-gradient);
}

.stat-card:nth-child(2) .stat-icon {
  color: #ff0000;
}
.stat-card:nth-child(3) .stat-icon {
  color: #fff000;
}
.stat-card:nth-child(4) .stat-icon {
  color: #ff00ff;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0e0478;
  /* background: #ff0000; */
  background-clip: text;
  display: inline-block;
  transform: scale(1);
  transition: var(--transition-bounce);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: #999;
  margin-top: 4px;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.5;
}

#helpSection {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}







#footerCopyright {
  width: 100%;
  background-color: var(--main-bg-color);
  padding: 10px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}

#footerCopyright p {
  margin: 0;
  line-height: 1.4;
}

.foundation-section {
  max-width: 1200px;
  margin: 100px auto;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.08);
  border-left: 6px solid var(--primary-color);
  /* overflow: hidden; */
  backdrop-filter: blur(20px);
  animation: slideUp 0.8s ease-out;
}

.content-wrapper {
  padding: 3rem 2.5rem;
  position: relative;
}

.foundation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  animation: fadeInDown 1s ease-out 0.3s both;
}


.paragraph {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1rem;
  text-align: justify;
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.3s ease, color 0.3s ease;
}

.paragraph:nth-child(2) {
  animation-delay: 0.2s;
}

.paragraph:nth-child(3) {
  animation-delay: 0.4s;
}

.paragraph:nth-child(4) {
  animation-delay: 0.6s;
}

.paragraph:hover {
  transform: translateX(8px);
  color: #334155;
}

.paragraph:hover .highlight::before {
  transform: scaleX(1);
}

.highlight {
  position: relative;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(52, 211, 153, 0.25) 50%,
    transparent 100%
  );
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 500;
  color: #065f46;
  transition: all 0.3s ease;
}

.highlight::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.highlight:hover {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(52, 211, 153, 0.4) 50%,
    transparent 100%
  );
}

.cta-section {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(
    290deg,
    rgba(196, 255, 231, 0.74) 0%,
    rgba(163, 209, 182, 0.68) 13%,
    rgba(255, 250, 250, 0.84) 100%
  );
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(168, 139, 250, 0.2);
  animation: fadeIn 1s ease-out 0.8s both;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.join-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 139, 250, 0.3);
}

.join-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 250, 150, 0.4);
  background: var(--primary-color-1);
}

/* Mission & Vision Section */

.card-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2rem;
  position: relative;
  /* display: inline-block; */
  line-height: 1.3;
  text-align: center;
}

.card-content {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
}

.mission-vision-section {
  z-index: 1;
  clear: both;
  display: block;
  width: 100%;
  margin: 2rem 0;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.card {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 20px 20px 0 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-card::before {
  background: var(--primary-gradient);
}

.vision-card::before {
  background: linear-gradient(90deg, #4ade80, #22c55e, #16a34a);
}

.mission-card .card-icon {
  color: #26c6da;
}

.vision-card .card-icon {
  color: #22c55e;
}

.card:hover .card-icon {
  opacity: 0.2;
  transform: scale(1.1);
}

.fade-in-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-card.mission-card {
  animation-delay: 0.2s;
}

.fade-in-card.vision-card {
  animation-delay: 0.4s;
}

.card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(77, 208, 225, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.vision-card::after {
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.05) 0%,
    transparent 70%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card-content {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
  padding: 25px;
}

.medical-section {
  display: flex;
  min-height: 500px;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 16px;
}

.image-column {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.medical-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.content-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.headline {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
}

.red-underline {
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  margin-bottom: 24px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.explore-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: var(--primary-color-1);
}

.explore-link::after {
  content: " ›";
  margin-left: 4px;
  font-size: 1.2rem;
}

.form-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background: var(--primary-gradient);
  color: white;
  padding: 30px;
  text-align: center;
}

.form-title {
  color: white;
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.progress-container {
  padding: 30px;
  background: #f8f9fa;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #e9ecef;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: translateY(-50%);
  transition: width 0.3s ease;
  z-index: 2;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.1);
}

.step-indicator.completed {
  background: #28a745;
  color: white;
}

.step-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.step-label {
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.step-label.active {
  color: var(--primary-color);
  font-weight: 600;
}

.form-content {
  padding: 40px;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

.section-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c2c2c;
  font-size: 1rem;
}

.radio-option label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.radio-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.radio-item:hover {
  border-color: var(--primary-color-1);
  background: #f8f9ff;
}

.radio-item input[type="radio"] {
  width: auto;
  margin-right: 10px;
  accent-color: var(--primary-color);
}

.radio-item input[type="radio"]:checked + label {
  color: var(--primary-color);
  font-weight: 600;
}

.radio-item:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  background: #f8f9ff;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-color-1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.btn-submit {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #218838, #1da589);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #28a745;
  stroke-miterlimit: 10;
  margin: 20px auto;
  box-shadow: inset 0px 0px 0px #28a745;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}

.success-checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #28a745;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.faq-section {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 50px;
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2d8f47;
  border-radius: 2px;
}

.faq-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #f1f5fb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e8f1fa;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  flex: 1;
  margin-right: 20px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toggle-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  color: #2d8f47;
}

.toggle-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.toggle-button:focus {
  outline: 3px solid rgba(45, 143, 71, 0.3);
  outline-offset: 2px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.expanded {
  max-height: 300px;
  padding: 0 24px 24px 24px;
}

.answer-content {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 4px;
}

.faq-item.active .toggle-button {
  background-color: #2d8f47;
  color: white;
  transform: rotate(180deg);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.radio-group,
.amount-options {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.radio-option,
.amount-option {
  flex: 1;
  padding: 13px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.error-message {
  color: gray;
  font-size: 0.8rem;
}

.radio-option:hover,
.amount-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.radio-option.selected,
.amount-option.selected {
  border-color: var(--primary-color);
  background: #f8f9ff;
}

.radio-option input,
.amount-option input {
  display: none;
}

.radio-option label,
.amount-option label {
  cursor: pointer;
  font-weight: 500;
  color: #333;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label.required::after {
  content: " *";
  color: #e74c3c;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
}

.custom-amount {
  display: none;
  margin-top: 20px;
}

.custom-amount.active {
  display: block;
}

.currency-input {
  position: relative;
  display: inline-block;
  width: 200px;
}

.currency-symbol {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #666;
}

.currency-input input {
  /* padding-left: 35px; */
  padding: 14px 16px;
  width: 100%;
}

.form-summary {
  background: #f8f9ff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0;
}

.summary-item:last-child {
  margin-bottom: 0;
  font-weight: bold;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  margin-top: 10px;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.support-channel {
  max-width: 1200px;
  margin: 50px auto;
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.channel-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 50px;
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card-ch-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-ch-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

#personal_info {
  padding: 12px 14px;
}

.form-row .form-group input {
  padding: 10px 12px;
}

.contact-label {
  font-weight: bold;
  min-width: 100px;
  margin-right: 20px;
  color: #000;
  font-size: 1rem;
}

.contact-value {
  flex: 1;
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
  perspective: 1000px;
  height: 450px;
  margin-bottom: 40px;
}
.contact-value a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--primary-color-1);
  text-decoration: underline;
}

.map-container {
  width: 100%;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
  width: 100%;
}

.required::after {
  content: " *";
  color: #e74c3c;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  line-height: 1.5;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 15px;
}

.submit-button:focus {
  outline: 3px solid rgba(46, 204, 113, 0.3);
  outline-offset: 2px;
}

.section-container {
  max-width: 1200px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.smart-glasses-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.content-paragraph {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: justify;
  line-height: 1.7;
}

.blue {
  font-size: 1.1rem;
  color: #475569;
}

.blockquote {
  background-color: #f7f7f7;
  border-left: 4px solid #2bb5a0;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
}

.closing-text {
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 40px;
  color: #555;
}

.section-container::after {
  content: "";
  display: table;
  clear: both;
}

.impact-section {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 30px 0;
  border-radius: 16px;
  background-color: var(--main-bg-color);
}

.impact-card .card-content {
  padding: 10px;
  line-height: 1.4;
}

.impact-card .card-content h3 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.impact-card .card-content p {
  font-size: 0.9rem;
  text-align: justify;
}

.impact-card {
  position: absolute;
  width: 320px;
  height: 380px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-card.center {
  transform: translateX(0) scale(1.1) rotateY(0deg);
  z-index: 3;
  opacity: 1;
}

.impact-card.left {
  transform: translateX(-350px) scale(0.9) rotateY(25deg);
  z-index: 2;
  opacity: 0.7;
}

.impact-card.right {
  transform: translateX(350px) scale(0.9) rotateY(-25deg);
  z-index: 2;
  opacity: 0.7;
}

.impact-card.hidden {
  transform: translateX(0) scale(0.8);
  opacity: 0;
  z-index: 1;
}

.impact-card .card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.carousel-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.nav-btn {
  background: #008060;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 128, 96, 0.3);
}

.nav-btn:hover {
  background: #006b52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 96, 0.4);
}

.nav-btn:active {
  transform: translateY(0);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Animations */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


html {
  scroll-behavior: smooth;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* Media Queries For Website responsive */
@media (max-width: 1050px) {
  .instagram-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .smart-glasses-image {
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .news-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .causes-part {
    padding: 0 15px 20px;
  }
  .causes-grid {
    gap: 28px;
    margin: 40px auto;
  }
  .gallery-title {
    font-size: 2.5rem;
  }
  .gallery-image {
    height: 220px;
  }
  .gallery-item:nth-child(4) .gallery-image,
  .gallery-item:nth-child(5) .gallery-image {
    height: 280px;
  }
  .content-layout,
  .content-layout.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .content-layout .image-container,
  .content-layout.reverse .image-container,
  .content-layout .text-content,
  .content-layout.reverse .text-content {
    order: unset;
  }
  .subsection-title,
  .content-layout.reverse .subsection-title {
    text-align: center;
    padding-left: 25px;
    padding-right: 0;
  }
  .content-layout.reverse .subsection-title::before {
    left: 0;
    right: auto;
  }
  .subsection-description {
    text-align: left;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .testimonial-card {
    padding: 35px;
    gap: 35px;
  }
}

@media (max-width: 1023px) {
  .hero-clip {
    clip-path: none;
  }
}

@media (max-width: 992px) {
  .causes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .part-title {
    font-size: 2.5rem;
  }

  .part-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .support-channel {
    padding: 40px 30px;
  }

  .channel-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .cards-grid {
    gap: 25px;
  }

  .card {
    padding: 25px 20px;
  }

  .card-ch-title {
    font-size: 1.3rem;
  }

  .address-section {
    padding: 40px 30px;
  }

  .address-container {
    gap: 40px;
  }

  .add-title {
    font-size: 2.2rem;
  }

  .contact-details {
    padding-right: 0;
  }

  .map-iframe {
    height: 350px;
  }
}

@media (max-width: 968px) {
  .highlightCard {
    flex: 0 0 100%;
  }

  .str-header h2 {
    font-size: 2.5rem;
  }

  .card-content {
    padding: 22px;
    font-size: 1.05rem;
  }

  .highlightArrow {
    width: 45px;
    height: 45px;
  }

  .highlightArrow.prev {
    left: -22px;
  }

  .highlightArrow.next {
    right: -22px;
  }

  .help-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .helpTitle {
    font-size: 2.5rem;
  }

  .card-image {
    height: 200px;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .card {
    padding: 2.5rem 2rem;
  }

  .card-title {
    font-size: 2.2rem;
  }
}

@media (max-width:820px){
  .donate-btn{
      padding: 0.25rem 0.5rem;
      font-size: 14px;
  }
}

@media (min-width: 768px) {
  .smart-glasses-image {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 350px;
  }

  .headline {
    font-size: 2.5rem;
  }

  .section-container {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* Navigation Styles */
  .navbar {
    padding: 0 1rem;
  }

  .logo-icon {
    width: 90px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9fafb;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.dropdown-open .dropdown {
    max-height: 300px;
  }

  .dropdown-item {
    padding: 0.75rem 2rem;
    margin: 0;
    border-radius: 0;
  }

  .donate-btn {
    margin: 1rem;
    display: block;
    text-align: center;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  /* Hero Section Styles */
  .hero-section {
    min-height: 100vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 2rem;
  }

  .hero-actions {
    gap: 1.25rem;
  }

  /* News Section Styles */
  .news-section {
    padding: 4rem 1.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .news-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }

  /* Ideology Section Styles */
  .ideology-section {
    padding: 4rem 1.5rem;
  }

  .ideology-card {
    padding: 2rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .principle-item {
    padding: 1.5rem;
  }

  /* Statistics Section Styles */
  .statistics-section {
    padding: 4rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 2rem auto 0;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  /* Causes Section Styles */
  .causes-part {
    margin: 30px auto;
    padding: 0 15px 15px;
  }

  .causes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
  }

  .part-title {
    font-size: 2rem;
  }

  .part-subtitle {
    font-size: 1.1rem;
  }

  .letter-content {
    padding: 24px;
  }

  .part-header {
    margin-bottom: 30px;
  }

  /* Principles Section Styles */
  .principles-section {
    padding: 80px 15px;
  }

  .principles-title {
    font-size: 2.8rem;
  }

  .principles-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .principles-button {
    padding: 12px 35px;
    font-size: 0.9rem;
  }

  /* Stories Highlights Section Styles */
  #storiesHighlightsstr {
    padding: 80px 15px;
  }

  .str-header h2 {
    font-size: 2.2rem;
  }

  .str-header {
    margin-bottom: 40px;
  }

  .carousel-track {
    gap: 20px;
  }

  .highlightArrow {
    width: 40px;
    height: 40px;
  }

  .highlightArrow.prev {
    left: -20px;
  }

  .highlightArrow.next {
    right: -20px;
  }

  .highlightArrow::after {
    width: 10px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  /* Help Section Styles */
  #helpSection {
    padding: 80px 15px;
  }

  .help-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .helpTitle {
    font-size: 2.2rem;
  }

  .help-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .help-header {
    margin-bottom: 50px;
  }

  .card-description {
    font-size: 0.9rem;
  }

  /* Gallery Section Styles */
  .gallery-grid {
    grid-template-areas: "img1 img2" "img3 img4" "img5 img6" "img7 img8";
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .gallery-image {
    height: 200px;
  }

  .gallery-item:nth-child(4) .gallery-image,
  .gallery-item:nth-child(5) .gallery-image {
    height: 200px;
  }


  .newsletter-section h3 {
    font-size: 1.2rem;
  }

  #footerCopyright {
    padding: 12px 15px;
    font-size: 13px;
  }

  /* Content Wrapper Styles */
  .content-wrapper {
    padding: 2rem 1.5rem;
  }

  .foundation-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .paragraph {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .paragraph:hover {
    transform: none;
  }

  .cta-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .decorative-element {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }

  /* Main Title and Subsections */
  .main-title {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }

  .subsections-wrapper {
    gap: 3rem;
  }

  .subsection-card {
    padding: 2.5rem;
    border-radius: 20px;
  }

  .subsection-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .subsection-description {
    font-size: 1rem;
  }

  .subsection-image {
    height: 280px;
  }

  /* Generic Card Styles - Consolidated all card-related duplicates */
  .card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .card-image {
    height: 200px; /* Default from news section, overridden by help section to 180px */
  }

  #helpSection .card-image {
    height: 180px;
  }

  .card-content {
    padding: 1.25rem; /* Default from news section, overridden by other sections to 20px */
  }

  #storiesHighlightsstr .card-content,
  #helpSection .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 2rem; /* Default for main cards */
    margin-bottom: 1.5rem;
  }

  .news-section .card-title {
    font-size: 1.15rem;
  }

  #storiesHighlightsstr .card-title,
  #helpSection .card-title {
    font-size: 1.3rem;
  }

  .card-title::after {
    width: 60px;
    height: 3px;
  }

  .card-icon {
    font-size: 2.5rem; /* Default */
    top: 1.5rem;
    right: 1.5rem;
  }

  /* Team Section Styles */
  .executive-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-card {
    max-width: 100%;
    padding: 25px 20px;
  }

  .profile-img img {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .member-name {
    font-size: 1.2rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  /* Testimonials Section Styles */
  .testimonials-section {
    padding: 80px 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .navigation-dots {
    align-self: flex-end;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    text-align: center;
  }

  .testimonial-image {
    justify-self: center;
    width: 100px;
    height: 100px;
  }

  .quote-icon {
    position: static;
    margin-bottom: 15px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
  }

  /* Medical Section Styles */
  .medical-section {
    flex-direction: column;
    min-height: auto;
  }

  .image-column {
    min-height: 300px;
    order: 1;
  }

  .content-column {
    order: 2;
    padding: 40px 30px;
  }

  .headline {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  /* Form Styles - Consolidated all form-related duplicates */
  .form-row {
    grid-template-columns: 1fr; /* Default */
    flex-direction: column; /* For footer form */
    gap: 15px;
  }

  .radio-group {
    flex-direction: column;
  }

  .form-title {
    font-size: 2rem; /* Default, overridden by contact form */
  }

  .contact-form-container .form-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .form-content {
    padding: 20px;
  }

  .progress-container {
    padding: 20px;
  }

  .contact-form-container {
    padding: 35px 25px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  textarea {
    min-height: 120px;
  }

  .submit-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    margin-top: 25px;
  }

  /* FAQ Section Styles */
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 20px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .question-text {
    font-size: 1rem;
    margin-right: 15px;
  }

  .toggle-button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .faq-answer.expanded {
    padding: 0 20px 20px 20px;
  }

  /* Impact/Carousel Section Styles */
  .carousel-container {
    height: 400px;
    perspective: 800px;
  }

  .impact-card {
    width: 280px;
    height: 350px;
    padding: 30px 25px;
  }

  .impact-card.left {
    transform: translateX(-200px) scale(0.8) rotateY(35deg);
  }

  .impact-card.right {
    transform: translateX(200px) scale(0.8) rotateY(-35deg);
  }

  .impact-card .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .support-channel {
    padding: 30px 20px;
  }

  .channel-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
  }

  .card-ch-title {
    font-size: 1.25rem;
  }

  .card-ch-desc {
    font-size: 0.95rem;
  }

  .address-section {
    padding: 30px 20px;
  }

  .address-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .add-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-row {
    flex-direction: column;
    padding: 15px 0;
  }

  .contact-label {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .map-iframe {
    height: 300px;
  }

  .section-container {
    margin: 0 10px;
    padding: 15px;
  }

  .headline {
    font-size: 1.8rem;
  }

  .content-paragraph {
    font-size: 1rem;
  }

  .blockquote {
    padding: 15px 20px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }
  .hero-headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.2;
  }
  .hero-subheadline {
    font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    margin-bottom: 1.5rem;
  }
  .news-section {
    padding: 3rem 1rem;
  }
  .news-grid {
    max-width: 100%;
  }
  .news-title {
    font-size: 2rem;
  }
  .card-image {
    height: 180px;
  }
  .card-content {
    padding: 1rem;
  }
  .ideology-section {
    padding: 3rem 1rem;
  }
  .ideology-card {
    padding: 1.5rem;
  }
  .ideology-title {
    font-size: 2rem;
  }
  .principle-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .statistics-section {
    padding: 3rem 1rem;
  }
  .stat-card {
    padding: 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .causes-part {
    margin: 20px auto;
    padding: 0 10px 10px;
  }
  .causes-grid {
    gap: 16px;
    margin: 20px auto;
  }
  .part-title {
    font-size: 1.8rem;
  }
  .letter-title {
    font-size: 1.2rem;
  }
  .letter-description {
    font-size: 0.9rem;
  }
  .letter-content {
    padding: 20px;
  }
  .image-overlay {
    font-size: 1rem;
  }
  .principles-section {
    padding: 60px 10px;
  }
  .principles-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .principles-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 10px;
  }
  .principles-button {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
  .highlightArrow.prev {
    left: 5px;
  }
  .highlightArrow.next {
    right: 5px;
  }
  .str-header h2 {
    font-size: 1.9rem;
  }
  #helpSection {
    padding: 60px 10px;
  }
  .helpTitle {
    font-size: 1.9rem;
  }
  .help-underline {
    width: 50px;
    height: 3px;
  }
  #helpSection .card-content,
  .highlightArrow + * .card-content {
    padding: 18px;
  }
  .gallery-grid {
    grid-template-areas: "img1" "img2" "img3" "img4" "img5" "img6" "img7" "img8";
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-title {
    font-size: 1.8rem;
  }
  .gallery-image {
    height: 180px;
  }
  .gallery-item:nth-child(4) .gallery-image,
  .gallery-item:nth-child(5) .gallery-image {
    height: 180px;
  }
  #footerCopyright {
    padding: 12px 10px;
    font-size: 12px;
  }
  #footerCopyright p {
    line-height: 1.5;
  }
  .content-wrapper {
    padding: 1.5rem 1rem;
  }
  .foundation-title {
    font-size: 1.8rem;
  }
  .paragraph {
    font-size: 0.95rem;
  }
  .main-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .subsection-card {
    padding: 2rem;
  }
  .content-layout {
    gap: 2rem;
  }
  .subsection-title {
    font-size: 1.8rem;
  }
  .subsection-description {
    font-size: 0.95rem;
  }
  .subsection-image {
    height: 240px;
  }
  .cards-wrapper {
    gap: 2rem;
  }
  .card {
    padding: 1.8rem 1.2rem;
  }
  .card-title {
    font-size: 1.8rem;
  }
  .executive-title {
    font-size: 1.8rem;
  }
  .team-card {
    padding: 20px 15px;
  }
  .social-links {
    gap: 10px;
  }
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .testimonial-card {
    padding: 25px;
    gap: 25px;
  }
  .testimonial-image {
    width: 80px;
    height: 80px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .brand-info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .content-column {
    padding: 30px 20px;
  }
  .headline {
    font-size: 1.8rem;
  }
  .image-caption {
    font-size: 10px;
    padding: 6px 10px;
    bottom: 12px;
    left: 12px;
  }
  .instagram-section {
    grid-template-columns: 1fr;
  }
  .form-navigation {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
  }
  .faq-title {
    font-size: 1.8rem;
  }
  .faq-container {
    padding: 16px;
  }
  .faq-question {
    padding: 14px 16px;
  }
  .question-text {
    font-size: 0.95rem;
  }
  .toggle-button {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .faq-answer.expanded {
    padding: 0 16px 16px 16px;
  }
  .support-channel {
    padding: 25px 15px;
  }
  .channel-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .card-ch-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .card-ch-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .address-section {
    padding: 25px 15px;
  }
  .add-title {
    font-size: 1.8rem;
  }
  .address-section {
    width: 60px;
    margin-bottom: 20px;
  }
  .contact-row {
    padding: 12px 0;
  }
  .contact-label,
  .contact-value {
    font-size: 0.95rem;
  }
  .map-iframe {
    height: 280px;
  }
  .contact-form-container {
    padding: 25px 20px;
  }
  .form-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .form-group {
    margin-bottom: 18px;
  }
  label {
    font-size: 0.95rem;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  textarea {
    min-height: 100px;
  }
  .submit-button {
    padding: 16px 32px;
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .carousel-container {
    height: 380px;
  }
  .impact-card {
    width: 250px;
    height: 320px;
    padding: 25px 20px;
  }
  .impact-card.left,
  .impact-card.right {
    display: none;
  }
  .impact-card.center {
    transform: translateX(0) scale(1) rotateY(0deg);
  }
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .card-content h3 {
    font-size: 1.3rem;
  }
  .carousel-nav {
    gap: 15px;
  }
  .nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .card-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .support-channel .card {
    padding: 20px 15px;
  }
}

@media (hover: none) {
  .gallery-item:active {
    transform: scale(0.98);
  }
}
