/* Custom CSS for Healthcare Technology Solutions */

:root {
  --primary-color: #4f46e5;
  --secondary-color: #8b5cf6;
}

body {
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

body,
html {
  overflow-x: hidden;
  max-width: 100%;
}

.container-fluid {
  overflow-x: hidden;
}

.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.logo-img {
  height: 75px;
  width: auto;
  display: block;
  margin-left: -25px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  font-weight: 400;
}

.nav-link.active::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.125rem;
}

/* Donate Button */
.btn-donate {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: #ffffff;
}

.btn-donate.active {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Hero Section */
.hero-section {
  padding: 20px 0 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0;
  font-weight: 300;
}

.hero-image-wrapper {
  position: relative;
  padding: 80px 0;
}

.features-custom {
  background-color: #f0f7fd;
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin-top: 4rem;
}

.background-shape {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #f0f7fd;
  border-radius: 24px;
  z-index: 0;
}

.hero-image-wrapper .container {
  position: relative;
  z-index: 1;
}

.image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* margin: 20px; */
}

.image-container img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 30px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
  pointer-events: none;
  padding-right: 5rem;
}

.stat-box {
  background-image: linear-gradient(
    0deg,
    rgba(227, 205, 204, 0.41) 0,
    rgba(154, 191, 199, 0.41) 100%
  );
  backdrop-filter: blur(7.8px);
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #ffffff;
  display: block;
  line-height: 1.4;
}

.feature-section {
  z-index: 1;
}

.feature-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  /* padding: 4rem; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
  /* transition: all 0.3s ease; */
  /* border: 1px solid #E5E7EB; */
}

