/* Smooth scrolling effect */
html {
    scroll-behavior: smooth;
}

/* Additional styles for the facility section */
.facility {
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
}
.nav-item {
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;

}
.btn-primary{
    background-color: #102072;    
    border-color: #102072;    
}

.nav-item:hover a {
    color: whitesmoke;
    
}
.nav-item:hover{
    background-color: #102072;    
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.active_nav{
    color: #102072;
    text-decoration: underline;
    text-decoration-color:whitesmoke;
    background-color: #102072;    
    border-radius: 10px;
}
.active_nav a{
    color: whitesmoke;
}


body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size:16px;
    overflow-x: hidden;
}
.txt-primary{
    color: #102072;
}
.back-primary{
    background-color: #102072;    
}

.hero {
    background: url('img/100_0938.webp') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    text-align: left;
    padding-left: 100px;
    position: relative;
    overflow: hidden;
    padding-top: 20vh;

}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 32, 114, 0.7), rgba(0, 0, 0, 0.2));
}
.company_profile {
background: url('img/IMG-20240118-WA0023.jpg') no-repeat left top/cover;
    position: relative;
    overflow: hidden;    
    display: flex;
}
.company_profile::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 32, 114, 0.7), rgba(16, 32, 114, 0.8));
}
.company_profile div{
    z-index: 3;

}
.hero h1, .company_profile h1 {
    z-index: 3;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    font-size:50px;
}
.d1{
    font-size: 65px;
}
.home-img{
    width: 400px; height: auto;
}

@media (max-width: 1030px) {
    .hero {
        height:60vh
    }
    .d1{
        font-size: 45px;
    }
    .home-img{
        width: 300px; height: auto;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-left: 20px;
        padding-top: 7.5vh;
        height:40vh
    }
    .hero h1{
        font-size:30px;
    }
    .home-img{
        width: 100%; height: auto;
    }

}

.text-justify{
    text-align: justify;
}
