/* =========================
SERVICES PAGE STYLING
services.css
Note: shared rules like .section-heading and
.section-badge live in style.css — do not
redefine them here.
========================= */



/* =========================
SERVICES HERO SECTION
========================= */

.services-hero{
    padding: 180px 0 120px;
    background: linear-gradient(
        135deg,
        #02142f 0%,
        #032b63 45%,
        #005eff 100%
    );
    position: relative;
    overflow: hidden;
}

.services-hero::before{
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 213, 255, 0.12);
    top: -180px;
    left: -140px;
    filter: blur(60px);
}

.services-hero::after{
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -180px;
    right: -120px;
    filter: blur(60px);
}



/* =========================
HERO WRAPPER
========================= */

.services-hero-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}



/* =========================
HERO CONTENT
========================= */

.services-hero-content{
    flex: 1;
}

.services-hero-content .section-badge{
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}

.services-hero-content h1{
    font-size: 64px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 800;
    margin: 28px 0 24px;
}

.services-hero-content h1 span{
    color: #00d5ff;
}

.services-hero-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #dce8ff;
    max-width: 620px;
}



/* =========================
HERO BUTTONS
========================= */

.services-hero-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}



/* =========================
HERO IMAGE
========================= */

.services-hero-image{
    flex: 1;
    text-align: center;
}

.services-hero-image img{
    width: 100%;
    max-width: 520px;
    height: auto;
    animation: serviceFloat 4s ease-in-out infinite;
}

@keyframes serviceFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0);
    }

}



/* =========================
MAIN SERVICES SECTION
========================= */

.main-services-section{
    padding: 120px 0;
    background: #ffffff;
}



/* =========================
SERVICES GRID
========================= */

.services-grid-page{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}



/* =========================
SERVICE CARD
========================= */

.service-page-card{
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: 0.45s ease;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.service-page-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 207, 255, 0.05),
        rgba(0, 94, 255, 0.04)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.service-page-card:hover::before{
    opacity: 1;
}

.service-page-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,119,255,0.14);
}



/* =========================
SERVICE ICON
========================= */

.service-icon{
    width: 95px;
    height: 95px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.service-icon i{
    font-size: 36px;
    color: #ffffff;
}



/* =========================
SERVICE TEXT
========================= */

.service-page-card h3{
    font-size: 28px;
    color: #071c3d;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.service-page-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #5b6b84;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}



/* =========================
SERVICE BUTTON
========================= */

.service-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,119,255,0.22);
}



/* =========================
PROCESS SECTION
========================= */

.service-process-section{
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );
}



/* =========================
PROCESS GRID
========================= */

.process-grid-service{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



/* =========================
PROCESS CARD
========================= */

.process-service-card{
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    scroll-margin-top: 120px;
}

.process-service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,119,255,0.14);
}

.process-number{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.process-service-card h3{
    font-size: 24px;
    color: #071c3d;
    margin-bottom: 18px;
}

.process-service-card p{
    font-size: 15px;
    line-height: 1.8;
    color: #5b6b84;
}



/* =========================
WHY CHOOSE SECTION
========================= */

.service-why-section{
    padding: 120px 0;
    background: #ffffff;
}



/* =========================
WHY GRID
========================= */

.service-why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



/* =========================
WHY CARD
========================= */

.service-why-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.service-why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,119,255,0.14);
}

.service-why-card i{
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 34px;
}

.service-why-card h3{
    font-size: 24px;
    color: #071c3d;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width: 1200px){

    .services-grid-page{
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid-service,
    .service-why-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}



@media(max-width: 992px){

    .services-hero-wrapper{
        flex-direction: column;
        text-align: center;
    }

    .services-hero-content p{
        margin: auto;
    }

    .services-hero-buttons{
        justify-content: center;
    }

    .services-hero-content h1{
        font-size: 52px;
    }

}



@media(max-width: 768px){

    .services-grid-page,
    .process-grid-service,
    .service-why-grid{
        grid-template-columns: 1fr;
    }

    .services-hero{
        padding: 160px 0 100px;
    }

    .services-hero-content h1{
        font-size: 42px;
    }

    .service-page-card h3,
    .process-service-card h3,
    .service-why-card h3{
        font-size: 22px;
    }

}



@media(max-width: 480px){

    .services-hero-content h1{
        font-size: 34px;
    }

    .services-hero-buttons{
        flex-direction: column;
    }

    .services-hero-buttons a{
        width: 100%;
        text-align: center;
    }

    .service-page-card{
        padding: 38px 26px;
    }

}