/* ============================================ */
/* EPR PLASTIC PAGE — CLEANED CSS              */
/* (Page-specific styles only; global in global.css) */
/* ============================================ */

/* ============================================ */
/* PAGE BODY OVERRIDE — Kill the green background */
/* ============================================ */
body.epr-plastic-page {
    background-color: transparent;
    background-image: none;
    margin: 0;
    padding: 0;
}

/* Ensure sections use GLOBAL VARIABLES */
.impact-stats-section { background-color: var(--bg-dark); }
.category-section { background-color: var(--bg-white); }
.timeline-section { background-color: var(--cream-bg); }
.process-section { background-color: var(--bg-black); }
.products-section { background-color: var(--cream-bg); }
.impact-section { background-color: var(--bg-black); }
.final-cta-section { background-color: var(--cream-bg); }
.green-partner-cta { background-color: var(--bg-dark); }
.footer { background-color: var(--bg-dark); }

.counter-number { font-variant-numeric: tabular-nums; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- KEYFRAMES --- */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.float-slow { animation: floatSlow 4s ease-in-out infinite; }

/* --- UTILITY OVERRIDES --- */
.hero-fade { transition: opacity 0.5s ease; }
.bg-white-contrast { background-color: #F8FAFC; width: 100%; }
.bg-dark { background-color: var(--bg-dark); }
.bg-black-50 { background-color: rgba(0, 0, 0, 0.5); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.backdrop-blur-md { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.min-h-screen { min-height: 100vh; }
.text-dark { color: var(--bg-dark); }

/* ============================================ */
/* HERO SECTION                                */
/* ============================================ */
.hero-section-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
}
.hero-video-container {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-video-element {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay-dark {
    position: absolute; inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}
.hero-content-wrapper {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
}
#heroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}
.hero-title-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-trust-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--brand-primary);  
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

 
.hero-cta-row {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f97316, #f59e0b);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}
.hero-btn-primary:hover { transform: scale(1.05); }
.hero-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
    text-decoration: none;
}
.hero-btn-secondary:hover { background-color: rgba(255, 255, 255, 0.2); }

/* Hero Text Spacing Helpers */
.hero-title-center { text-align: center; margin: 0; }
.hero-title-mt { text-align: center; margin: 0.5rem 0 0 0; }
.text-spacing-mx { margin: 0 0.2em; }
.text-spacing-ml { margin-left: 0.1em; }

/* ============================================ */
/* SECTION 1.5: IMPACT STATS                   */
/* ============================================ */
.impact-stats-section {
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.impact-stats-container { max-width: 72rem; margin: 0 auto; }
.impact-stats-header { text-align: center; margin-bottom: 2rem; }
.impact-section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-warm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.grid-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-stats { grid-template-columns: repeat(4, 1fr); }
}
.stat-card-glass {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.stat-card-glass:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.stat-number {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .stat-number { font-size: 3rem; line-height: 1; }
}
.stat-white { color: #ffffff; }
.stat-emerald { color: var(--emerald-light); }
.stat-orange { color: var(--gold-warm); }
.stat-label { font-size: 0.875rem; font-weight: 500; }
.stat-amber { color: var(--gold-sunrise); }
.stat-emerald-light { color: var(--emerald-mid); }
.stat-orange-light { color: var(--gold-warm); }

/* ============================================ */
/* SECTION 1.75: CATEGORIES OF PLASTIC         */
/* ============================================ */
.category-section {
    padding: 5rem 1.5rem;
    background-color: var(--cream-bg, #FFFFFF);
}
.category-container { max-width: 80rem; margin: 0 auto; }
.category-header { text-align: center; margin-bottom: 4rem; }
.category-subtitle {
    color: var(--emerald-mid);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.category-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-top: 0.5rem;
}
@media (min-width: 768px) { .category-title { font-size: 3rem; } }
.text-emerald { color: var(--emerald-light); }
.category-divider {
    width: 6rem;
    height: 0.375rem;
    background: linear-gradient(to right, var(--brand-primary), var(--emerald-mid));
    margin: 1rem auto 0;
    border-radius: 9999px;
}
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}
.plastic-card {
    padding: 0;
    background-color: #f8fafc;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.plastic-card:hover { transform: translateY(-8px); }
.plastic-card-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}
.plastic-card-content { padding: 1rem; flex-grow: 1; }
.plastic-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}
.badge-orange { background-color: #ffedd5; color: #c2410c; }
.badge-emerald { background-color: #d1fae5; color: #047857; }
.badge-blue { background-color: #dbeafe; color: #1d4ed8; }
.badge-purple { background-color: #f3e8ff; color: #7e22ce; }
.plastic-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}
.plastic-card-desc {
    color: #4b5563;
    font-size: 0.875rem;
}
.category-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--health-bg);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
    margin: 0 auto;
}
.btn-action:hover {
    background-color: var(--emerald-dark);
    transform: scale(1.05);
}

/* ============================================ */
/* SECTION 2: INDIAN EPR MANDATE TIMELINE      */
/* ============================================ */
.timeline-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
.timeline-container { max-width: 72rem; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 4rem; }
.timeline-subtitle {
    color: #ea580c;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.timeline-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-top: 0.5rem;
}
@media (min-width: 768px) { .timeline-title { font-size: 3rem; } }
.text-orange { color: #f97316; }
.text-blue { color: #3b82f6; }
.text-purple { color: #8b5cf6; }
.timeline-divider {
    width: 6rem;
    height: 0.375rem;
    background: linear-gradient(to right, #fb923c, #22c55e);
    margin: 1rem auto 0;
    border-radius: 9999px;
}
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
.timeline-column {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.timeline-item { position: relative; }
.timeline-line { position: relative; padding-left: 2.5rem; }
.timeline-line::before {
    content: '';
    position: absolute;
    left: 8px; top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #F97316, #10B981, #F97316);
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #F97316;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 4px #F97316;
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-dot.green { background: #10B981; box-shadow: 0 0 0 4px #10B981; }
.timeline-dot.blue { background: #3B82F6; box-shadow: 0 0 0 4px #3B82F6; }
.timeline-dot.purple { background: #8B5CF6; box-shadow: 0 0 0 4px #8B5CF6; }
.timeline-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    transition: box-shadow 0.3s ease;
}
.timeline-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.border-orange { border-left-color: #f97316; }
.border-emerald { border-left-color: #10b981; }
.border-blue { border-left-color: #3b82f6; }
.border-purple { border-left-color: #8b5cf6; }
.timeline-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.timeline-card-desc {
    color: #4b5563;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.timeline-image-wrapper { height: 100%; }
.timeline-image-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    position: relative;
}
.timeline-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
}
.timeline-float-icon {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: #f97316;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 2.25rem;
    animation: floatSlow 6s ease-in-out infinite;
}
.timeline-float-tag {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background-color: var(--bg-dark);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}
.timeline-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn-timeline-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--calc-bg);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
    margin: 0 auto;
}
.btn-timeline-cta:hover {
    background-color: #ca8a04;
    transform: scale(1.05);
}

/* ============================================ */
/* SECTION 3: CONVEYOR BELT PROCESS            */
/* ============================================ */
.process-section {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
}
.process-video-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.process-video { width: 100%; height: 100%; object-fit: cover; }
.process-overlay {
    position: absolute; inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.process-container {
    position: relative;
    z-index: 20;
    max-width: 80rem;
    margin: 0 auto;
}
.process-header { text-align: center; margin-bottom: 3rem; }
.process-subtitle {
    color: #fdba74;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.process-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.5rem;
}
.process-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0.5rem auto 0;
}
.horizontal-scroll-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #F97316 #1e293b;
}
.horizontal-scroll-track::-webkit-scrollbar { height: 8px; }
.horizontal-scroll-track::-webkit-scrollbar-thumb {
    background: #F97316;
    border-radius: 10px;
}
.horizontal-scroll-item {
    scroll-snap-align: start;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}
.process-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.process-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.process-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}
.bg-orange-soft { background-color: rgba(249, 115, 22, 0.3); }
.bg-blue-soft { background-color: rgba(59, 130, 246, 0.3); }
.bg-amber-soft { background-color: rgba(245, 158, 11, 0.3); }
.bg-emerald-soft { background-color: rgba(16, 185, 129, 0.3); }
.bg-purple-soft { background-color: rgba(139, 92, 246, 0.3); }
.text-amber { color: #fbbf24; }
.process-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.process-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.process-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.badge-orange-soft { background-color: rgba(251, 146, 60, 0.3); color: #fdba74; }
.badge-blue-soft { background-color: rgba(96, 165, 250, 0.3); color: #93c5fd; }
.badge-amber-soft { background-color: rgba(251, 191, 36, 0.3); color: #fcd34d; }
.badge-emerald-soft { background-color: rgba(52, 211, 153, 0.3); color: #6ee7b7; }
.badge-purple-soft { background-color: rgba(167, 139, 250, 0.3); color: #c4b5fd; }
.process-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn-process-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--health-bg);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
    margin: 0 auto;
}
.btn-process-cta:hover {
    background-color: var(--green-dark);
    transform: scale(1.05);
}

/* ============================================ */
/* SECTION 4: END PRODUCTS                     */
/* ============================================ */
.products-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
}
.products-container { max-width: 80rem; margin: 0 auto; }
.products-header { text-align: center; margin-bottom: 4rem; }
.products-subtitle {
    color: #059669;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.products-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-top: 0.5rem;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}
.border-top-amber { border-top-color: #f59e0b; }
.border-top-gray { border-top-color: #374151; }
.border-top-blue { border-top-color: #2563eb; }
.border-top-emerald { border-top-color: #10b981; }
.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.product-card:hover .product-icon { transform: scale(1.1); }
.text-gray { color: #374151; }
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}
.product-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}
.products-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn-products-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--calc-bg);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
    margin: 0 auto;
}
.btn-products-cta:hover {
    background-color: #ca8a04;
    transform: scale(1.05);
}

/* ============================================ */
/* SECTION 5: INDIA IMPACT                     */
/* ============================================ */
.impact-section {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
}
.impact-video-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.impact-video { width: 100%; height: 100%; object-fit: cover; }
.impact-overlay {
    position: absolute; inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.impact-container {
    position: relative;
    z-index: 20;
    max-width: 72rem;
    margin: 0 auto;
}
.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
.impact-subtitle {
    color: #fdba74;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.impact-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.5rem;
    line-height: 1.25;
}
.impact-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-top: 1rem;
    line-height: 1.625;
}
.impact-stats-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.impact-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}
.impact-stat-row.no-border { border-bottom: none; padding-bottom: 0; }
.impact-stat-row .stat-label { color: rgba(255, 255, 255, 0.7); }
.impact-stat-row .stat-value { font-weight: 700; }
.text-orange-light { color: #fdba74; }
.text-emerald-light { color: #6ee7b7; }
.text-blue-light { color: #93c5fd; }
.text-amber-light { color: #fcd34d; }
.impact-graphic-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinning-ring {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    border: 4px dashed #f97316;
    animation: spinSlow 15s linear infinite;
    z-index: 5;
}
.impact-graphic-center {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 26, 47, 0.8);
    backdrop-filter: blur(4px);
    border: 16px solid #f97316;
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 10;
}
.graphic-big-text {
    font-size: 3.75rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.graphic-sub-text {
    font-size: 0.875rem;
    color: #fdba74;
    margin-top: 0.5rem;
}
.graphic-tiny-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}
.impact-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn-impact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--health-bg);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
    margin: 0 auto;
}
.btn-impact-cta:hover {
    background-color: var(--green-dark);
    transform: scale(1.05);
}

/* ============================================ */
/* GREEN PARTNER CTA (Section 10)              */
/* ============================================ */

/* GREEN PARTNER CTA — Image fix */

/* GREEN PARTNER CTA — Full viewport, CENTER ALIGNED */
.green-partner-cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered horizontally */
    padding: 4rem 2rem;
    background-color: #0A2F44; /* Dark fallback if image fails */
    background: linear-gradient(rgba(10, 26, 47, 0.5), rgba(10, 26, 47, 0.7)),
                      url('../public/image/homepage/img-green-home-page.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; /* Base center alignment for all text */
}

.green-cta-bg {
    display: none; /* Hide separate background div */
}

.green-cta-container {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto; /* Center the container */
    text-align: center;
}

.green-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.green-cta-badge i { margin-right: 0.5rem; }

.green-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center; /* Centered title */
}

.green-cta-title .text-amber-200 { color: #fde68a; }

.green-cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2.5rem auto; /* Centered description with auto left/right margins */
    line-height: 1.6;
    text-align: center;
}

.green-cta-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centered form items */
    gap: 1rem;
    margin: 0 auto 1.5rem auto;
    max-width: 40rem;
}

@media (min-width: 640px) {
    .green-cta-form { flex-direction: row; }
}

.green-cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid transparent;
    outline: none;
    background: #ffffff;
    color: var(--bg-dark);
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.green-cta-input:focus {
    border-color: #fcd34d;
    box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.3);
}

.green-cta-btn {
    background: #ffffff;
    color: var(--bg-dark);
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.green-cta-btn:hover {
    background: #fef3c7;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.green-cta-btn i { color: #ea580c; font-size: 1.25rem; }

.green-cta-footer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    text-align: center; /* Centered footer */
}

.green-cta-footer i { margin-right: 0.4rem; color: rgba(255, 255, 255, 0.8); }

@media (max-width: 768px) {
    .green-partner-cta { padding: 3rem 1.5rem; }
    .green-cta-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}

/* ============================================ */
/* RESPONSIVE ADJUSTMENTS                      */
/* ============================================ */
@media (max-width: 768px) {
    .hero-trust-row { flex-wrap: wrap; gap: 0.5rem; }
    .hero-trust-badge { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .hero-btn-primary, .hero-btn-secondary { padding: 0.8rem 2rem; font-size: 0.9rem; }
    .impact-graphic-center { width: 14rem; height: 14rem; border-width: 12px; }
    .graphic-big-text { font-size: 2.5rem; }
    .spinning-ring { width: 16rem; height: 16rem; }
}
/* ============================================ */
/* CRITICAL FIXES — Hero, Process, CTA, Green  */
/* ============================================ */

/* FIX 1: Hero Headings — Larger Font + Stronger Gradients */
.hero-title-hindi {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-title-line1,
.hero-title-line2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.33;
    color: #FFFFFF;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.gradient-rich {
    background: linear-gradient(135deg, #00E676 0%, #34D399 40%, #FCD34D 70%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(0, 230, 118, 0.3);
    display: inline-block;
    margin: 0 0.15em;
}

.hindi-white {
    color: #FFFFFF;
    font-weight: 900;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* FIX 2: Process Section — Remove overflow that hides subsequent sections */
.process-section {
    position: relative;
    overflow: visible !important; /* Changed from hidden to visible */
}

.process-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushed behind content */
}

.process-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly lighter */
    z-index: 0;
}

/* FIX 3: Global CTA Visibility — Ensure it's not hidden */
.cta-section {
    position: relative;
    z-index: 100;
    background: transparent;
}





@media (max-width: 768px) {
    .timeline-image-wrapper { height: 350px !important; min-height: 350px !important; }
    .timeline-image-card { height: 100% !important; }
}
