/* --- STYLISH HERO SECTION UPGRADES --- */
    .hero-section {
        padding: 50px 0 30px 0;
        width: 100%;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        gap: 40px;
        align-items: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 35px;
        border-radius: 24px;
        border: 1px solid var(--border-color);
        box-shadow: var(--card-shadow);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-title h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 44px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 5px;
        color: var(--text-main);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-title h2 span {
        background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    .time-cards {
        display: flex;
        gap: 20px;
        margin-bottom: 5px;
    }

    .time-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 8px 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
        box-shadow: var(--card-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .time-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--glow-blue);
    }

    .time-card-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(14, 165, 233, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-blue);
        font-size: 20px;
        flex-shrink: 0;
    }

    .time-card:nth-child(2) .time-card-icon-wrap {
        background: rgba(249, 115, 22, 0.1);
        color: var(--accent-orange);
    }

    .time-info p {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }

    .time-info h4 {
        font-family: 'Oswald', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--text-main);
        margin-top: 2px;
    }

    .date-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(90deg, var(--text-main) 0%, #334155 100%);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        border: none;
        box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
        align-self: flex-start;
    }

    .date-badge i {
        color: var(--accent-orange);
    }

    /* --- MATHEMATICALLY PERFECTED VECTOR TARGET CONTAINER --- */
    .hero-graphic-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 280px;
        width: 100%;
    }

    .target-container {
    position: relative;
    /* Fixed width/height hata dein */
    width: fit-content; 
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Agar image ke aas-paas padding chahiye to de sakte hain */
    padding: 10px; 
}

.target-container img {
    display: block;
    max-width: 100%; /* Image container se bahar nahi jayegi */
    height: auto;    /* Aspect ratio maintain rahega */
}

    .vector-target-board {
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: #ffffff;
        border: 14px solid #ef4444; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.1), var(--glow-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float 4s ease-in-out infinite;
        z-index: 2;
    }

    .vector-target-board::before {
        content: '';
        width: 110px;
        height: 110px;
        border-radius: 50%;
        border: 12px solid #ffffff; 
        background: #0ea5e9; 
        display: block;
    }

    .vector-target-board::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f97316; 
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    }

    .target-crosshair-h {
        position: absolute;
        width: 220px;
        height: 2px;
        background: rgba(14, 165, 233, 0.2);
        z-index: 1;
        left: 10px;
        top: 120px; 
    }
    
    .target-crosshair-v {
        position: absolute;
        width: 2px;
        height: 220px;
        background: rgba(14, 165, 233, 0.2);
        z-index: 1;
        left: 120px; 
        top: 10px;
    }

    .vector-shooting-arrow {
        position: absolute;
        z-index: 5;
        display: flex;
        align-items: center;
        right: 50%; 
        top: 50%; 
        transform-origin: 100% 50%; 
        transform: translate(0, -50%) rotate(-35deg);
        animation: arrow-entrance 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .v-arrow-shaft {
        width: 95px;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-orange), #1e293b);
        border-radius: 2px;
        position: relative;
    }

    .v-arrow-shaft::before {
        content: '';
        position: absolute;
        left: -4px;
        top: 0;
        width: 4px;
        height: 5px;
        background: #cbd5e1; 
        border-radius: 2px 0 0 2px;
    }

    .v-arrow-head {
        border: 8px solid transparent;
        border-left: 16px solid var(--accent-orange);
        margin-left: -2px; 
    }

    .v-arrow-feathers {
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
    }

    .v-arrow-feathers::before {
        content: '';
        position: absolute;
        top: -3px;
        left: 0;
        width: 20px;
        height: 8px;
        background: linear-gradient(135deg, var(--accent-orange), #ff9f43);
        clip-path: polygon(100% 100%, 0 100%, 35% 0, 100% 0);
        transform: skewX(-20deg);
        border-radius: 1px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .v-arrow-feathers::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 20px;
        height: 8px;
        background: linear-gradient(45deg, var(--accent-blue), #00d2d3);
        clip-path: polygon(100% 0, 0 0, 35% 100%, 100% 100%);
        transform: skewX(20deg);
        border-radius: 1px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    @keyframes arrow-entrance {
        0% {
            transform: translate(-100px, -150px) rotate(-35deg);
            opacity: 0;
        }
        100% {
            transform: translate(0, -50%) rotate(-35deg);
            opacity: 1;
        }
    }

    /* --- MOBILE RESPONSIVE 2X2 GRID UPDATES --- */
    @media (max-width: 992px) {
        .hero-grid { grid-template-columns: 1fr; padding: 25px; }
        .hero-graphic-wrap { display: flex; height: 250px; order: -1; }
        .hero-title h2 { font-size: 36px; text-align: center; }
        .date-badge { align-self: center; }
    }

    @media (max-width: 768px) {
        /* 2x2 grid for Time Cards */
        .time-cards {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 12px !important;
        }
        
        /* 2x2 grid for Result Boxes */
        .results-grid {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 12px !important;
        }

        .hero-title h2 { font-size: 30px; }
    }

    @media (max-width: 520px) {
        .hero-graphic-wrap { display: none; } 
        .hero-title h2 { font-size: 26px; }
    }

    /* Naya section layout - Full Width */
.info-links-section {
    width: 100%;
    margin-bottom: 40px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    width: 100%; /* Yeh card ko full width dega */
}

/* Agar purani grid class use kar rahe hain, to use reset karein */
.info-links-grid {
    display: block !important;
}