﻿
    /* ===== HERO SECTION ===== */
    .hero {
    background: linear-gradient(120deg,#f8f9fa,#e9ecef);
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
}

/* TEXT */
.hero-text {
    max-width: 50%;
}

    .hero-text h1 {
        font-size: 55px;
        font-weight: 700;
        color: #2b59c3;
    }

/* FLOAT CARD */
.hero-card {
    position: absolute;
    right: 50px;
    top: 80px;
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

    .hero-card h5 {
        font-weight: 600;
    }

    .hero-card button {
        width: 100%;
        margin-top: 10px;
    }

/* SIDE FLOAT ICONS */
.side-icons {
    position: fixed;
    right: 10px;
    top: 200px;
}

    .side-icons div {
        background: #0b6e3c;
        color: #fff;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
        text-align: center;
    }

/* LEFT TAG */
.left-tag {
    position: fixed;
    left: 0;
    top: 250px;
    background: #0b6e3c;
    color: #fff;
    padding: 10px;
    writing-mode: vertical-rl;
}

/* ===== CARDS SECTION ===== */
.cards {
    padding: 40px;
    background: #f8f9fa;
}

.card-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #1c3d6e;
    color: #fff;
    padding: 20px;
    text-align: center;
}


/* ================= SLIDER ================= ==================================================================================================================== */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

/*.slider-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}*/
.slider-img {
    width: 100%;
    height: 400px; /* full screen height */
    object-fit: cover; /* image crop but distortion nahi */
}




/* Mobile Fix */
@media (max-width: 768px) {
    .slider-img {
        height: 260px;
    }
}

/* ================= CAPTION ================= */
.carousel-caption {
    z-index: 2;
}


/*.custom-caption {
    bottom: 20%;
}*/

.carousel-item {
    transition: transform 1s ease-in-out;
}

.custom-caption {
    left: 8%;
    right: auto;
    bottom: 30%;
    max-width: 600px;
    text-align: left;
    font-family: 'Baloo 2', cursive;
}

    .custom-caption h1 {
        font-size: 3.2rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    }

        .custom-caption h1 span {
            color: #FFD966;
        }

    .custom-caption p {
        font-size: 1.4rem;
        color: #fff;
        margin: 15px 0 25px;
        max-width: 700px;
    }

    .custom-caption .btn {
        border-radius: 40px;
        padding: 10px 28px;
        font-size: 1.1rem;
    }
.animate-text {
    opacity: 1;
}
@media (max-width: 768px) {
    .custom-caption {
        bottom: 10%;
        padding: 10px;
    }

        .custom-caption h1 {
            font-size: 16px;
        }

        .custom-caption p {
            font-size: 12px;
        }
}


/* ================= TEXT ANIMATION ================= */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.delay-3 {
    animation-delay: 1.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .slider-img {
        height: 250px; /* mobile friendly height */
    }
}

/*<!-- QUICK LINKS ============================================================================================================================================================== -->*/
/* SLIDER IMAGE FULL WIDTH */
.slider-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

/* CAPTION CENTER */
.custom-caption {
    bottom: 25%;
}

/* QUICK LINKS OVER SLIDER */
.quick-links {
    position: absolute;
    bottom: -50px; /* thoda slider ke neeche overlap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* CARD DESIGN */
.quick-card {
    background: rgba(255, 255, 255, 0.85); /* transparent white */
    backdrop-filter: blur(8px); /* glass effect */
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .quick-card:hover {
        transform: translateY(-5px);
    }

    /* ICON COLOR */
    .quick-card i {
        color: #fbb034;
        margin-bottom: 10px;
    }
/* QUICK LINKS WRAPPER */
.quick-links {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

    /* ROW SCROLL ON MOBILE */
    .quick-links .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px;
        scrollbar-width: none;
    }

        .quick-links .row::-webkit-scrollbar {
            display: none;
        }

    /* COLUMN FIX WIDTH */
    .quick-links .col-md-3 {
        flex: 0 0 250px;
    }

/* CARD DESIGN (GLASS) */
.quick-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    /* HOVER EFFECT */
    .quick-card:hover {
        transform: translateY(-8px) scale(1.03);
    }

    /* ICON STYLE */
    .quick-card i {
        font-size: 30px;
        color: #ff9800;
        margin-bottom: 10px;
        transition: 0.3s;
    }

    /* ICON ANIMATION */
    .quick-card:hover i {
        transform: scale(1.2) rotate(5deg);
    }

    /* TEXT */
    .quick-card h6 {
        font-weight: 600;
    }

/* MOBILE ADJUST */
@media (max-width: 768px) {
    .quick-links {
        bottom: -40px;
    }
}
/* QUICK LINKS WRAPPER */
.quick-links {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 1100px; /* center control */
}

    /* DESKTOP CENTER ALIGN */
    .quick-links .row {
        display: flex;
        justify-content: center; /* CENTER */
        gap: 20px;
        flex-wrap: wrap;
    }

    /* COLUMN FIX */
    .quick-links .col-md-3 {
        flex: 0 0 220px;
    }

/* CARD */
.quick-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    /* HOVER */
    .quick-card:hover {
        transform: translateY(-8px) scale(1.03);
    }

    /* ICON */
    .quick-card i {
        background: rgba(255,152,0,0.1);
        padding: 15px;
        border-radius: 50%;
    }

    /* TEXT */
    .quick-card h6 {
        font-weight: 600;
        margin: 0;
    }

/* 📱 MOBILE SCROLL */
@media (max-width: 768px) {

    .quick-links {
        bottom: -40px;
    }

        .quick-links .row {
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: flex-start; /* mobile me left scroll */
            padding: 10px;
        }

        .quick-links .col-md-3 {
            flex: 0 0 220px;
        }
}