:root {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --primary-deeper: #004085;
  --secondary: #212529;
  --accent-green: #28a745;
  --accent-red: #dc3545;
  --mid-gray: #6c757d;
  --light-bg: #f8f9fa;
  --border: #dee2e6;
  --white: #ffffff;
  --text-dark: #1d2124;
  --text-mid: #495057;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s ease;
  --font-head: 'Gotham', 'Gotham SSm', 'Montserrat', Arial, sans-serif;
  --font-body: 'Gotham', 'Gotham SSm', 'Montserrat', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  border-radius: 4px;
  z-index: 9999;
  font-family: var(--font-head);
}

.skip-link:focus {
  top: 1rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-logo .logo-badge {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .4rem .7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(0, 123, 255, .07);
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: .5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-mid);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--primary);
}

section {
  scroll-margin-top: 105px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 140px;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 123, 255, .08);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-gray);
  margin-top: .75rem;
  max-width: 560px;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #003d7a 0%, #0056b3 35%, #007bff 65%, #3d9bff 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: self-start;
  padding: 3rem 1.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4dff91;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: .6;
    transform: scale(1.3)
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #e6c35c;
}

.hero-brand-logo {
  width: min(360px, 72vw);
  height: auto;
  margin: 0 0 .65rem;
  margin-bottom: 30px;
  object-fit: contain;
}

.hero-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.hero-pledge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  margin: 10px 0px;
  margin-left: -10px;
}

.hero-pledge .rupee-icon {
  width: 300px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--secondary);
  flex-shrink: 0;
}

.hero-pledge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.hero-pledge-text span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: white;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}



.hero-kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 40, 100, .6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.hero-kv-caption {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .5px;
}

.hero-stats {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: none;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.hero-stat .lbl {
  font-size: .75rem;
  color: var(--mid-gray);
  margin-top: .25rem;
  line-height: 1.3;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── Stats Section ── */
#stats {
  padding: 2rem 0 5rem;
  background: var(--white);
  padding-bottom: 30px;
}

.stats-header {
  text-align: left !important;
  margin-bottom: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.stat-card.blue::before {
  background: var(--primary);
}

.stat-card.green::before {
  background: var(--accent-green);
}

.stat-card.red::before {
  background: var(--accent-red);
}

.stat-card.gold::before {
  background: #ffc107;
}

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

.stat-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
}

.stat-card.blue .icon {
  background: rgba(0, 123, 255, .1);
  color: var(--primary);
}

.stat-card.green .icon {
  background: rgba(40, 167, 69, .1);
  color: var(--accent-green);
}

.stat-card.red .icon {
  background: rgba(220, 53, 69, .1);
  color: var(--accent-red);
}

.stat-card.gold .icon {
  background: rgba(255, 193, 7, .12);
  color: #d39e00;
}

.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-card .stat-num-main,
.stat-card .stat-num-unit {
  font: inherit;
}

.stat-card.blue .stat-num {
  color: var(--primary);
}

.stat-card.green .stat-num {
  color: var(--accent-green);
}

.stat-card.red .stat-num {
  color: var(--accent-red);
}

.stat-card.gold .stat-num {
  color: #d39e00;
}

.stat-card .stat-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.stat-card .stat-sub {
  font-size: .78rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* ── Media Cards (Actions + Activations) ── */
.media-section {
  overflow: hidden;
  padding-top: 40px;
}

.media-section.bg-light {
  background: var(--light-bg);
}

.media-section.bg-white {
  background: white;
}

.media-header {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

/* Desktop: 3-card centered grid */
.cards-desktop-grid {
  display: none;
}

/* .rupee-icon img{
      border-radius: 50%;
    } */
@media (min-width: 1024px) {
  .cards-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .cards-mobile-scroll {
    display: none !important;
  }
}

/* Mobile: horizontal scroll */
.cards-mobile-scroll {
  position: relative;
  padding-left: 20px;
}

.cards-track {
  display: flex;
  gap: 1.25rem;
  padding: .5rem 1.5rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cards-track::-webkit-scrollbar {
  display: none;
}

/* Card */
.media-card {
  flex: 0 0 300px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: var(--transition);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .media-card {
    flex: unset;
    width: 100%;
  }
}

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

/* Thumb */
.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #1a1a2e;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.media-card:hover .card-thumb-overlay {
  background: rgba(0, 60, 150, .35);
}

.play-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  padding-left: 4px;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
}

.media-card:hover .play-ring {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(0, 123, 255, .15);
}

.card-type-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: none;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 4px;
}

.badge-video {
  background: rgba(220, 53, 69, .9);
  color: white;
}

.badge-image {
  background: rgba(0, 123, 255, .85);
  color: white;
}

.badge-photo {
  background: rgba(40, 167, 69, .85);
  color: white;
  display: none;
}

.card-duration {
  position: absolute;
  bottom: .6rem;
  right: .75rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, .65);
  padding: .2rem .5rem;
  border-radius: 4px;
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: .45rem;
  line-height: 1.3;
}

