/* ================= Body & Global ================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fdfdfd;
}
h1,h2,h3,h4,h5,h6 { margin:0 0 10px 0; }
a { text-decoration:none; }


/* ================= Global Responsive ================= */
.hero-overlay h1 { font-size: 3rem; }
.hero-overlay p { font-size: 1.2rem; }


/* ================= Media Queries ================= */
@media (max-width: 992px) {
    .hero-overlay h1 { font-size: 2.5rem; }
    .hero-overlay p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero-overlay h1 { font-size: 2rem; }
    .hero-overlay p { font-size: 0.9rem; }
    .info-notification-section { padding: 40px 0; }
    .quick-links-section { 
        padding-top: 20px !important;  /* padding kam kiya mobile ke liye */
        padding-bottom: 40px !important;
        margin-top: 0 !important; /* agar margin ho toh remove karne ke liye */
    }
    .why-choose-us { padding: 3rem 0; }
    .testimonial-item { min-width: 250px; }
    .contact-form { padding: 20px; }
    .hero-slider .carousel-inner { height: 40vh; }
}

@media (max-width: 576px) {
    .hero-overlay h1 { font-size: 1.5rem; }
    .hero-overlay p { font-size: 0.85rem; }
    .quick-link-card { padding: 20px; }
    .choose-box { padding: 20px 15px; }
    .testimonial-item { min-width: 200px; }
}



/* ================= Hero Slider ================= */
/* Desktop: image full cover karta hai */
.hero-slider .carousel-item img.hero-img {
    width: 100%;
    height: 50vh; /* updated height to reduce overall hero height */
    object-fit: cover; /* Full container cover, crop ho sakta hai */
    object-position: center;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Mobile: poora image dikhe bina cut ke */
@media (max-width: 767px) {
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: auto !important;  /* height auto karein */
        max-height: 35vh; /* slightly smaller for mobile */
    }

    .hero-slider .carousel-item img.hero-img {
        height: auto !important;
        max-height: 35vh;  /* updated mobile max height */
        object-fit: contain !important; /* poora image dikhaye */
        width: 100% !important;
    }

    /* Hero slider aur quick links ke beech gap hatao */
    .quick-links-section {
        padding-top: 0 !important; /* zero gap upar */
    }

    .hero-slider {
        margin-bottom: 0 !important; /* zero gap niche */
        padding-bottom: 0 !important;
    }
}



/* Quick Links Section */
.quick-links-section {
    background-color: #f4f6f9;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 0; /* ensure no extra margin */
}






/* ================= Why Choose Us ================= */
.why-choose-us {
    background-color: #040317; /* dark background */
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.why-choose-us h3 {
    font-weight: 600;
    color: #fff;
}

.choose-box {
    background-color: #101024; /* slightly lighter than section bg */
    padding: 30px 20px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    background-color: #040317; /* icon background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #FC9C05;
}

.choose-box h5 {
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
}

.choose-box p {
    font-size: 15px;
    margin-top: 8px;
    color: #dee2e6;
}




/* ================= Buttons ================= */
.btn-primary { background-color:#007bff; border-color:#007bff; transition:0.3s; }
.btn-primary:hover { background-color:#0056b3; border-color:#0056b3; }
.btn-warning { background-color:#ffc107; border-color:#ffc107; }
.btn-warning:hover { background-color:#e0a800; border-color:#d39e00; }
.btn-success { background-color:#28a745; border-color:#28a745; }
.btn-success:hover { background-color:#218838; border-color:#1e7e34; }

/* ================= Utility ================= */
.text-center { text-align:center !important; }
.mb-4 { margin-bottom:1.5rem !important; }
.py-5 { padding-top:3rem !important; padding-bottom:3rem !important; }
.pt-5 { padding-top:3rem !important; }
.pb-3 { padding-bottom:1rem !important; }




.quick-links-section h3 {
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-link-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e0e0e0; /* subtle light gray border */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
    display: block;
    color: #333;
}

.quick-link-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background-color: #e9f1fb;
    text-decoration: none;
}

.quick-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: background-color 0.3s, transform 0.3s;
}

.quick-link-card:hover .quick-icon {
    background-color: #0056b3;
    transform: scale(1.1);
}

.quick-link-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s;
}

.quick-link-card:hover h5 {
    color: #007bff;
}
