/* hero section */
.service-hero {
    background-image: url("../assets/hero.gif");
}

.service-hero .content {
    margin-inline-start:50% ;
    padding-bottom: 30px;
    padding-top: 30px;
}

.service-hero h2 {
    font-weight: 700;
    font-size: clamp(48px,2vw,64px);
    line-height: 76.8px;
    letter-spacing: 0px;
    color: #FFFFFF;
    width: 50%;
}

.service-hero h2 .blue {
    color: #155DFC;
}

.service-hero p {
    color: #D1D5DC;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    width: 70%;
    margin-bottom: 20px;
}

.service-hero .buttons {
    display: flex;
    gap: 15px;

}

.service-hero .contact {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;
    background-color: #FFFFFF1A;
    outline: none;
    border: none;
    border-radius: 14px;
    padding: 13px 35px;
}

.service-hero .whatsapp {
    box-shadow: 0px 4px 6px -4px #2B7FFF4D;
    box-shadow: 0px 10px 15px -3px #2B7FFF4D;
    background-color: #155DFC;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 10px 35px;
    outline: none;
    border: none;
    border-radius: 14px;
}

/* service stage section */
.service-stage {
    background-color: #F5F5F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.service-stage .service-header {
    margin-bottom: 40px;
}

.service-stage .service-header h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;

}

.service-stage .service-header p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0px;
    color: #4A5565;
}

.service-stage .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-stage .grid-container .grid-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
}

.service-stage .grid-container .grid-item .icon {
    margin-bottom: 20px;
    background-color: #EFF6FF;
    border-radius: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-stage .grid-container .grid-item h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0px;
}

.service-stage .grid-container .grid-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
    color: #6A7282;
}
.main-header{
    background-color: black;
}
/*why choose */
.why-choose {
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: space-between;
}
.why-choose .image-container {
    width: 40%;
}
.why-choose .right-content {
    width: 40%;
}
.why-choose .image-container img{
    border-radius: 30px;
    max-width: 100%;
}
.why-choose .item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.why-choose .icon {
    background: linear-gradient(135deg, #0092B8 0%, #1447E6 100%);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 6px -4px #104E6480;
    box-shadow: 0px 10px 15px -3px #104E6480;

}

.why-choose .item h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 28px;
}

.why-choose .header {
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    margin-bottom: 50px;
}

.why-choose p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #99A1AF;
}

.why-choose .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*questions section */
.questions {
    background-color: #F5F5F6;
    padding-top: 90px;
    padding-bottom: 90px;
}

.questions .header {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
   font-size: clamp(30px, 5vw, 48px);
    line-height: 48px;
    letter-spacing: 0px;
}

.questions .content {
    max-width: 800px;
    margin: 0 auto;
}


/*contact us section */
.contact-us {
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
    background-color: black;
}

.contact-us h2 {
    font-weight: 700;
    font-size: clamp(30px,5vw,48px);
    line-height: 72px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-us p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #D1D5DC;
    margin-bottom: 30px;
}

.contact-us button {
    box-shadow: 0px 8px 10px -6px #155DFC33;
    box-shadow: 0px 20px 25px -5px #155DFC33;
    background-color: #155DFC;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    border-radius: 80px;
    border: none;
    outline: none;
    padding: 10px 30px;
}

@media (max-width: 1023px) {
    .service-stage .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose{
        flex-direction: column;
        gap: 20px;
    }
    .why-choose .right-content{
        width: 100%;
    }
    .why-choose .image-container{
        width: 100%;
    }
}

@media (max-width: 767px) {
    .service-stage .grid-container {
        grid-template-columns: 1fr;
    }
    .service-hero .buttons{
        justify-content: center;
    }
    .service-hero h2{
        width: 100%;
    }
    .service-hero .content{
        margin-inline-start: 0px;
        text-align: center;
    }
    .service-hero p{
        width: 100%;
    }
}
@media (max-width:992px) {
    .header-content{
    padding-top: 15px;
    padding-bottom: 15px;
}
}
