
body {
    font-family: 'Open Sans', sans-serif; /* or 'Roboto', 'Inter' */
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* or 'Montserrat', or 'Inter' */
}

.hero-section {
    background: url('./hero.png') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    color: black;
    position: relative;
}

.hero-overlay {
    /*background-color: rgba(0, 58, 88, 0.6);*/
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero_heading{
    font-size: 44px;
    font-weight: 600;
    background: #115ff4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* optional but helpful */
    padding-bottom: 10px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    margin-top: 10px;

}
.hero_description p{
    font-size: 22px;
}



.footer {
    background-color: #003a58;
    color: #ffffff;
    padding: 2rem 0;
}
.btn {
    position: relative;
    display: inline-block;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 25px;
    background-image: linear-gradient(white, white), linear-gradient(to right, #83adfc, #115ff4);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: color 0.4s ease, background 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

.btn span {
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.btn.hover-filled-slide-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #83adfc, #115ff4);
    z-index: 1;
    transition: width 0.4s ease;
}

.btn.hover-filled-slide-right:hover::before {
    width: 100%;
}

.btn.hover-filled-slide-right:hover {
    color: #fff;
}





.section-data-offer {
    background: #f9fbfd;
}

.section-data-offer h2 {
    color: #003a58;
    font-size: 2rem;
}

.section-data-offer p {
    font-size: 22px;
    color: #333;
    line-height: 1.7;
}


#contact {
    background: #f8f9fc;
}

.contact_img {
    height: 100%;
    object-fit: cover;
    border-radius: 0 15px 15px 0;
}

.contact-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
}

textarea.form-control {
    resize: none;
}


@media screen and (min-width: 600px) {
    .hero_description p {
        padding: 20px 120px;
    }
}


