/* ============================================================
   single-program.css  —  Single Program Page Specific Styles
   NGO Theme · Yuva Shakti Samiti
   Depends on: variables.css, global.css, header-footer.css
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=1400&q=80")
    center/cover no-repeat;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 8, 6, 0.86) 0%,
    rgba(20, 12, 8, 0.65) 55%,
    rgba(222, 56, 8, 0.18) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}



.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(222, 56, 8, 0.18);
  border: 1px solid rgba(222, 56, 8, 0.45);
  color: #ffb39a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(42px, 6vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-secondary);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 510px;
  margin-bottom: 32px;
}

.hero-side-text {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--color-bg);
  border-bottom: 1px solid #ece4d8;
  padding: 12px 0;
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--color-muted);
}

.breadcrumb-bar a {
  color: var(--color-primary);
  font-weight: 600;
}

.breadcrumb-bar span {
  opacity: 0.9;
  font-weight: 500;
  font-size: 14px;
}

/* ABOUT */
.about-section {
  background: var(--color-white);
}

.quote-block {
  text-align: center;
  margin-bottom: 60px;
}

.quote-block h2 {
     font-size: clamp(1.1rem, 2.8vw, 1.75rem);
 font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto 24px;
}

.quote-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quote-divider .line {
  width: 70px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-secondary),
    var(--color-primary)
  );
  border-radius: 2px;
}

.quote-divider .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.about-text {
  font-size: 16.5px;
  color: var(--color-muted);
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 20px;
  font-weight: 500;
  word-spacing: 2px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.55;
  font-weight: 500;
}

.feature-list .fi-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(222, 56, 8, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.collage-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 10px;
  overflow: hidden;
}

.collage-wrap .col-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  margin-right: -12px;
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.col-img:hover img {
  transform: scale(1.06);
}

.about-extra {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.85;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--color-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--r) var(--r) 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1.5px solid var(--color-light);
  box-shadow: var(--sh);
}

.sidebar-card-header {
  padding: 15px 20px;
}

.sidebar-card-header h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.sidebar-card-body {
  background: var(--color-white);
  padding: 8px 0;
}

.work-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg);
  transition: all 0.2s;
}

.work-item:last-child {
  border-bottom: none;
}

.work-item .wi-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.work-item:hover {
  background: var(--color-bg);
  padding-left: 26px;
  color: var(--color-primary);
}

.work-item:hover .wi-icon {
  background: rgba(222, 56, 8, 0.12);
}

.work-item--active {
  background: rgba(222, 56, 8, 0.06);
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
}

.work-item--active .wi-icon {
  background: rgba(222, 56, 8, 0.15);
}

.stats-card {
  border-radius: var(--r);
  border: 1.5px solid var(--color-light);
  padding: 24px;
  box-shadow: var(--sh);
  background: var(--color-white);
  border-top: 4px solid var(--color-primary);
}

.stats-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px 10px;
  background: var(--color-bg);
  border-radius: 10px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 11.5px;
  color: var(--color-muted);
  font-weight: 500;
  line-height: 1.3;
}

.volunteer-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1.5px solid var(--color-light);
  box-shadow: var(--sh);
}

.volunteer-card-header {
  background: var(--color-secondary);
  padding: 16px 20px;
}

.volunteer-card-header h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.volunteer-card-body {
  background: var(--color-white);
  padding: 20px;
}

.volunteer-card-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn-volunteer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 30px;
  transition: all 0.25s;
}

.btn-volunteer:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 56, 8, 0.35);
}

/* FOCUS AREAS */
.focus-section {
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(222, 56, 8, 0.09);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.tp-wrapper {
  display: flex;
  gap: 14px;
  min-height: 440px;
}

.tp-card {
  flex: 1 1 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}

.tp-wrapper:has(.tp-card:hover) .tp-card:not(:hover) {
  flex: 0.5 1 0;
}

.tp-card:hover {
  flex: 2 1 0;
}

.tp-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-card:hover .tp-card-img {
  transform: scale(1.07);
}

.tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.42) 50%,
    rgba(0, 0, 0, 0.82) 100%
  );
  transition: background 0.4s;
}

.tp-card:hover .tp-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.tp-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.tp-card:hover .tp-accent-bar {
  transform: scaleX(1);
}

.tp-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
  z-index: 2;
}

.tp-card:hover .tp-icon {
  background: var(--color-primary);
  transform: scale(1.1) rotate(-5deg);
}
.tp-content {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.tp-cat {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 9px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.tp-card:hover .tp-cat {
  opacity: 1;
  transform: translateY(0);
}

.tp-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.tp-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin-top 0.3s;
}

.tp-card:hover .tp-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 20px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s 0.1s,
    transform 0.3s 0.1s;
}

.tp-card:hover .tp-badge {
  opacity: 1;
  transform: translateY(0);
}

/* WHAT WE DO */
.whatwedo-section {
  background: var(--color-white);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wwd-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid #f0e8df;
  background: var(--color-white);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.wwd-card:hover::before {
  transform: scaleX(1);
}

.wwd-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(222, 56, 8, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.wwd-card:hover .wwd-icon-wrap {
  background: rgba(222, 56, 8, 0.16);
}

.wwd-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.wwd-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}

/* STORIES */
.stories-section {
  position: relative;
}

.stories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--color-secondary);
  z-index: -1;
}
.stories-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
}

.stories-section .section-header h2 {
  color: #fff;
}

