* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: #dcdcdc;
    font-family: 'Poppins', sans-serif; 
}

.container {
    width: 94vw;
    margin: 2vw auto;
    background: #fff;
    border: 0.3vw solid #000;
}


.header {
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2vw 2vw;
}

.logo {
    height: 5vw;
}

.tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 0.06vw #aaa;
}

.banner_section {
    position: relative;
    width: 100%;
    height: 88vh;
    overflow: hidden;
    border-bottom: 0.3vw solid #000;
}

.bg_video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.164);
}

.hero_text {
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    z-index: 2;
}

.hero_text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: #0e0e0e;
}

.hero_text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 0.08vw #000000;
    margin-top: 0.3vw;
}

.info_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3vw;
    background: #000;
}

.info_box {
    padding: 3vw;
}

.info_box.left {
    background: #f2f2f2;
    color: #000;
}

.info_box.right {
    background: #000;
    color: #fff;
    border: 0.3vw solid #fff;
}

.info_box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8vw;
    font-weight: 800;
    margin-bottom: 1vw;
}

.info_box p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2vw;
    margin-bottom: 0.8vw;
}

.service {
    margin-bottom: 1.2vw;
}

.service h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4vw;
    font-weight: 700;
    margin-bottom: 0.2vw;
}

.service p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2vw;
    color: #ccc;
}

.contact_section {
    background: #000;
    padding: 3vw 3vw;
    display: flex;
    justify-content: center;
}

.contact_container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.contact_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 0.1vw #fff;
    margin-bottom: 1vw;
}

.contact_sub {
    margin-bottom: 0.5vw;
}

.contact_sub.strong {
    font-size: 1.2vw;
    font-weight: 500;
}

.contact_sub.light {
    font-size: 1.2vw;
    color: #aaa;
    margin-bottom: 2vw;
}

.form_wrapper {
    background: #dcdcdc;
    padding: 2vw;
    border: 0.3vw solid #000;
    width: 100%;
    max-width: 700px;
    margin: 2vw auto;
}
.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw 3vw;
}

.input_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input_item label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    color: transparent;
    color: #000000;
    margin-bottom: 0.5vw;
    text-align: center;
}

.input_item input {
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9vw;
    outline: none;
    width: 80%;
    text-align: center;
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn_submit {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn_submit:hover {
    background: #fff;
    color: #000;
}



@media (max-width: 996px) {
    .header{
        padding:3vw;
    }

    .tag{
    font-size: 3vw;
    }

    .logo {
        height: 12vw;
    }

    .banner_section {
        height: 80vh;
    }

    .hero_text {
        bottom: 4vw;
        left: 4vw;
    }

    .hero_text h1 {
        font-size: 6vw;
    }

    .hero_text h2 {
        font-size: 6vw;
        -webkit-text-stroke: 0.15vw #000000;
    }

    .info_section {
        grid-template-columns: 1fr;
        gap: 0.3vw;
    }

    .info_box {
        padding: 6vw;
    }

    .info_box h3 {
        font-size: 6vw;
        margin-bottom: 3vw;

    }

    .info_box p {
        font-size: 3.6vw;
        margin-bottom: 2vw;

    }

    .service h4 {
        font-size: 3vw;
    }

    .service p {
        font-size: 3.6vw;
    }
    .contact_section{
        padding: 6vw;
    }
    .contact_title {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .contact_sub.strong {
        font-size: 3.6vw;
        margin-bottom: 3vw;

    }

    .contact_sub.light {
        font-size: 3.6vw;
        margin-bottom: 3vw;

    }

    .form_grid {
        grid-template-columns: 1fr;
    }

    .input_item label {
        font-size: 3vw;
    }

    .input_item input {
        font-size: 3.6vw;
        width: 100%;
    }

    .btn_submit {
        font-size: 3vw;
        padding: 12px 30px;
    }

}