body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8fafc;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #1d4ed8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

.colour-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.colour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.13);
    border-color: #bfdbfe;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#applyModal {
    transition: opacity 0.3s ease;
}

.modal-content {
    transition: transform 0.3s ease;
}

/* =========================================
   HERO SECTION RESPONSIVE CSS
========================================= */
.hero {
    width: 100%;
    position: relative;
    /* Default gap for Mobile */
    margin-top: 105px; 
    line-height: 0;
    display: block;
    background-color: #0f172a;
}

/* Tablet, Laptop aur TV ke hisaab se Navbar Gap fix */
@media (min-width: 768px) { .hero { margin-top: 125px; } }
@media (min-width: 1024px) { .hero { margin-top: 140px; } }
@media (min-width: 1536px) { .hero { margin-top: 150px; } } /* For Large TV/Monitors */

.hero-image {
    width: 100%;
    height: auto;
    min-height: 35vh; /* Mobile me jyada chhota na ho */
    max-height: 85vh; /* TV/System pe extra bada na ho jaye */
    object-fit: cover; /* Image ko stretch ya pichakne se bachaega */
    object-position: center; /* Image hamesha center se focus hogi */
    display: block;
    filter: brightness(1.12) contrast(1.08) saturate(1.08);
    transition: transform 0.8s ease, filter 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    filter: brightness(1.18) contrast(1.1) saturate(1.12);
}

@media (max-width: 640px) {
    .colour-card:hover {
        transform: none;
    }
    
    body {
        background: #f8fafc;
    }
    
    .hero-image {
        filter: brightness(1.15) contrast(1.05) saturate(1.05);
        object-position: top center; /* Mobile me thoda upar ka hissa focus hoga */
    }
}