.card-desc {
  font-size: .86rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: .9rem;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
}

.card-cta i {
  font-size: .72rem;
  transition: transform .25s;
}

.media-card:hover .card-cta i {
  transform: translateX(4px);
}

/* Scroll arrows */
.scroll-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--secondary);
}

.scroll-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.scroll-arrow.left {
  left: 1rem;
}

.scroll-arrow.right {
  right: 1rem;
}

@media (min-width: 1024px) {
  .scroll-arrow {
    display: none;
  }
}

/* ── Before / After ── */
#transformation {
  padding: 5rem 0;
  background: white;
  display: none;
}

.transformation-header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.ba-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
  box-shadow: var(--shadow-lg);
}

.ba-side {
  position: relative;
  min-width: 0;
  background: var(--secondary);
}

.ba-image-container {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.ba-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.ba-side:hover .ba-image-container img {
  transform: scale(1.04);
}

/* AI image shimmer for before */
.ba-image-before img {
  filter: saturate(.45) brightness(.75) sepia(.2);
}

.ba-side:hover .ba-image-before img {
  filter: saturate(.55) brightness(.8) sepia(.15);
}

.ba-image-overlay {
  position: absolute;
  inset: 0;
}

.ba-before-overlay {
  background: linear-gradient(to top, rgba(60, 0, 0, .72) 0%, rgba(30, 0, 0, .3) 50%, transparent 100%);
}

.ba-after-overlay {
  background: linear-gradient(to top, rgba(0, 50, 20, .72) 0%, rgba(0, 40, 10, .25) 50%, transparent 100%);
}

.ba-label-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: .4rem 1rem;
  border-radius: 50px;
}

.ba-label-before {
  background: rgba(180, 30, 30, .9);
  color: white;
  border: 1px solid rgba(255, 100, 100, .3);
}

.ba-label-after {
  background: rgba(0, 100, 50, .9);
  color: white;
  border: 1px solid rgba(100, 255, 150, .3);
}

.ba-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.ba-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.ba-point {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .55rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.4;
}

.ba-point i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .8rem;
}

.ba-before-c .ba-point i {
  color: #ff8a8a;
}

.ba-after-c .ba-point i {
  color: #7dffb0;
}

.ba-divider {
  position: absolute;
  left: calc(33.333% - 28px);
  top: 50%;
  z-index: 5;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.ba-vs-circle {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 123, 255, .4);
  letter-spacing: -1px;
}

.ba-arrow-circle {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: 3px solid white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 123, 255, .4);
}

.ba-divider.is-arrow .ba-vs-circle {
  display: none;
}

.ba-divider.is-arrow .ba-arrow-circle {
  display: flex;
}

.ba-arrows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ba-arrows span {
  display: block;
  font-size: .6rem;
  color: var(--mid-gray);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
}

.impact-strip {
  margin-top: 3rem;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.impact-stat .i-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffc107;
}

.impact-stat .i-lbl {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-top: .25rem;
}

/* ── Footer ── */
footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, .8);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  padding: .3rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .75rem;
}

