/* ==========================================================
   AAHAN TECHNOLOGIES
   SERVICE / INNER PAGE HERO
   ========================================================== */


/* ==========================================================
   1. HERO WRAPPER
   ========================================================== */

.service-hero {
    position: relative;

    overflow: hidden;

    padding: 170px 0 100px;

    background:
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, 0.35),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(37, 99, 235, 0.25),
            transparent 35%
        ),
        #050816;

    color: #ffffff;
}


/* ==========================================================
   2. HERO GRID ALIGNMENT
   ========================================================== */

.service-hero .row {
    align-items: center;
}

.service-hero .col-lg-6:first-child {
    padding-right: 50px;
}


/* ==========================================================
   3. BADGE
   ========================================================== */

.service-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 24px;

    padding: 9px 18px;

    border: 1px solid rgba(139, 92, 246, 0.30);
    border-radius: 999px;

    background: rgba(139, 92, 246, 0.14);

    color: #a78bfa;

    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.2px;
}


/* ==========================================================
   4. HERO TITLE
   ========================================================== */

.service-hero h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family: "Figtree", sans-serif;
    font-size: clamp(46px, 4.6vw, 64px);
    font-weight: 800;
    line-height: 1.08;

    letter-spacing: -1.3px;
}

.service-hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #3b82f6
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* ==========================================================
   5. DESCRIPTION
   ========================================================== */

.service-hero p {
    max-width: 720px;

    margin: 0 0 34px;

    color: #cbd5e1;

    font-family: "Figtree", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
}


/* ==========================================================
   6. HERO BUTTONS
   ========================================================== */

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 32px;
}


/* Shared button base */

.service-btn-primary,
.service-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 15px 30px;

    border-radius: 14px;

    text-decoration: none;

    font-family: "Figtree", sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


/* Primary */

.service-btn-primary {
    border: 1px solid transparent;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );

    color: #ffffff;
}

.service-btn-primary:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 34px rgba(37, 99, 235, 0.30);
}


/* Secondary */

.service-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;
}

.service-btn-secondary:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(255, 255, 255, 0.30);

    transform: translateY(-2px);
}


/* ==========================================================
   7. TRUST / FEATURE POINTS
   ========================================================== */

.service-points {
    display: flex;
    flex-wrap: wrap;

    gap: 14px 22px;
}

.service-points span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #cbd5e1;

    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.service-points span::before {
    content: "✓";

    color: #8b5cf6;

    font-weight: 800;
}


/* ==========================================================
   8. VISUAL BOX
   ========================================================== */

.service-visual-box {
    position: relative;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.05);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* ==========================================================
   9. VISUAL BOX TITLE
   ========================================================== */

.service-visual-box h3 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family: "Figtree", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}


/* ==========================================================
   10. VISUAL BOX LIST
   ========================================================== */

.service-visual-box ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.service-visual-box li {
    position: relative;

    padding: 14px 0 14px 28px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    color: #cbd5e1;

    font-family: "Figtree", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.service-visual-box li:last-child {
    border-bottom: 0;
}

.service-visual-box li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 14px;

    color: #8b5cf6;

    font-weight: 800;
}


/* ==========================================================
   11. TABLET
   ========================================================== */

@media (max-width: 991px) {

    .service-hero {
        padding: 135px 0 80px;

        text-align: center;
    }

    .service-hero .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }

    .service-hero h1 {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        font-size: 50px;
    }

    .service-hero p {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-buttons {
        justify-content: center;
    }

    .service-points {
        justify-content: center;
    }

    .service-visual-box {
        max-width: 720px;

        margin: 45px auto 0;

        text-align: left;
    }

}


/* ==========================================================
   12. MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .service-hero {
        padding: 115px 0 65px;
    }

    .service-hero h1 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.7px;
    }

    .service-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .service-badge {
        font-size: 13px;

        padding: 8px 15px;
    }

    .service-hero-buttons {
        margin-bottom: 28px;
    }

    .service-points {
        gap: 10px 18px;
    }

    .service-visual-box {
        margin-top: 38px;

        padding: 30px;
    }

    .service-visual-box h3 {
        font-size: 24px;
    }

}


/* ==========================================================
   13. SMALL MOBILE
   ========================================================== */

@media (max-width: 575px) {

    .service-hero {
        padding: 105px 0 55px;
    }

    .service-hero .container,
    .service-hero .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-hero h1 {
        margin-bottom: 20px;

        font-size: 34px;
        line-height: 1.14;
    }

    .service-hero p {
        margin-bottom: 26px;

        font-size: 15px;
    }

    .service-hero-buttons {
        flex-direction: column;

        gap: 10px;
    }

    .service-btn-primary,
    .service-btn-secondary {
        width: 100%;

        min-height: 50px;

        padding: 13px 18px;

        font-size: 15px;
    }

    .service-points {
        justify-content: flex-start;

        text-align: left;
    }

    .service-points span {
        width: 100%;
    }

    .service-visual-box {
        padding: 24px;

        border-radius: 20px;
    }

    .service-visual-box h3 {
        margin-bottom: 18px;

        font-size: 22px;
    }

    .service-visual-box li {
        font-size: 14px;
    }

}


/* ==========================================================
   14. VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 390px) {

    .service-hero h1 {
        font-size: 31px;
    }

}