/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
}

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

/* Color Variables */
:root {
    --theme-primary: hsl(0, 0%, 67%);
    --theme-secondary: hsl(0, 0%, 47%);
    --theme-kidnapper-green: hsl(73, 38%, 90%);
    --theme-primary-bronze-olive: hsl(72, 76%, 16%);
    --theme-spring-wood: hsl(70, 38%, 97%);
    --theme-secondary-lima: hsl(82, 82%, 43%);
    --theme-amber: hsl(48, 100%, 49%);
    --theme-sun-yellow: hsl(40, 95%, 52%);
    --theme-dark: hsl(72, 76%, 7%);
    --theme-intervention-green: hsl(72, 76%, 10%);
    --theme-revolver-green: hsl(72, 76%, 18%);
    --theme-white: hsl(0, 0%, 100%);
    --theme-blue-dark: hsl(222, 100%, 19%);
    --theme-cornflower-blue: hsl(229, 78%, 11%);
    --theme-malibu-blue: hsl(198, 95%, 65%);
    --theme-pattens-blue: hsl(198, 95%, 92%);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://face-cii.in/wp-content/uploads/2025/07/photo-1500937386664-56d1dfef3854.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://face-cii.in/wp-content/uploads/2025/07/intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.collaboration-bg {
    background-image: url('https://face-cii.in/wp-content/uploads/2025/07/intro.png');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.floating-1 {
    top: 80px;
    left: 40px;
    width: 64px;
    height: 64px;
    background: var(--theme-amber);
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 80px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: var(--theme-secondary-lima);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    color: white;
}

.title-line-2 {
    display: block;
    color: var(--theme-amber);
}

.title-line-3 {
    display: block;
    color: var(--theme-secondary-lima);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-amber) 0%, var(--theme-sun-yellow) 100%);
    color: var(--theme-dark);
}

.btn-secondary {
    border: 2px solid var(--theme-white);
    color: var(--theme-white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--theme-white);
    color: var(--theme-dark);
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--theme-amber);
    margin-bottom: 4px;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--theme-kidnapper-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--theme-white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.wheel {
    width: 4px;
    height: 12px;
    background: var(--theme-white);
    border-radius: 2px;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

/* Vision & Mission Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(254deg, var(--theme-secondary-lima) -300%, var(--theme-spring-wood) 100%)
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--theme-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
}

.section-subheading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--theme-primary-bronze-olive);
    margin-bottom: 24px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-amber) 0%, var(--theme-sun-yellow) 100%);
    margin: 0 auto;
}

.section-divider.small {
    width: 64px;
    background: linear-gradient(135deg, var(--theme-secondary-lima) 0%, var(--theme-primary-bronze-olive) 100%);
}

.vision-mission-grid {
    display: grid;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vision-card, .mission-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px !important;
    background: none !important;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.icon-green {
    background: linear-gradient(135deg, var(--theme-secondary-lima) 0%, var(--theme-primary-bronze-olive) 100%);
}

.icon-amber {
    background: linear-gradient(135deg, var(--theme-amber) 0%, var(--theme-sun-yellow) 100%);
}

.icon-inner {
    width: 32px;
    height: 32px;
    background: var(--theme-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.icon-green .icon-dot {
    background: var(--theme-secondary-lima);
}

.icon-amber .icon-dot {
    background: var(--theme-sun-yellow);
}

.card-header h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: var(--theme-dark);
}

.vision-card p, .mission-card p {
    color: var(--theme-secondary);
    font-size: 18px;
    line-height: 1.7;
}

.mission-points p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bullet {
    width: 12px;
    height: 12px;
    background: var(--theme-secondary-lima);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.objective-card {
    background: var(--theme-white);
    border-radius: 24px;
    padding: clamp(32px, 8vw, 48px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.objective-header {
    margin-bottom: 32px;
}

.objective-header h3 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 16px;
}

.objective-card p {
    color: var(--theme-secondary);
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(75deg, var(--theme-secondary-lima) -300%, var(--theme-spring-wood) 100%);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--theme-primary-bronze-olive);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 41.666667%;
    padding: 0 32px;
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-item.right .timeline-content {
    text-align: left;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.timeline-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.timeline-item.left .timeline-header {
    justify-content: flex-end;
}

.timeline-item.right .timeline-header {
    justify-content: flex-start;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 12px;
}

.timeline-dot.lima {
    background: var(--theme-secondary-lima);
}

.timeline-dot.amber {
    background: var(--theme-amber);
}

.timeline-dot.sun-yellow {
    background: var(--theme-sun-yellow);
}

.timeline-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--theme-dark);
}

.timeline-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-primary-bronze-olive);
    margin-bottom: 8px;
}

.timeline-count {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--theme-secondary-lima);
    margin-bottom: 8px;
}

.timeline-card p {
    color: var(--theme-secondary);
}

.timeline-marker {
    width: 16.666667%;
    display: flex;
    justify-content: center;
}

.marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    position: relative;
}

.marker.lima {
    background: var(--theme-secondary-lima);
}

.marker.amber {
    background: var(--theme-amber);
}

.marker.sun-yellow {
    background: var(--theme-sun-yellow);
}

.marker::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.marker.lima::after {
    background: var(--theme-secondary-lima);
}

.marker.amber::after {
    background: var(--theme-amber);
}

.marker.sun-yellow::after {
    background: var(--theme-sun-yellow);
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.timeline-summary {
    margin-top: 64px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .summary-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.summary-stats .summary-stat:nth-child(odd) .summary-number {
    color: var(--theme-secondary-lima);
}

.summary-stats .summary-stat:nth-child(even) .summary-number {
    color: var(--theme-amber);
}

.summary-label {
    color: var(--theme-secondary);
}

/* Areas of Intervention Section */
.interventions-section {
    padding: 80px 0;
    background: linear-gradient(265deg, var(--theme-secondary-lima) -300%, var(--theme-spring-wood) 100%)
}

.interventions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 64px;
}

