@keyframes pulse-marker {

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

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.pulse-marker {
    animation: pulse-marker 2s ease-in-out infinite;
}

.state-path.active-state {
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-path.active-state:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.state-path.clickable {
    cursor: pointer;
}

.state-path.clickable:hover {
    opacity: 0.85;
}

.india-map {
    max-height: 500px;
}

.india-map-interactive {
    max-height: 450px;
}


.map-label {
    font-family: 'Nunito Sans', sans-serif;
    pointer-events: none;
}

.state-card {
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-2px);
}

.state-card.active {
    border-left: 4px solid currentColor;
}

.state-detail-card {
    transition: all 0.3s ease;
}

.state-detail-card:hover {
    transform: translateX(5px);
}

.counter {
    display: inline-block;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.hero-gradient {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 50%, #f5f0e8 100%);
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00c2cb;
    transition: width 0.3s ease;
}

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

.card-hover {
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff5757 0%, #ff6b6b 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 87, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #fac82e 0%, #00c2cb 50%, #cb6ce6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    transition: width 1.5s ease-in-out;
}

@media (max-width: 768px) {

    .india-map,
    .india-map-interactive {
        max-height: 350px;
    }

    .map-label {
        font-size: 8px;
    }
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: rgba(0, 194, 203, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.step-connector {
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, currentColor, transparent);
}

.framework-step {
    position: relative;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .framework-step::after {
        content: '→';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        color: #d1d5db;
        font-size: 24px;
    }

    .framework-step:last-child::after {
        display: none;
    }
}

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

input:focus,
button:focus {
    outline: 2px solid #00c2cb;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #00c2cb;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}