/* MAIN HERO WRAPPER */
.hero-wrapper {
    margin: 20px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 92vh;
}

/* EACH SLIDE */
.hero-wrapper .carousel-item {
    position: relative;
    height: 92vh;
}

/* IMAGE */
.hero-img {
    height: 92vh;
    object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 60, 95, 0.55);
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* TEXT STYLES */
.mini-badge {
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 86px;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 26px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 5 !important;
}


/* RESPONSIVE */
@media(max-width:991px) {
    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

@media(max-width:576px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}


/* ============================================== */
/* ============================================= */

/* second section card css  */

.second-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
    transition: 0.4s;
    align-items: stretch;
}






.blog-section {
    background: #f4f9fc;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
    transition: 0.4s;
    display: flex;
    align-items: stretch;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 4px 12px 0px rgba(158, 129, 254, 0.35);
}

.blog-img img {
    object-fit: contain;
    background: #eef6fb;
    padding: 10px;
    border-radius: 12px;
}

.blog-date {
    font-size: 13px;
    color: #0a4b7c;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}