:root {
    --cyan-primary: #0dcaf0;
    --navy-bg: #010b1a;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --neon-blue: #00d4ff;
}

body {
    /* Background transparent rakha hai taake Layout wala Earth aur Stars nazar aayein */
    background-color: transparent !important;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding-top: 130px;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* --- NEW: Stats Counter & Live Dot Styles (Professional & Non-Destructive) --- */

/* 1. Numbers Highlight Effect - Jab numbers barhein to wo chamkein */
.text-gradient-neon {
    color: var(--cyan-primary);
    font-weight: 800;
    text-shadow: 0 0 15px rgba(13, 202, 240, 0.5), 0 0 30px rgba(13, 202, 240, 0.2);
    letter-spacing: -1px;
}

/* 2. Green Pulsing Dot - For 24/7 Availability */
.pulse-green {
    width: 10px;
    height: 10px;
    background: #198754;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(25, 135, 84, 0.4);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}

/* 3. Impact Section Card Enhancement */
#impact .glass-card {
    border-left: 4px solid var(--cyan-primary);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

/* --- Marketing Cards Alignment Fix --- */
.marketing-card img,
.marketing-card .text-center {
    height: 200px !important; /* Tamam cards ki image aur TikTok icon box ki height equal kar di */
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NO CHANGES BELOW - ALL YOUR STYLES ARE PROTECTED --- */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .glass-card:hover {
        border-color: var(--cyan-primary);
        transform: translateY(-8px);
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    }

.form-control {
    transition: 0.3s;
    border-radius: 10px;
}

    .form-control:focus {
        background: rgba(255,255,255,0.05) !important;
        border-color: var(--cyan-primary) !important;
        box-shadow: 0 0 15px rgba(13, 202, 240, 0.3) !important;
        color: white !important;
    }

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 202, 240, 0.2);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
}

.cert-crop {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
}

    .cert-crop img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.glass-card:hover .cert-crop img {
    transform: scale(1.1);
}

.progress {
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    height: 8px;
}

.progress-bar {
    border-radius: 10px;
    background-color: var(--cyan-primary) !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1) rotate(10deg);
    }

.modal-content {
    border-radius: 20px;
}

@media (max-width: 768px) {
    body {
        padding-top: 115px;
    }

    .responsive-h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 20px !important;
        margin-bottom: 15px;
    }

    .cert-crop {
        height: 140px;
    }

    .map-container {
        height: 200px !important;
    }

    /* NEW: Counter Adjustment for Mobile */
    .display-5 {
        font-size: 2.2rem !important;
    }
}
