/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    height:calc(100vh - 90px);

    min-height:720px;

    overflow:hidden;

    display:flex;

    align-items:center;

}

/* Background Image */

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

/* White Gradient */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.94) 18%,
        rgba(255,255,255,0.82) 35%,
        rgba(255,255,255,0.55) 50%,
        rgba(255,255,255,0.20) 70%,
        rgba(255,255,255,0.05) 85%,
        rgba(255,255,255,0) 100%
    );

}

/* Content */

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:620px;

}

/* Heading */

.hero-content h1{

    font-size:72px;

    line-height:1.05;

    font-weight:700;

    color:#0B2C5F;

    margin-bottom:30px;

}

.hero-content h1 span{

    display:block;

    color:#19C2B5;

}

/* Paragraph */

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#5E6B7A;

    margin-bottom:45px;

}

.hero-content strong{

    color:#19C2B5;

}

/* Cards */

.hero-services{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.service-card{

    width:230px;

    background:#ffffff;

    border-radius:20px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:16px;

    color:#0B2C5F;

    text-decoration:none;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.12);

}

.icon-box{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#EAFBF8;

    display:flex;

    align-items:center;

    justify-content:center;

}

.icon-box i{

    color:#19C2B5;

    font-size:28px;

}

.service-text h4{

    font-size:18px;

    margin-bottom:4px;

}

.service-text span{

    font-size:15px;

    color:#77838F;

}

.arrow{

    margin-left:auto;

    color:#19C2B5;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 34px;

    background:#0B2C5F;

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-primary:hover{

    background:#19C2B5;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:50px;

    background:#19C2B5;

    color:#ffffff;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:#0B2C5F;

}

/* Responsive */

@media(max-width:992px){

.hero{

height:auto;

padding:120px 0 80px;

min-height:auto;

}

.hero-content{

max-width:100%;

}

.hero-content h1{

font-size:52px;

}

.hero-services{

flex-direction:column;

}

.service-card{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

justify-content:center;

}

.hero-overlay{

background:rgba(255,255,255,.82);

}

}

@media(max-width:576px){

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

}

}