.section-sub {
  font-size: 18px;
  color: #ffff;
  max-width: 729px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
  text-align: center;
}

.impact-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.impact-lbl {
  font-size: 13px;
  color: rgb(0 0 0 / 66%);
  font-weight: 500;
}

/*.stories-swiper-wrap {*/
/*	padding: 0 0 60px;*/
/*}*/

.stories-swiper {
  padding: 10px 20px 30px !important;
  overflow: hidden !important;
}

.story-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 500px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.story-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover .story-card__img {
  transform: scale(1.08);
}

.story-card__base-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 35%, transparent 70%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.story-card__tag-wrap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

.story-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.story-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.38s,
    transform 0.38s;
}
.story-card:hover .story-card__hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.story-card:hover .story-card__tag-wrap {
  opacity: 0;
  transform: translateY(8px);
}

.story-card:hover .story-card__base-overlay {
  opacity: 0;
}

.hover-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  max-width: fit-content;
}

.story-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 12px;
}

.story-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--color-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px !important;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: #686868 !important;
  opacity: 1 !important;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #f58220 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* FAQ */
.faq-section {
  position: relative;
  /*padding: 80px 0;*/
  /*background: var(--color-bg);*/
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 70%;
  margin: auto;
}

.faq-left h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 5px;
}

.faq-left {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

.faq-left p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.5;
  font-weight: 500;
}

.faq-contact {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1.5px solid var(--color-light);
}

.faq-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(222, 56, 8, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.faq-contact span {
  font-size: 11.5px;
  color: var(--color-muted);
  display: block;
}

.faq-contact strong {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  border: 1.5px solid #ede4d9;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item:hover {
  box-shadow: var(--sh);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  background: var(--color-bg);
}

.faq-question span {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.faq-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  padding: 12px 0px 0px;
  font-weight: 500;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 0;
}

.faq-item.open .faq-question span {
  color: var(--color-primary);
}

/* FOOTER CTA */
.footer-cta {
  background: var(--color-primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  display: none !important;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.footer-cta::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer-cta h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.footer-cta h3 span {
  color: var(--color-light);
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.btn-cta-white {
  background: #fff;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.25s;
}

.btn-cta-white:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  transition: all 0.25s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .wwd-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) { 

     :root {
      --section-padding: 70px;
      }
     
     

  .tp-wrapper {
    flex-wrap: wrap;
  }

  .tp-card {
    flex: 1 1 calc(50% - 7px) !important;
    min-height: 240px;
  }

  .impact-row {
    grid-template-columns: 1fr 1fr;
  }

  .story-card {
    height: 300px;
  }

  .footer-cta .container {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .demo-nav nav {
    display: none;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 992px) {
   :root {
        --section-padding: 70px;
    }
    
   .hero {
        height: 300px;
    }
      .quote-block h2 {
    font-weight: 500;
    line-height: 1.5;
    max-width: 544px;
    margin: 0 auto 10px;
 }

    .quote-block {
        text-align: center;
        margin-bottom: 10px;
    }
    .impact-lbl {
     font-size: 16px;
    color: rgb(0 0 0 / 66%);
 }
 .impact-num {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
 }

.faq-left {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 16px;
}

.faq-grid {
    max-width: 100%;
    margin: auto;
}

}

@media (max-width: 576px) {
    
   :root {
    --section-padding: 60px;
  }
    
  .tp-card {
    flex: 1 1 100% !important;
  }

  .impact-row {
    grid-template-columns: 1fr 1fr;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 480px;
  }

  .collage-wrap {
    grid-template-columns: 1fr;
  }
  
    .hero h1 {
        font-size: clamp(35px, 6vw, 50px);
        font-weight: 600;
        line-height: 1.05;
        margin-bottom: 10px;
    }
        .hero {
        height: 250px;
    }
    
    .breadcrumb-bar {
    background: var(--color-bg);
    border-bottom: 1px solid #ece4d8;
    padding: 6px 0;
   }
   .breadcrumb-bar a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
  }

    .quote-block {
        margin-bottom: 15px;
    }
        .quote-block h2 {
    font-weight: 500;
    line-height: 1.5;
    margin: 0 auto 18px;
    }

    .feature-list li {
        gap: 18px;
        font-size: 14.5px;
        line-height: 1.65;
        font-weight: 500;
        text-align: justify;
    }
    
    .collage-wrap .col-img {
    height: 140px;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    margin-right: -8px;
        } 
    .collage-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .about-extra {
    font-size: 15.5px;
    line-height: 1.85;
    margin-top: 20px;
    padding: 15px 18px;
    text-align: justify;
    font-weight: 500;
}

  .about-text {
    font-size: 16.5px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 20px;
    font-weight: 500;
    word-spacing: 0px;
  }

    .section-header {
        margin-bottom: 20px;
    } 
  
    .impact-row {
        grid-template-columns: repeat(2, 1fr);
      margin: 20px 0;
    text-align: center;
  } 
    
  .impact-lbl {
    font-size: 16px;
    color: rgb(0 0 0 / 69%);
    font-weight: 500;
  }
  
.impact-num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .faq-left h2 {
        font-size: clamp(1.65rem, 2.8vw, 2.4rem);
        font-weight: 500;
        color: var(--color-text);
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .faq-left {
        text-align: center;
        margin: 0;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0px;
        max-width: 100%;
    }
    
    .section-header h2 {
     font-weight: 500;
    }

  .wwd-card p {
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
    font-weight: 500;
 }
 
 .wwd-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

}