.intervention-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.intervention-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.intervention-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.intervention-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

.intervention-icon.lima {
    color: var(--theme-secondary-lima);
}

.intervention-icon.amber {
    color: var(--theme-amber);
}

.intervention-icon.malibu-blue {
    color: var(--theme-malibu-blue);
}

.intervention-icon.sun-yellow {
    color: var(--theme-secondary-lima);
}

.intervention-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--theme-dark);
    text-align: center;
    margin-bottom: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intervention-details {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.intervention-details.expanded {
    max-height: 400px;
    opacity: 1;
    border-top: 1px solid var(--theme-primary-bronze-olive);
    padding-top: 16px;
    margin-top: 16px;
}

.intervention-points {
    list-style: none;
}

.intervention-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--theme-secondary);
}

.intervention-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--theme-secondary-lima);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.section-cta {
    text-align: center;
}

/* FPO Startup Section */
.fpo-startup-section {
    padding: 80px 0;
    background: linear-gradient(1deg, var(--theme-secondary-lima) -200%, var(--theme-spring-wood) 100%);
}

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

.startup-intro {
    display: grid;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    /* .startup-intro {
        grid-template-columns: repeat(2, 1fr);
    } */
}

.intro-card {
    background: var(--theme-spring-wood);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.intro-card p {
    font-size: 1.125rem;
    color: var(--theme-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.image-card {
    background: var(--theme-spring-wood);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.image-card img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 16px;
}

.image-caption {
    text-align: center;
    margin-top: 16px;
}

.image-caption h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 8px;
}

.image-caption p {
    color: var(--theme-primary-bronze-olive);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.benefit-card {
    background: var(--theme-spring-wood);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

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

.benefit-content {
    padding: 24px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 12px;
}

.benefit-description {
    color: var(--theme-secondary);
}

.impact-statement {
    background: var(--theme-spring-wood);
    border-radius: 24px;
    padding: clamp(32px, 8vw, 48px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.impact-content h4 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 24px;
}

.impact-content p {
    font-size: 1.125rem;
    color: var(--theme-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-content p:last-child {
    margin-bottom: 0;
}

.impact-content strong {
    font-weight: bold;
}

.impact-content p:last-child strong:nth-child(1) {
    color: var(--theme-secondary-lima);
}

.impact-content p:last-child strong:nth-child(2) {
    color: var(--theme-amber);
}

.impact-content p:last-child strong:nth-child(3) {
    color: var(--theme-secondary-lima);
}

/* Collaboration Hero */
.collaboration-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--theme-dark);
    color: var(--theme-white);
    padding: 64px 0;
}

.footer-content {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo img {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--theme-white);
    margin-bottom: 8px;
}

.footer-logo p {
    color: var(--theme-kidnapper-green);
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--theme-secondary-lima);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--theme-kidnapper-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--theme-amber);
}

.contact-info p {
    color: var(--theme-kidnapper-green);
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-info span {
    margin-right: 12px;
}

.footer-stats {
    border-top: 1px solid var(--theme-intervention-green);
    padding-top: 32px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-stats .footer-stat:nth-child(odd) .footer-stat-number {
    color: var(--theme-amber);
}

.footer-stats .footer-stat:nth-child(even) .footer-stat-number {
    color: var(--theme-secondary-lima);
}

.footer-stat-label {
    color: var(--theme-kidnapper-green);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--theme-intervention-green);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: var(--theme-kidnapper-green);
    font-size: 14px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-bottom p {
        margin-bottom: 0;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--theme-kidnapper-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--theme-amber);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-line {
        left: 32px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        padding: 0;
        text-align: left !important;
    }
    
    .timeline-header {
        justify-content: flex-start !important;
    }
    
    .timeline-marker {
        position: absolute;
        left: 20px;
        width: auto;
    }
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus {
    /* outline: 2px solid var(--theme-amber); */
    outline-offset: 2px;
}


#indiaMap .commodity-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
  }
 
#indiaMap {
height: 800px;
width: 48vw;
min-width: 320px;
border: 2px solid #ddd;
}

.leaflet-control-attribution {
    display: none;
}


.enhanced-intro {
    margin-bottom: 3rem;
}

.intro-highlight-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.icon-and-title {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.soil-intro-bg {
    background-image: url('https://face-cii.in/wp-content/uploads/2025/07/intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
}

.soil-intro-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* Light overlay for readability */
    z-index: 1;
}

.soil-intro-bg .container {
    position: relative;
    z-index: 2;
}


.intro-icon img {
    width: 100px;
    height: 100px;
}

.intro-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.3rem;
}

.main-heading {
    font-size: 1.8rem;
    margin: 0;
}

.sub-heading {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.green-text {
    color: #6d8e4d;
}

.intro-description p {
    margin-top: 0.8rem;
}



@media (max-width: 768px) {
   
    #indiaMap {
    height: 800px;
    width: 100vw;
    /*min-width: 320px;*/
    border: 2px solid #ddd;
    } 
    
}

