

:root {
    --navbg: #262626;
    --font-base: "Oswald";
    --navColor: #525452;
    --fontcolor:#eb0046;
    --fontlight: #bbb;
    --backcol: #999;
    --letterfont: #eb0046;
}
.carousel {
    max-height: 60vh;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 60vh;
}

.carousel-caption{
    margin-bottom: 100px;
}
.carousel-caption h5{
    font-size: 3rem;
}
.carousel-caption p{
    font-size: 2rem;
    /* font-weight: bold; */
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.2);
    
    /* Adjust the scale factor for the zoom effect */
}


.carousel-item {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for overlay opacity */
    z-index: 1;
}

.carousel-caption {
    z-index: 2; /* Ensure that the caption appears above the overlay */
}
@media (max-width: 1100px) {
    .carousel {
        max-height: 30vh;
        overflow: hidden;
    }
    
    .carousel-item {
        position: relative;
        height: 30vh;
    }
    
}
.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-item:hover .overlay {
    opacity: 1;
} */

.overlay h5,
.overlay p {
    margin: 0;
}

/*ABOUT*/
.aboutsection{
    margin-top: 1rem;
}
.card-main{
    padding: 3rem;
}



.rounded-start{
    height: 100%;
}

.aboutsection h2,
.aboutsection h5{
    color: var(--fontcolor);
}
.aboutsection p{
    color: var(--letterfont);
}
.btnall{
    background-color: #eb0046;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
}
.btnall:hover{
    background-color: white;
    color: #eb0046;
    border: 2px solid #eb0046;
}

.containliner{
    padding: 1rem;
    background:linear-gradient(45deg, rgba(142, 197, 252, 1) 0%, rgba(224, 195, 252, 1) 100%);;
    color: black;
}
.icon-contain{
    padding: 2rem;
    border-right: 2px dashed #fff;
}
@media (max-width: 767px) {
    .icon-contain {
        border-right: none; /* Remove the right border */
        border-bottom: 2px dashed #fff; /* Add a bottom border */
    }
}
.icon-contain p{
    color: black;
    padding: 1rem;
    
}
.containbox{
    border: none;
}
/*gallery*/
.gallery{
    position: relative; /* Set position relative for the absolute positioning of the overlay */
        
        background-image: url('/Image/gallery.jpg'); /* Replace with the path to your background image */
        background-size: cover; /* Adjust as needed */
        background-position: center; /* Adjust as needed */
        background-repeat: no-repeat; /* Adjust as needed */
        /* Additional styling if necessary */
        padding: 20px; /* Adjust as needed */
    

}
.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(97, 82, 82, 0.5); /* Adjust the last value (0.2) for opacity */
}
.gallery h2{
    margin-top: 2rem;
    color: white;
    font-size: 2rem;
}

.gallery .owl-theme{
    margin-top: 1rem;
    padding: 4rem;
}

/*contact*/
.contact{
    margin-bottom: 2rem;
}
.contact .card{
    padding: 2rem 5rem;
    border: none;
    border-radius: 30px;
    box-shadow: 10px 10px 10px rgba(224, 195, 252, 1);
}
.contact .card h3{
    color: #eb0046;
    font-size: 33px;
    margin-bottom: 3rem;
}
.contact .card label{
    color: #eb0046;
}
.contact .card input{
    border: none;
    border-bottom: 2px solid #e0c3fc;
    color: var(--navColor);
}
.contact .card input:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: none; /* Remove any box shadow */
    
}
.contact .card textarea{
    border: 2px solid rgba(224, 195, 252, 1);
    color: var(--navColor);
}
.contact .card textarea:focus{
    outline: none;
    
}

.contact h2{
    font-size: 45px;
}
.contact p{
    font-size: 22px;
}
.mission{
    background: linear-gradient(45deg, rgba(142, 197, 252, 1) 0%, rgba(224, 195, 252, 1) 100%);;
    padding: 5rem 3rem;
}
.mission .card{
    border-radius: 0rem;
}
.mission .card img{
    border-radius: 0rem;
}

.how .card{
    border: none;
}
.how .card img{
    height: 250px;
}
@media (max-width:600px){
    .how .card img{
        height: auto;
    }
}