/* Hero Section Background and Overlay */
.hero-section {
    background-image: url('../images/lic.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
}

/* Ensure buttons are properly styled */
.hero-section .btn.indexz {
    z-index: 3; /* Ensure buttons are clickable */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh; /* Slightly shorter on mobile */
    }
    .hero-section h1 {
        font-size: 2.5rem; /* Adjust font size for mobile */
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
}

.award {
    height: 200px;
}


.img-fluid-xx {
    max-width: 100%;
    height: 440px;
}