/* ==================================================
SERVICE HERO
================================================== */

.service-hero{
    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 140px);

    padding:30px 0;

    background:
    radial-gradient(circle at 15% 20%, rgba(0,119,255,.20), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(0,255,204,.12), transparent 30%),
    linear-gradient(
        135deg,
        #021660 0%,
        #03257f 100%
    );
}

.service-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;
}

.service-hero-wrapper{
    display:grid;
    grid-template-columns:1.5fr .7fr .9fr;
    gap:10px;
    align-items:center;
    position:relative;
    z-index:2;
}

.service-hero-content h1{

    color:#fff;

    font-size:32px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:10px;

}

.service-hero-content h1 span{

    display:block;

    color:#3C8DFF;

}

.service-hero-content p{

    color:rgba(255,255,255,.82);

    font-size:16px;

    line-height:1.7;

    max-width:620px;

    margin-bottom:10px;

}

/*=====================================
Features
=====================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:6px 10px;

    margin-bottom:15px;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    font-weight:500;

}

.hero-feature i{

    color:#2F8BFF;

    font-size:16px;

}

/*=====================================
Buttons
=====================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    align-items:center;

}

.service-primary-btn,
.service-secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    padding:10px 20px;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.service-primary-btn{

    background:#0B5FFF;
    font-size: 16px;
    color:#fff;

    box-shadow:0 15px 35px rgba(11,95,255,.30);

}

.service-primary-btn:hover{

    transform:translateY(-4px);

    background:#1568ff;

}

.service-secondary-btn{

    color:#fff;
    font-size: 16px;
    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

}

.service-secondary-btn:hover{

    background:#fff;

    color:#021660;

}

.service-hero-image{
    text-align:center;
}

.service-hero-image img{
    width:100%;
    max-width:450px;
}

/* ==================================================
CONSULTATION FORM
================================================== */

.service-hero-form{
    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:15px;
}

.service-hero-form h3{
    color:#fff;

    text-align:center;

    font-size:20px;

    margin-bottom:10px;
}

.service-hero-form form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.service-hero-form input,
.service-hero-form select,
.service-hero-form textarea{
    width:100%;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.06);

    color:#fff;

    padding:10px 20px;

    outline:none;
}

.service-hero-form select{
    background:#25468d;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.service-hero-form select option:hover{
    background:#0B5FFF !important;
    color:#fff !important;
}

.service-hero-form textarea{
    resize:none;
    min-height:120px;
}

.service-hero-form input::placeholder,
.service-hero-form textarea::placeholder{
    color:rgba(255,255,255,.65);
}

.service-consult-btn{
    padding:15px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #0B5FFF,
        #4DA3FF
    );

    color:#fff;

    font-weight:700;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    transition:.35s;
}

.service-consult-btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;
}

.service-consult-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(11,95,255,.45);
}

.service-consult-btn:hover::before{
    left:100%;
}

.response-time{
    display:block;

    text-align:center;

    color:rgba(255,255,255,.8);

    margin-top:15px;
}

/* ==================================================
SERVICE CONTENT
================================================== */

.service-content{
    padding:50px 0;
    background:#fff;
}

.service-content-wrapper{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.service-content-left h2{
    font-size:42px;
    color:#071C63;
    margin-bottom:20px;
}

.service-content-left p{
    color:#667085;
    line-height:1.9;
    margin-bottom:30px;
}

.service-content-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.service-content-point{
    background:#0b5fff;
    padding:15px;
    color:#ffffff;
    border-radius:12px;

    transition:all .35s ease;

    border:1px solid transparent;

    cursor:pointer;
}

.service-content-point:hover{

    transform:
        translateY(-5px)
        scale(1.02);

    background:#ffffff;

    color:#071C63;

    border-color:#0B5FFF;

    box-shadow:
        0 15px 35px rgba(11,95,255,.18);
}

.service-content-point:hover i{
    color:#0B5FFF;
}

.service-content-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.service-content-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.service-content-image{
    width:100%;
    max-width:300px;
    height:auto;
    display:block;
    object-fit:contain;

    transition:.35s ease;
}

.service-content-image:hover{
    transform:translateY(-8px);
}

.service-features{
    padding:50px 0;
    background:#ffffff;
}

.service-section-header{
    /*max-width:850px;*/
    margin:0 auto 40px;
    text-align:center;
}

.service-section-header h2{
    font-size:42px;
    font-weight:800;
    color:#071C63;
    margin-bottom:15px;
}

.service-section-header p{
    font-size:16px;
    line-height:1.8;
    color:#667085;
}

.service-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-feature-card{
    background:#fff;
    padding:20px 20px;
    border-radius:20px;
    text-align:center;

    border:1px solid #e7edf7;

    transition:.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.service-feature-card:hover{
    transform:translateY(-8px);

    border-color:#0B5FFF;

    box-shadow:
    0 20px 40px rgba(11,95,255,.12);
}

.service-feature-icon{
    width:60px;
    height:60px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#eef4ff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0B5FFF;

    font-size:24px;
}

.service-feature-card h3{
    font-size:22px;
    font-weight:700;

    color:#071C63;

    margin-bottom:15px;
}

.service-feature-card p{
    font-size:15px;
    line-height:1.8;
    color:#667085;
}


/* ==================================================
FAQ
================================================== */

.service-faq{
    padding:50px 0;
    background:#f8faff;
}

.service-faq-wrapper{
    max-width:900px;
    margin:auto;
}

.service-faq-item{
    background:#fff;

    border:1px solid #edf2f7;

    border-radius:15px;

    overflow:hidden;

    margin-bottom:15px;
}

.service-faq-question{
    width:100%;

    background:none;

    border:none;

    padding:22px;

    text-align:left;

    font-size:18px;
    font-weight:700;

    color:#071C63;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.service-faq-answer{
    display:none;

    padding:0 22px 22px;
}

.service-faq-item.active .service-faq-answer{
    display:block;
}