.footer-contact p i {
  margin-top: 3px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #111;
  border-radius: var(--radius);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
  animation: modal-in .3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(.95) translateY(16px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, .2);
}

.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Image lightbox in modal */
.modal-image-wrap {
  padding: 0;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.modal-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 130px;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 1001;
  width: 0%;
  transition: width .1s linear;
}

/* Yellow lightning divider */
.yellow {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  height: clamp(30px, 4vw, 58px);
  margin: clamp(-34px, -3vw, -18px) 0 0;
  /* object-fit: cover; */
  object-position: center;
  pointer-events: none;
}

/* Fade-up */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ba-wrapper {
    grid-template-columns: 1fr;
  }

  .ba-divider {
    display: none;
  }

  .ba-image-container {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 5rem;
    text-align: center;
  }

  .hero-brand-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-pledge {
    text-align: left;
  }

  .hero-visual {
    align-items: center;
  }

  .hero-kv {
    max-width: 100%;
  }

  .hero-kv-inner img {
    transform: scale(1.22);
    transform-origin: center center;
  }

  .hero-stats {
    max-width: 100%;
    gap: 1rem;
  }

  .yellow {
    height: 28px;
    margin-top: -16px;
  }

  .impact-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  #transformation {
    padding: 3.5rem 0;
  }

  .transformation-header {
    margin-bottom: 2rem;
  }

  .ba-wrapper {
    border-radius: 18px;
  }

  .ba-side:first-child {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
  }

  .ba-side:last-child {
    border-radius: 0 0 18px 18px;
    overflow: hidden;
  }

  .ba-label-pill {
    max-width: calc(100% - 2rem);
    font-size: .68rem;
    line-height: 1.2;
    letter-spacing: 1.2px;
  }

  .ba-content {
    padding: 1.25rem;
  }

  .ba-point {
    gap: .55rem;
    font-size: .9rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .stat-card {
    padding: 1.2rem .55rem;
    min-width: 0;
  }

  .hero-stat .num {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: .5rem;
    padding: 1rem;
  }

  .stat-card .stat-num {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: .12rem;
    white-space: normal;
  }

  .stat-card .stat-num-unit {
    flex: 0 0 100%;
    font-size: .58em;
    line-height: 1.05;
    margin-top: .15rem;
  }

  .stat-card .stat-label {
    font-size: .72rem;
    line-height: 1.25;
  }
}

.hero-kv {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
  position: relative;
}

.hero-kv-inner {
  text-align: center;
  color: white;
}

.hero-kv-inner i {
  font-size: 4rem;
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.hero-kv-inner span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

.allout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 0 clamp(30px, 5vw, 58px);
  border-top: 4px solid #1e1e1e;
  border-bottom: 1px solid #2f6fea;
  background: #fff;
  box-shadow: 0 8px 24px rgba(13, 45, 140, .08);
  overflow: visible;
}

