* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    margin-bottom: 150px;
}

.hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
    background-size: cover;
}

.hero-text {
    background-color: #E4FFFB;
    color: #000000;
    font-size: 18px;
    text-align: center;
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    padding: 50px;
    border-radius: 50px;
}

.leader-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.our-flip-title {
    transform: rotate(-90deg);
    /* transform-origin: left top; */
    /* writing-mode: horizontal-tb; */
    display: inline-block;
    font-size: 52px;
    font-feature-settings: "kern" 0;
    letter-spacing: 2px;
    margin-top: 12px;
}

.leader-title {
    font-size: 120px;
}

.leader-text {
    max-width: 700px;
}


/* CONTACT US PAGE STYLE START*/
/* contact hero image */
.contact-hero-image {
    height: 497px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact-hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: #000000;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.query-form {
    max-width: 1000px;
    margin: 80px auto;
}

.form-control,
.form-control:focus {
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #ccc;
}

.btn-submit {
    background-color: #00a99d;
    color: white;
    padding: 10px 60px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
}

.btn-submit:hover {
    background-color: #008b80;
}

textarea.form-control {
    min-height: 150px;
}


/* CONTACT US PAGE STYLE END*/


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 30px;
    }

    .hero-content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
        background-image: url('./images/about-us-banner.png');
        background-size: cover;
    }

    .hero-text {
        background-color: #E4FFFB;
        color: #000000;
        font-size: 16px;
        text-align: center;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 10px;
        border-radius: 40px;
    }

    .leader-title {
        font-size: 74px;
    }

    .our-flip-title {
        font-size: 32px;
    }

    /* CONTACT US PAGE STYLE START*/
    /* contact hero image */
    .contact-hero-image {
        height: 300px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

    .contact-hero-text {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #000000;
    }

    .query-form {
        margin: 20px auto;
    }

    /* CONTACT US PAGE STYLE END*/
}