﻿.intro-main-section {
    position: relative;
    padding-top: 200px;
    padding-bottom: 20px;
    background-color: #f8f9fa;
/*    background-image: url('/Images/BackgroundStars.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; /* Ensures content stays above overlay */
    min-height:100vh;
}
.intro-main-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Light blackish overlay */
        z-index: -1; /* Keeps overlay behind the content */
    }
@media (max-width: 992px) {
    .intro-main-section {
        padding-top: 490px;
    }
}



/* Home About Section  */
.home-about-section {
    padding-bottom: 50px;
}

.home-about-heading {
    font-size: 35px;
    font-weight: 700;
    color: white;
}
.home-ack-heading {
    font-size: 25px;
    font-weight: 600;
    color: white;
}

.home-about-description {
/*    padding-top: 30px;*/
    font-size: 18px;
    /* font-weight: 700; */
    color: white;
}
.home-ack-description {
    /*    padding-top: 30px;*/
    font-size: 16px;
    /* font-weight: 700; */
    color: white;
}


.whoweare {
    writing-mode: vertical-rl; /* Makes the text vertical */
    transform: rotate(180deg);
    text-align: center; /* Centers the text vertically */
    font-size: 25px; /* Adjust size as needed */
    /* color: #4aba6a; */
    color: #c9cbcd;
    word-spacing: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .whoweare {
        writing-mode: horizontal-tb;
        transform: matrix(1, 0, 0, 1, 0, 0);
        text-align: center;
        font-size: 25px;
        /* color: #4aba6a; */
        color: #c9cbcd;
        word-spacing: 10px;
        letter-spacing: 5px;
        text-transform: uppercase;
        padding-top: 30px;
        position: relative;
    }
}

.bg-green {
    background-color: #4aba6a !important;
}

.basic-h1 {
    color: white;
    font-weight: 700;
}

.acknowledgement {
    margin-left: 65px;
    font-size: 17px !important;
    letter-spacing: 0px !important;
}

@media (max-width: 1250px) {

    .acknowledgement {
        margin-left: 60px;
    }

}
@media (max-width: 1200px) {

    .acknowledgement {
        margin-left: 50px;
    }

}
@media (max-width: 992px) {

    .acknowledgement {
        margin-left: 0px;
    }
}