.feature-card:hover {
  /* transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.feature-icon.icon-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon.icon-secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon.icon-tertiary {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

h1 {
  font-weight: 400 !important;
}
/* Responsive Styles */

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-image-wrapper {
    padding: 60px 0;
  }

  .background-shape {
    width: 90%;
  }

  .image-container img {
    height: 400px;
  }

  .stat-box {
    padding: 20px 32px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar-nav {
    gap: 0.5rem !important;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .btn-donate {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  header.navbar {
    padding: 0.75rem 0;
  }

  .hero-section {
    padding: 40px 0 0;
  }

  .hero-image-wrapper {
    padding: 40px 0;
  }

  .background-shape {
    width: 95%;
    height: 90%;
  }

  .hero-title {
    font-size: 1.75rem;
    padding: 12px;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    padding: 12px;
  }

  .image-container img {
    height: 350px;
  }

  .stats-overlay {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
  }

  .stat-box {
    padding: 16px 24px;
    width: 100%;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575px) {
  .image-container img {
    /* height: 300px; */
    object-fit: fill;
  }
}

/* Five Orthopedic Facts Section */
.orthopedic-facts-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.facts-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.facts-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facts-content {
  padding-left: 2rem;
}

.facts-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.facts-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  text-align: justify;
  /* margin-bottom: 2.5rem; */
}

.research-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.research-list {
  list-style: none;
  padding: 12px;
  margin: 0;
}

.research-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4b5563;
  gap: 0.25rem;
}

.research-item i {
  font-size: 0.75rem;
  color: #93c5fd;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.research-item span {
  flex: 1;
  word-break: break-word;
}

.research-item:last-child {
  margin-bottom: 0;
}

/* Responsive Styles for Orthopedic Facts Section */
@media (max-width: 991px) {
  .facts-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .facts-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .orthopedic-facts-section {
    padding: 60px 0;
  }

  .facts-heading {
    font-size: 1.75rem;
    padding: 12px;
  }

  .facts-description {
    font-size: 0.9375rem;
    padding: 12px;
  }

  .research-title {
    font-size: 1.125rem;
    padding: 12px;
  }
}

/* Clinical Solutions Section */
.clinical-solutions-section {
  background-color: #144472;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.clinical-solutions-container {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  position: relative;
}

/* Left Fixed Content */
.clinical-left-content {
  flex: 0 0 45%;
  padding: 60px 80px 60px 120px;
  color: #ffffff;
  z-index: 10;
  position: relative;
}

.clinical-title {
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.clinical-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.clinical-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.clinical-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-size: 1rem;
}

.clinical-feature-item i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Right Sliding Cards */
.clinical-right-slider {
  flex: 1;
  position: relative;
  overflow: visible;
  padding: 60px 0;
}

.clinical-swiper {
  overflow: visible !important;
  padding-right: 120px;
}

.clinical-swiper .swiper-wrapper {
  align-items: stretch;
}

.clinical-swiper .swiper-slide {
  width: 450px;
  height: auto;
}

.clinical-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.clinical-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.clinical-card-number {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}

.clinical-card-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.clinical-card-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.clinical-card-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.clinical-card-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles for Clinical Solutions */
@media (max-width: 1400px) {
  .clinical-left-content {
    flex: 0 0 40%;
    padding: 60px 60px 60px 80px;
  }

  .clinical-swiper .swiper-slide {
    width: 400px;
  }
}

@media (max-width: 1199px) {
  .clinical-solutions-container {
    flex-direction: column;
  }

  .clinical-left-content {
    flex: 1;
    padding: 60px 40px;
  }

  .clinical-title {
    font-size: 2.5rem;
  }

  .clinical-right-slider {
    padding: 40px 0 60px;
  }

  .clinical-swiper {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .clinical-solutions-section {
    padding: 60px 0;
  }

  .clinical-left-content {
    padding: 40px 20px;
  }

  .clinical-title {
    font-size: 2rem;
  }

  .clinical-description {
    font-size: 0.9375rem;
  }

  .clinical-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .clinical-swiper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .clinical-swiper .swiper-slide {
    width: 320px;
  }

  .clinical-card {
    padding: 40px 30px;
  }

  .clinical-card-title {
    font-size: 1.5rem;
  }
}

/* News & Stories Section */
.news-stories-section {
  padding: 100px 0;
  background: #ffffff;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.news-header-left {
  flex: 1;
}

.news-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 3rem;
  font-weight: 400;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.news-read-all-btn {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #1f2937;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-read-all-btn:hover {
  background: #1f2937;
  color: #ffffff;
}

/* News Cards */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.news-card-content {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.news-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-tag-purple {
  background: #e9d5ff;
  color: #7c3aed;
}

.news-tag-green {
  background: #d1fae5;
  color: #059669;
}

.news-card-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 24px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #6b7280;
}

.news-author {
  font-weight: 400;
}

.news-date {
  position: relative;
  padding-left: 12px;
}

.news-date::before {
  /* content: "·"; */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive Styles for News Section */
@media (max-width: 991px) {
  .news-stories-section {
    padding: 80px 0;
  }

  .news-title {
    font-size: 2.5rem;
  }

  .news-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .news-card-image {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .news-stories-section {
    padding: 60px 0;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .news-title {
    font-size: 2rem;
  }

  .news-read-all-btn {
    padding: 14px 32px;
    font-size: 0.8125rem;
  }

  .news-card-image {
    height: 220px;
  }

  .news-card-content {
    padding: 24px 20px;
  }

  .news-card-title {
    font-size: 1.25rem;
  }
}

/* Volunteer Signup Section */
.volunteer-signup-section {
  background: #ffffff;
  overflow: hidden;
}

.volunteer-image-wrapper {
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.volunteer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volunteer-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: #fafafa;
  min-height: 600px;
}

.volunteer-form-content {
  max-width: 600px;
  width: 100%;
}

.volunteer-form-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.volunteer-form {
  width: 100%;
}

.volunteer-input,
.volunteer-textarea {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
}

.volunteer-input::placeholder,
.volunteer-textarea::placeholder {
  color: #9ca3af;
}

.volunteer-input:focus,
.volunteer-textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  outline: none;
}

.volunteer-textarea {
  resize: vertical;
  min-height: 150px;
}

.volunteer-submit-btn {
  background: transparent;
  border: 2px solid #1f2937;
  color: #1f2937;
  padding: 16px 50px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.volunteer-submit-btn:hover {
  background: #1f2937;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.volunteer-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Styles for Volunteer Section */
@media (max-width: 991px) {
  .volunteer-image-wrapper {
    min-height: 400px;
  }

  .volunteer-form-wrapper {
    padding: 60px 40px;
    min-height: auto;
  }

  .volunteer-form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .volunteer-image-wrapper {
    min-height: 300px;
  }

  .volunteer-form-wrapper {
    padding: 40px 20px;
  }

  .volunteer-form-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .volunteer-input,
  .volunteer-textarea {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }

  .volunteer-submit-btn {
    width: 100%;
    padding: 14px 40px;
  }
}

/* Footer Section */
.footer-section {
  background: #1a2c3a;
  padding: 80px 0 40px;
  color: #ffffff;
}

.footer-subscribe-title {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.footer-subscribe-form {
  margin-bottom: 3rem;
}

.footer-form-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-email-input {
  flex: 1;
  min-width: 250px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.footer-submit-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-submit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-copyright {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  text-align: left;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles for Footer */
@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-subscribe-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 50px 0 30px;
  }

  .footer-subscribe-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-form-group {
    flex-direction: column;
    gap: 12px;
  }

  .footer-email-input {
    min-width: 100%;
  }

  .footer-submit-btn {
    width: 100%;
  }

  .footer-social-icons {
    gap: 20px;
  }

  .footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
  }

  .footer-copyright-text {
    text-align: center;
  }
}

/* SECTION 2 */

/* About Us Page Styles */
.about-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7fd 0%, #ffffff 100%);
  text-align: center;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.our-mission-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4b5563;
  text-align: justify;
}

.our-values-section {
  padding: 70px 0;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 2rem;
}

.value-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.impact-numbers-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Our Advances Section with Curved Image */
.our-advances-section {
  padding: 100px 0;
  background: #ffffff;
}

.advances-image-wrapper {
  padding: 60px 80px 60px 0;
}

.advances-image-shape {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 0 300px 300px 0;
}

.advances-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advances-content {
  padding: 60px 80px 60px 100px;
  max-width: 700px;
}

.advances-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.advances-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.advances-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advances-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4b5563;
}

.advances-list-item i {
  font-size: 0.75rem;
  color: #93c5fd;
  margin-right: 1rem;
  flex-shrink: 0;
}

.advances-list-item:last-child {
  margin-bottom: 0;
}

.our-mission-section {
  /* background-color: #f8f9fa; */
}

.mission-tabs {
  border-bottom: 2px solid #ddd;
  display: flex;
  gap: 1rem;
}

.mission-tab {
  border: none;
  background: none;
  font-weight: 600;
  color: #555;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.mission-tab.active {
  color: #4f46e5;
  border-bottom-color: #4f46e5;
}

.mission-tab:hover {
  color: #4f46e5;
}

.tab-content-wrapper {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content-wrapper.active {
  display: block;
}

.mission-content-text p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
  padding: 12px;
}

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

/* Responsive Styles for About Page */
@media (max-width: 1199px) {
  .advances-image-wrapper {
    padding: 40px 40px 40px 0;
  }

  .advances-content {
    padding: 40px 60px;
  }

  .advances-image-shape {
    height: 500px;
  }

  .advances-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-section {
    padding: 80px 0 50px;
  }

  .our-mission-section,
  .our-values-section,
  .our-advances-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .impact-number {
    font-size: 2.5rem;
  }

  .advances-image-wrapper {
    padding: 0 20px 40px 20px;
  }

  .advances-image-shape {
    border-radius: 24px;
    height: 400px;
  }

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

  .advances-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-hero-section {
    padding: 60px 0 40px;
  }

  .our-mission-section,
  .our-values-section {
    padding: 0 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .impact-numbers-section {
    padding: 60px 0;
  }

  .impact-number {
    font-size: 2rem;
  }

  .impact-label {
    font-size: 1rem;
  }
}

/* Services Page Styles */
.services-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7fd 0%, #ffffff 100%);
  text-align: center;
}

.services-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
}

.services-hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.main-services-section {
  padding: 100px 0;
  background: #ffffff;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0;
}

.icon-prevention {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.icon-screening {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.icon-education {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-detection {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.icon-training {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.icon-support {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #4b5563;
}

.service-features li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-features li:last-child {
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background: #f9fafb;
}

.work-step {
  text-align: center;
  padding: 40px 20px;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Services CTA Section */
.services-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-block;
  padding: 18px 12px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.5rem;
  /*  */
  border: 2px solid transparent;
  min-width: 180px;
  text-align: center;
}

.btn-cta-primary {
  background: #ffffff;
  color: #667eea;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #667eea;
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Responsive Styles for Services Page */
@media (max-width: 991px) {
  .services-hero-title {
    font-size: 3rem;
  }

  .services-hero-section {
    padding: 80px 0 50px;
  }

  .main-services-section,
  .how-it-works-section {
    padding: 80px 0;
  }

  .services-cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .services-hero-title {
    font-size: 2.25rem;
  }

  .services-hero-subtitle {
    font-size: 1rem;
  }

  .services-hero-section {
    padding: 60px 0 40px;
  }

  .main-services-section,
  .how-it-works-section {
    padding: 60px 0;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .cta-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .cta-description {
    font-size: 1rem;
    text-align: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
}

/* Our Causes Page Styles */
.advisory-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7fd 0%, #ffffff 100%);
  text-align: center;
}

.advisory-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
}

.advisory-hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.board-intro-section {
  background: #ffffff;
}

.board-members-section {
  padding: 60px 0 80px;
  background: #ffffff;
}

.board-member-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.board-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.board-member-card:hover .member-image {
  transform: scale(1.05);
}

.member-info {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.member-title {
  font-size: 1rem;
  font-weight: 500;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.member-credentials {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex: 1;
}

.member-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Expertise Section */
.expertise-section {
  padding: 100px 0;
  background: #f9fafb;
}

.expertise-card {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

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

.expertise-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.expertise-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Join Board Section */
.join-board-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.join-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.join-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-join {
  display: inline-block;
  padding: 16px 50px;
  background: #ffffff;
  color: #667eea;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #667eea;
}

/* Responsive Styles for Our Causes Page */
@media (max-width: 991px) {
  .advisory-hero-title {
    font-size: 3rem;
  }

  .advisory-hero-section {
    padding: 80px 0 50px;
  }

  .board-intro-section {
    padding: 60px 0 30px;
  }

  .board-members-section {
    padding: 40px 0 80px;
  }

  .expertise-section {
    padding: 80px 0;
  }

  .join-board-section {
    padding: 60px 0;
  }

  .join-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .advisory-hero-title {
    font-size: 2.25rem;
  }

  .advisory-hero-subtitle {
    font-size: 1rem;
  }

  .advisory-hero-section {
    padding: 60px 0 40px;
  }

  .board-intro-section {
    padding: 50px 0 20px;
  }

  .board-members-section {
    padding: 30px 0 60px;
  }

  .member-image-wrapper {
    height: 280px;
  }

  .member-info {
    padding: 24px 20px;
  }

  .member-name {
    font-size: 1.25rem;
  }

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

  .join-title {
    font-size: 1.75rem;
  }

  .join-description {
    font-size: 1rem;
  }
}

/* Contact Page Styles */
.contact-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7fd 0%, #ffffff 100%);
  text-align: center;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 1rem auto;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.contact-info-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0 100px;
  background: #f9fafb;
}

.contact-form-wrapper,
.contact-map-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section-title {
  font-size: 2rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
}

.form-section-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-form {
  width: 100%;
}

.contact-input,
.contact-textarea {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
  background: #ffffff;
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 16px 50px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Office Hours */
.office-hours {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
}

.office-hours-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item .day {
  font-weight: 500;
  color: #1f2937;
}

.hours-item .time {
  color: #6b7280;
}

/* FAQ Section */
.contact-faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: #f9fafb;
  color: #667eea;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #e5e7eb;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667EEA'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem 1.5rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 3rem;
  }

  .contact-hero-section {
    padding: 80px 0 50px;
  }

  .contact-info-section,
  .contact-form-section,
  .contact-faq-section {
    padding: 60px 0;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .contact-hero-title {
    font-size: 2.25rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-hero-section {
    padding: 60px 0 40px;
  }

  .contact-info-section,
  .contact-form-section,
  .contact-faq-section {
    padding: 50px 0;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 24px;
  }

  .form-section-title {
    font-size: 1.5rem;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-wrapper {
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 0;
  padding: 60px 80px;
  box-shadow: none;
}

.testimonial-image-wrapper {
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.testimonial-content {
  padding-left: 0;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* Testimonial Navigation */
.testimonial-nav-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.testimonial-button-prev,
.testimonial-button-next {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: scale(1.05);
}

.testimonial-button-prev::after,
.testimonial-button-next::after {
  font-size: 20px;
  color: #1f2937;
  font-weight: bold;
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.swiper-button-disabled:hover {
  transform: scale(1);
}

/* Responsive Styles for Testimonials */
@media (max-width: 1199px) {
  .testimonial-card {
    padding: 50px 60px;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .testimonial-nav-wrapper {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .testimonial-card {
    padding: 40px 40px;
  }

  .testimonial-image {
    width: 150px;
    height: 150px;
  }

  .testimonial-quote {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

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

  .testimonial-image {
    width: 120px;
    height: 120px;
  }

  .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .testimonial-author {
    font-size: 0.75rem;
  }

  .testimonial-button-prev,
  .testimonial-button-next {
    width: 50px;
    height: 50px;
  }
}

.contact-image-container img {
  width: 100%;
  height: 400;
  object-fit: cover;
  max-height: 640px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

@media (max-width: 640px) {
  .contact-image-container img {
    width: 98%;
    height: 400;
    object-fit: cover;
    max-height: 500px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
@media (max-width: 1024px) {
  .contact-image-container img {
    width: 100%;
  }
}

/* Donate Page Styles */
.donate-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.donate-hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.donate-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
}

/* Donate Impact Section */
.donate-impact-section {
  padding: 100px 0;
  background: #ffffff;
}

.impact-card {
  text-align: center;
  padding: 40px 30px;
  background: #f9fafb;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.impact-card:hover {
  background: #ffffff;
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.impact-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1rem;
}

.impact-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.impact-description {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Donation Form Section */
.donation-form-section {
  padding: 80px 0 100px;
}

.donation-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.donation-form-title {
  font-size: 2rem;
  font-weight: 400;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.donation-type-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.donation-type-btn {
  flex: 1;
  max-width: 200px;
  padding: 14px 30px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donation-type-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.amount-btn {
  padding: 16px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover {
  border-color: #667eea;
  background: #ffffff;
}

.amount-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.custom-amount-group .input-group-text {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 1.25rem;
  font-weight: 600;
  color: #6b7280;
}

.custom-amount-input {
  border: 1px solid #e5e7eb;
  padding: 14px 18px;
  font-size: 1.125rem;
}

.custom-amount-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-section-heading {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.donate-input {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
}

.donate-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
  background: #ffffff;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-method-btn {
  padding: 16px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  color: #6b7280;
}

.payment-method-btn i {
  font-size: 1.75rem;
}

.payment-method-btn:hover {
  border-color: #667eea;
  background: #ffffff;
}

.payment-method-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.donate-submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  margin-top: 1.5rem;
}

.donate-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.donation-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Other Ways Section */
.other-ways-section {
  padding: 100px 0;
  background: #ffffff;
}

.give-option-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.give-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.give-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.give-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.give-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.give-link {
  color: #667eea;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.give-link:hover {
  color: #764ba2;
}

/* Tax Info Section */
.tax-info-section {
  padding: 80px 0;
  background: #f9fafb;
}

.tax-info-box {
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tax-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.tax-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.tax-description {
  font-size: 1.0625rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tax-note {
  font-size: 0.9375rem;
  color: #9ca3af;
  margin: 0;
}

/* Responsive Styles for Donate Page */
@media (max-width: 991px) {
  .donate-hero-title {
    font-size: 3rem;
  }

  .donation-form-wrapper {
    padding: 40px 30px;
  }

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

  .payment-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .donate-hero-title {
    font-size: 2.25rem;
  }

  .donate-hero-subtitle {
    font-size: 1rem;
  }

  .donate-impact-section,
  .donation-form-section,
  .other-ways-section,
  .tax-info-section {
    padding: 60px 0;
  }

  .donation-form-wrapper {
    padding: 30px 20px;
  }

  .donation-type-tabs {
    flex-direction: column;
  }

  .donation-type-btn {
    max-width: 100%;
  }

  .donation-amounts {
    grid-template-columns: 1fr;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border-radius: 30px;
}

/* donate */
.donation-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.85) 0%,
      rgba(118, 75, 162, 0.85) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"><rect fill="%235a4da2" width="1600" height="900"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.donation-hero-content h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.donation-breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.donation-breadcrumb span {
  margin: 0 0.5rem;
}

/* Section 2 - Donation Campaigns */
.donation-campaigns-section {
  padding: 50px 0;
  background: #f5f3ff;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 20px;
  border: 2px solid #764ba2;
  border-radius: 30px;
  color: #764ba2;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.section-main-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 3rem;
  text-align: center;
}

.campaign-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.campaign-image {
  position: relative;
  overflow: hidden;
}
.campaign-title {
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 0;
}

.campaign-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.campaign-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #1f2937;
}

.campaign-content {
  padding: 32px 28px;
}

.campaign-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.campaign-progress {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.campaign-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

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

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.btn-donate-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  background: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-donate-now:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #ffffff;
}

/* Section 3 - Donation Form */
.donation-form-section {
  padding: 100px 0;
  position: relative;
}

.donation-form-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-image-section {
  height: 100%;
  min-height: 600px;
}

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

.form-content-section {
  padding: 60px 50px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 20px;
  border: 2px solid #764ba2;
  border-radius: 30px;
  color: #764ba2;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.donation-amount-section {
  margin-bottom: 2rem;
}

.amount-label {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
}

.amount-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 16px 20px;
  background: #f9fafb;
  border: 2px solid #764ba2;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.amount-display i {
  font-size: 1.5rem;
  color: #764ba2;
}

.amount-display input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  width: 100%;
  outline: none;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}

.amount-btn {
  padding: 14px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #ffffff;
}

.payment-method-section {
  margin-bottom: 2rem;
}

.payment-options {
  display: flex;
  gap: 12px;
}

.payment-option {
  flex: 1;
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.payment-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: #6b7280;
}

.payment-option input[type="radio"]:checked + label {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #ffffff;
}

.btn-donate-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-donate-submit:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .donation-hero-content h1 {
    font-size: 3rem;
  }

  .section-main-title {
    font-size: 2rem;
  }

  .form-content-section {
    padding: 40px 30px;
  }

  .form-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .donation-hero-content h1 {
    font-size: 2.25rem;
  }

  .section-main-title {
    font-size: 1.75rem;
  }

  .campaign-image {
    height: 240px;
  }

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

  .payment-options {
    flex-direction: column;
  }

  .form-image-section {
    min-height: 300px;
  }
}

.donation-hero {
  width: 100%;
  padding: 0;
  margin: 0;
}

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

.donation-hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.donation-hero-content img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .donation-hero-content img {
    max-width: 100%;
  }
}

.about-center-section {
  background: white;
  color: #333;
}

.about-center-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Box in about-us */

.card-custom {
  border: none;
  border-radius: 12px;
  padding: 40px 35px;
  height: 100%;
  transition: transform 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
}

.card-beige {
  background-color: #e8e6e3;
}

.card-blue {
  background-color: #dfe9f0;
}

.card-title-custom {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.card-text-custom {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 60px;
}

.btn-link-custom {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.btn-link-custom:hover {
  color: #1a1a1a;
  gap: 12px;
}

.arrow {
  font-size: 18px;
}

.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #b8c5d1;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.footer-content {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 0;
  max-width: 420px;
}

.footer-column-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 28px;
  text-transform: uppercase;
}

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

.footer-links-list li {
  margin-bottom: 16px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-info p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 2;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-contact-info p:hover {
  color: #ffffff;
}

.footer-copyright {
  padding: 30px 0;
  text-align: left;
}

.footer-copyright p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.brand-highlight {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 0;
  }

  .footer-brand {
    font-size: 28px;
  }

  .footer-content {
    padding-bottom: 40px;
  }
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 320px;
}

.advisory-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.advisory-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.campaign-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.campaign-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

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

.campaign-content {
  padding: 32px;
}
.campaign-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 84px;
  display: flex;
  align-items: center;
}

.campaign-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  min-height: 120px;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .about-img {
    max-height: 500px;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .about-img {
    max-height: 400px;
    margin-bottom: 2rem;
  }
}

/* Extra small screens */
@media (max-width: 575px) {
  .about-img {
    max-height: 350px;
  }
}
@media (min-width: 1024px) {
  .about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

.nav-link.active {
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-image-slice: 1;
}

.footer-legal-text {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* soft line for dark bg */
  width: 80%;
  margin: 0 auto 1rem;
}
