* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #000;
    font-weight: 500;
}

h1,
h2 {
    font-weight: 500;
}

p {
    font-size: clamp(20px, 1.5vw, 25px);
}

.container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header .header-announcement-bar-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    padding-top: 2vw;
    padding-bottom: 2vw;

    pointer-events: auto;
}

.header-title-logo img {
    width: auto;
    max-width: 100%;
    max-height: 60px;
}

.banner::before {
    position: absolute;
    content: "";
    background: hsl(0deg 0% 0% / 35%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.banner {
    position: relative;
    /* height: 100vh; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /* min-height: 550px; */
    padding-top: 136px;
}

.accordian p {
    text-align: left;
    font-size: clamp(20px, 1.60vw, 28px);
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* behind text */
}

.banner-text {
    position: relative;
    z-index: 1;
    width: 100%;
    /* above video */
}


.arrow span {
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-top: none;
    border-left: none;
    box-sizing: border-box;
    transform: translatey(-25%) rotate(45deg);
    width: 25px;
    height: 25px;
    border-width: 1px;
    display: inline-block;
}

.arrow.active {
    transform: rotate(-180deg);
}

.accordian-data {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    margin-top: 50px;
}

.accordian-colleps {
    padding: 20px 0;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee {
    font-size: 240px;
    font-size: clamp(100px, 12.5vw, 240px);
    white-space: nowrap;
}

h2 {
    font-size: clamp(38px, 4.63vw, 77px);
    margin-bottom: 20px;
    line-height: 1.1;
}

h2 span {
    color: rgb(233, 34, 23);
}

.about-sec {
    padding-top: 6.6vmax;
    padding-bottom: 6.6vmax;
}

.about-sec h2 {
    margin-bottom: 30px;
    max-width: 40vw;
}

.about-sec p {
    /* font-size: 25px; */
    font-size: clamp(20px, 1.40vw, 25px);
    line-height: 1.6;
}

.about-data {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner .accordian {
    max-width: 76%;
    width: 100%;
}

.about-accordian {
    max-width: 66vw;
    width: 100%;
    padding-bottom: 2vw;

}

.about-accordian .arrow span {
    border-color: rgb(0 0 0);
    width: 20px;
    height: 20px;
}


/* Contact Section Layout */
.contact-section {
    padding: 80px 0;
    background-image: url(../img/pexels-negativespace.webp);
    background-size: cover;
    background-position: center;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-dsec {
    width: 26vw;
}

.contact-dsec h2 {
    margin-bottom: 30px;
}

.contact-dsec p {
    line-height: 1.6;
}

/* Right Form */
.contact-form-sec {
    width: 45.2vw;
}

.contact-form-sec .form-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-items {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.form-row-items.full-width {
    width: 100%;
}

.form-row-items label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 400;
}

.form-row-items input {
    height: 35px;
}

.form-row-items input,
.form-row-items textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.form-row-items :is(input, textarea):hover {
    border-color: #000000b0;
    border-width: 2px;
}

.form-row-items :is(input, textarea):focus {
    border-color: #000;
    border-width: 2px;

}

.form-row-items textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    padding: 18px 22px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s ease;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

.required {
    color: #000000b8;
    font-weight: 500;
    font-size: 14px;
}

footer {
    padding: 48px 0;
}

footer p {
    font-size: 14px;
    text-align: left;
    line-height: 1.2;
    font-weight: 400;
}

@media(max-width:1024px) {
    header .header-announcement-bar-wrapper {
        padding: 22px 0;
    }


    .container {
        padding: 0 22px;
    }

    .banner .accordian {
        max-width: 100%;
    }

    .about-sec h2 {
        max-width: 100%;
    }

    .about-accordian {
        max-width: 100%; 
        padding-bottom: 20px;
    }
}

@media(max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-dsec,
    .contact-form-sec {
        width: 100%;
    }

    .contact-dsec h2 {
        font-size: 48px;
    }

    .banner {
        padding-top: 50px;
    }
}

@media(max-width: 768px) {
    .banner {
        padding-top: 40px;
    }

    .arrow span {
        width: 25px;
        height: 25px;
    }

    .marquee-wrapper {
        margin-top: 150px;
    }

    .header-title-logo img {
        max-height: 30px;
    }

    .contact-wrapper {
        gap: 20px;
    }

    footer {
    padding: 28px 0;
}
}

@media(max-width: 576px) {
    .form-row {
        /* flex-direction: column; */
        margin-bottom: 15px;
    }

    .form-row-items {
        width: 100%;
    }
}