.allout-header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  /* width: min(200px, 58vw);
      height: 76px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.allout-header-logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .12));
}

.allout-header-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 52px);
  color: #3b3c3d;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .02em;
}

.allout-header-nav a {
  position: relative;
  padding: 30px 0 27px;
  white-space: nowrap;
}

.allout-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #2f6fea;
  transition: transform 180ms ease;
}

.allout-header-nav a:hover {
  color: #3d9bff;
}

.allout-header-nav a:hover::after {
  background: #3d9bff !important;
}

.allout-menu-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  color: #1e1e1e;
}

.allout-menu-toggle span {
  width: 36px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.allout-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: block;
  background: rgba(229, 242, 246, .74);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.allout-mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.allout-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1410;
  width: min(64vw, 520px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 92px clamp(28px, 7vw, 64px) 36px;
  background: #fff;
  color: #676a73;
  font-family: var(--font-head);
  transform: translateX(-102%);
  transition: transform 260ms ease;
  box-shadow: 22px 0 50px rgba(13, 45, 140, .16);
}

.allout-mobile-menu.open {
  transform: translateX(0);
}

.allout-mobile-close {
  position: absolute;
  top: 36px;
  right: 42px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #111;
}

.allout-mobile-close::before,
.allout-mobile-close::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.allout-mobile-close::before {
  transform: rotate(45deg);
}

.allout-mobile-close::after {
  transform: rotate(-45deg);
}

.allout-mobile-menu a {
  width: max-content;
  max-width: 100%;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .02em;
  text-transform: none;
}

.allout-mobile-menu a:hover {
  color: #3d9bff;
}

#progress-bar {
  top: 120px;
  height: 3px;
  background: linear-gradient(90deg, #0D2D8C, #1C73F2, #47C7F4);
  z-index: 1300;
}

.navbar,
.mobile-menu {
  display: none !important;
}

.allout-footer {
  position: relative;
  background: #fff;
  color: #7784a2;
  font-family: var(--font-head);
}

.allout-footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 45, 140, .95), rgba(28, 115, 242, .92)), #0f4fcf;
}

.allout-footer-inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 300px;
  margin: 0 auto;
  padding: 30px 160px 36px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  text-align: center;
}

.allout-footer-logo img {
  width: auto;
  height: 128px;
  object-fit: contain;
}

.allout-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: #7784a2;
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.allout-footer-links a {
  transition: color 180ms ease;
}

.allout-footer-links a:hover {
  color: #0f4fcf;
}

.allout-footer-links span {
  width: 1px;
  height: 18px;
  background: #9ca8bf;
}

.allout-footer-social {
  margin-top: 10px;
}

.allout-footer-social p {
  margin: 0 0 12px;
  color: #7784a2;
  font-size: .94rem;
  font-weight: 500;
}

.allout-footer-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.allout-footer-social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  transition: transform 180ms ease;
}

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

.allout-footer-social-link svg {
  width: 25px;
  height: 25px;
}

.allout-footer-social-link.facebook {
  background: #1877F2;
}

.allout-footer-social-link.instagram {
  background: linear-gradient(135deg, #F56040, #E1306C 52%, #833AB4);
}

.allout-footer-social-link.youtube {
  width: 42px;
  background: #FF0000;
}

.allout-footer-social-link.facebook svg path,
.allout-footer-social-link.youtube svg path {
  fill: currentColor;
}

.allout-footer-social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.allout-footer-buy-btn {
  padding: 10px;
  position: absolute;
  right: 0;
  bottom: 32px;
  min-width: 142px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #14499B, #327BF2);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(20, 73, 155, .28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.allout-footer-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(20, 73, 155, .34);
}

body>footer:not(.allout-footer) {
  display: none !important;
}
  .terms-text{
    color:#fff;
    font-size: 10px;
    padding: 10px;
    font-style: italic;
  }
  .terms-text-bottom{
    color:#212529;
    padding: 10px;
    font-size: 10px;
    text-align: center;
    font-style: italic;
  }
@media (max-width: 820px) {
  .allout-header {
    /* height: 88px; */
    min-height: 120px;
    justify-content: center;
    gap: 0;
    padding: 0 18px;
    border-top: 0;
    box-shadow: 0 8px 18px rgba(17, 17, 17, .12);
  }

  .allout-header-logo {
    position: absolute;
    min-height: 0;
    width: min(460px, 92vw);
    justify-content: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translate(-50%, -50%);
  }

  .allout-header-logo img {
    width: 100%;
    height: 250px;
    max-width: none;
  }

  .allout-header-nav {
    display: none;
  }

  .allout-menu-toggle {
    display: none !important;
  }

  #progress-bar {
    top: 120px;
  }

  .allout-footer-top-line {
    display: none;
  }

  .allout-footer-inner {
    width: min(100% - 36px, 680px);
    min-height: 0;
    padding: 58px 0 132px;
    gap: 0;
  }

  .allout-footer-logo img {
    height: clamp(146px, 25vw, 188px);
  }

  .allout-footer-links {
    flex-direction: column;
    gap: 24px;
    color: #758197;
    font-size: clamp(1.22rem, 4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.2;
  }

  .allout-footer-links span {
    display: none;
  }

  .allout-footer-links+.allout-footer-links {
    margin-top: 58px;
  }

  .allout-footer-social {
    margin-top: 72px;
  }

  .allout-footer-social p {
    margin-bottom: 24px;
    color: #758197;
    font-size: clamp(1.25rem, 4.2vw, 1.9rem);
  }

  .allout-footer-social-list {
    gap: 22px;
  }

  .allout-footer-social-link {
    width: 58px;
    height: 58px;
    border-radius: 8px;
  }

  .allout-footer-social-link.youtube {
    width: 72px;
  }

  .allout-footer-social-link svg {
    width: 44px;
    height: 44px;
  }

  .allout-footer-buy-btn {
    left: auto;
    right: 50px;
    bottom: 30px;
    min-width: 228px;
    min-height: 92px;
    border-radius: 14px;
    font-size: clamp(1.35rem, 4.2vw, 1.9rem);
    box-shadow: 0 24px 60px rgba(20, 73, 155, .28);
    transform: none;
  }

  .allout-footer-buy-btn:hover {
    transform: translateY(-2px);
  }

}

@media (max-width: 520px) {
  .allout-header {
    /* height: 78px; */
    min-height: 120px;
    padding: 0 12px;
  }

  .allout-header-logo {
    width: min(280px, 115vw);
    min-height: 0;
  }

  .allout-header-logo img {
    width: 100%;
    height: auto;
    max-width: none;
  }


  .allout-menu-toggle {
    display: none !important;
  }

  .allout-menu-toggle span {
    width: 32px;
  }

  .allout-mobile-menu {
    width: 64vw;
    min-width: 0;
    padding: 86px 28px 32px;
  }

  .allout-mobile-close {
    top: 32px;
    right: 32px;
  }

  #progress-bar {
    top: 120px;
  }

  .allout-footer-inner {
    width: min(100% - 32px, 430px);
    padding-bottom: 118px;
  }

  .allout-footer-logo img {
    height: 150px;
  }

  .allout-footer-links {
    gap: 20px;
    font-size: 13px;
  }

  .allout-footer-links+.allout-footer-links {
    margin-top: 48px;
  }

  .allout-footer-social {
    margin-top: 58px;
  }

  .allout-footer-social p {
    font-size: 1.32rem;
  }

  .allout-footer-social-link {
    width: 54px;
    height: 54px;
  }

  .allout-footer-social-link.youtube {
    width: 68px;
  }

  .allout-footer-social-link svg {
    width: 40px;
    height: 40px;
  }

  .allout-footer-buy-btn {
    right: 55px;
    bottom: 22px;
    min-width: 170px;
    min-height: 72px;
    border-radius: 12px;
    font-size: 1.28rem;
  }
}

/**new ruppe log**/
.sponsered-text {
  font-size: 1.0rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.25;
  margin-top: -45px;
  margin-left: 10px;
}
.custom-hr {
    position: relative;
    top: -47px; /* move down */
}

.media-section .sponsered-text {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.25;
  margin: 2rem 0px;
  text-align: center;
  padding: 0 20px;
}

section#actions {
  margin-top: 40px;
}

/* Tablet Responsiveness Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  #hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .hero-inner {
    gap: 2rem;
    padding: 0 1.5rem;
    align-items: center;
  }

  .hero-brand-logo {
    width: 100%;
    max-width: 320px;
  }

  .hero-desc {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  .hero-pledge .rupee-icon {
    width: 250px;
    height: 62px;
  }

  .hero-kv {
    max-width: 100%;
    border-radius: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .allout-footer-inner {
    padding: 40px 60px 36px;
  }

  .ba-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .ba-divider {
    display: flex;
    left: calc(33.333% - 26px);
  }

  .ba-vs-circle {
    width: 44px;
    height: 44px;
    font-size: 0.75rem;
  }

  .ba-arrow-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .sponsered-text {
  font-size: 0.7rem; 
  margin-left: -10px;
  }
  .media-section .sponsered-text {
  font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .sponsered-text {
    font-size: 0.7rem !important;
  }

  .media-section .sponsered-text {
    font-size: 0.7rem !important;
  }
}

