/*==================================================
SERVICE HERO (PREMIUM)
==================================================*/

.service-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 30px 0 30px;
    filter:brightness(1.29) contrast(1.20);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/*==================================================
DARK OVERLAY
==================================================*/

.service-hero::before{
    background: linear-gradient(
        90deg,
        rgba(5,15,35,.65) 0%,
        rgba(5,15,35,.45) 35%,
        rgba(5,15,35,.20) 60%,
        rgba(5,15,35,0) 100%
    );
}


.service-hero .container{
    position: relative;
    z-index: 2;
}

/*==================================================
GRID
==================================================*/

.hero-grid{
    display: flex;
    align-items: center;
    min-height: calc(100vh - 120px);
}

/*==================================================
LEFT CONTENT
==================================================*/

.hero-content{
    max-width: 650px;
    position: relative;
}

.hero-badge{
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;

    font-size: .9rem;
    font-weight: 600;

    color: #fff;

    background: rgba(37,99,235,.18);
    border: 1px solid rgba(96,165,250,.35);

    backdrop-filter: blur(10px);

    margin-bottom: 24px;
}

.hero-content h1{
    font-size: clamp(3rem,5vw,4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;

    color: #fff;

    margin-bottom: 24px;
}

.hero-text{
    max-width: 560px;

    font-size: 1.1rem;
    line-height: 1.9;

    color: rgba(255,255,255,.82);

    margin-bottom: 36px;
}

/*==================================================
BUTTONS
==================================================*/

.hero-actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

    padding: 14px 24px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    color: #fff;

    background: #2563eb;

    transition: .35s ease;

    box-shadow: 0 18px 40px rgba(37,99,235,.35);
}

.btn-primary:hover{
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(37,99,235,.45);
}

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

    padding: 14px 24px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    color: #fff;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

.btn-secondary:hover{
    background: #fff;
    color: #0f172a;
    transform: translateY(-4px);
}

/*==================================================
RIGHT IMAGE (Optional)
==================================================*/

.hero-media{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media img{
    width: 100%;
    max-width: 580px;

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(15,23,42,.30);

    transition: .5s ease;
}

.hero-media img:hover{
    transform: translateY(-6px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 992px){

    .service-hero{
        padding: 110px 0 70px;
        background-position: center;
    }

    .service-hero::before{
        background: linear-gradient(
            180deg,
            rgba(5,15,35,.88),
            rgba(5,15,35,.65)
        );
    }

    .hero-grid{
        min-height: auto;
        justify-content: center;
        text-align: center;
    }

    .hero-content{
        margin: auto;
    }

    .hero-text{
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions{
        justify-content: center;
    }

    .hero-media{
        margin-top: 50px;
    }
}

@media (max-width: 768px){

    .hero-content h1{
        font-size: 2.8rem;
    }

    .hero-text{
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 576px){

    .service-hero{
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .hero-content h1{
        font-size: 2.2rem;
    }

    .hero-actions{
        flex-direction: column;
    }

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









/*==================================================
SERVICE OVERVIEW (FULL REDESIGN)
==================================================*/

.service-overview{
    position:relative;
    padding:120px 0;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
HEADER
==================================================*/

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:7px 16px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    color:#2563eb;
    background:rgba(37,99,235,.08);
    border:1px solid rgba(37,99,235,.15);
    margin-bottom:14px;
}

.section-header h2{
    font-size:clamp(2.2rem,3.5vw,3.2rem);
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.04em;
}

.section-header p{
    font-size:1.1rem;
    color:#64748b;
    margin-top:10px;
}

/*==================================================
LAYOUT
==================================================*/

.overview-layout{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:50px;
    align-items:start;
}

/*==================================================
LEFT STORY BLOCK
==================================================*/

.overview-story{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* story card */
.story-card{
    padding:30px;
    border-radius:22px;
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(16px);
    border:1px solid #e2e8f0;
    box-shadow:0 25px 60px rgba(15,23,42,.06);
}

.story-card h3{
    font-size:1.3rem;
    font-weight:900;
    margin-bottom:14px;
    color:#0f172a;
}

.story-text{
    font-size:1.05rem;
    line-height:2;
    color:#475569;
}

/*==================================================
STATS
==================================================*/

.story-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.stat-box{
    padding:18px;
    border-radius:18px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    text-align:center;
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-4px);
    border-color:#c7dbff;
    box-shadow:0 15px 40px rgba(37,99,235,.10);
}

.stat-number{
    display:block;
    font-size:1.3rem;
    font-weight:900;
    color:#2563eb;
}

.stat-label{
    font-size:.85rem;
    color:#64748b;
    margin-top:4px;
}

/*==================================================
RIGHT VALUE CARD
==================================================*/

.overview-value-card{
    position:relative;
    padding:32px;
    border-radius:24px;

    background:linear-gradient(180deg,#ffffff, #f8fafc);
    border:1px solid #e2e8f0;

    box-shadow:0 30px 80px rgba(15,23,42,.06);

    display:flex;
    flex-direction:column;
    gap:18px;
}

/* accent line */
.overview-value-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

/* title */
.overview-value-card h3{
    font-size:1.25rem;
    font-weight:900;
    color:#0f172a;
}

/* list */
.overview-value-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.overview-value-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#475569;
    line-height:1.7;
}

.overview-value-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2563eb;
    font-weight:900;
}

/* CTA */
.overview-cta{
    margin-top:10px;
    display:inline-block;
    text-align:center;
    padding:12px 16px;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.overview-cta:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){
    .overview-layout{
        grid-template-columns:1fr;
    }

    .story-stats{
        grid-template-columns:1fr 1fr 1fr;
    }
}

@media(max-width:600px){
    .story-stats{
        grid-template-columns:1fr;
    }
}








/*==================================================
SERVICE FEATURES (PREMIUM GRID)
==================================================*/

.service-features{
    position:relative;
    padding:100px 0;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
GRID
==================================================*/

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

/*==================================================
FEATURE CARD
==================================================*/

.feature-card{
    position:relative;
    padding:28px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.9);
    border:1px solid #e2e8f0;
    box-shadow:0 18px 45px rgba(15,23,42,.05);
    transition:.35s ease;
    overflow:hidden;
}

/* hover premium lift */
.feature-card:hover{
    transform:translateY(-6px);
    border-color:#c7dbff;
    box-shadow:0 28px 70px rgba(37,99,235,.12);
}

/* subtle glow strip */
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}

.feature-card:hover::before{
    transform:scaleX(1);
}

/*==================================================
ICON
==================================================*/

.feature-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(37,99,235,.08);
    color:#2563eb;
    font-size:1.2rem;
    margin-bottom:16px;
    transition:.3s ease;
}

.feature-card:hover .feature-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(5deg) scale(1.05);
}

/*==================================================
TEXT
==================================================*/

.feature-card h3{
    font-size:1.1rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.feature-card p{
    font-size:.95rem;
    line-height:1.7;
    color:#64748b;
}

.feature-highlights{
    margin-top:16px;
    padding-left:18px;
}

.feature-highlights li{
    margin-bottom:8px;
    color:#475569;
    line-height:1.6;
    font-size:.92rem;
}

.feature-highlights li::marker{
    color:#2563eb;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .features-grid{
        grid-template-columns:1fr;
    }
}







/*==================================================
SERVICE BENEFITS (PREMIUM)
==================================================*/

.service-benefits{
    position:relative;
    padding:100px 0;
    background:#ffffff;
}

/*==================================================
GRID
==================================================*/

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

/*==================================================
CARD
==================================================*/

.benefit-card{
    position:relative;
    padding:28px 24px;
    border-radius:18px;
    background:rgba(248,250,252,.85);
    border:1px solid #e2e8f0;
    box-shadow:0 18px 45px rgba(15,23,42,.05);
    transition:.35s ease;
    overflow:hidden;
}

/* hover effect */
.benefit-card:hover{
    transform:translateY(-6px);
    border-color:#c7dbff;
    box-shadow:0 30px 75px rgba(37,99,235,.10);
}

/* top glow line */
.benefit-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}

.benefit-card:hover::before{
    transform:scaleX(1);
}

/*==================================================
ICON
==================================================*/

.benefit-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(37,99,235,.08);
    color:#2563eb;
    font-size:1.2rem;
    margin-bottom:16px;
    transition:.3s ease;
}

.benefit-card:hover .benefit-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(-5deg) scale(1.05);
}

/*==================================================
TEXT
==================================================*/

.benefit-card h3{
    font-size:1.1rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.benefit-card p{
    font-size:.95rem;
    line-height:1.7;
    color:#64748b;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}






/*==================================================
SERVICE PROCESS (PREMIUM REDESIGN)
==================================================*/

.service-process{
    position:relative;
    padding:120px 0;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
    overflow:hidden;
}

/* subtle glow background */
.service-process::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#2563eb22,transparent 70%);
    filter:blur(90px);
    opacity:.6;
    pointer-events:none;
}

/*==================================================
TIMELINE WRAPPER
==================================================*/

.process-timeline{
    max-width:1000px;
    margin:70px auto 0;
    position:relative;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.process-timeline::before{
    content:"";
    position:absolute;
    left:35px;          /* center of 70px icon */
    top:35px;
    bottom:35px;
    width:2px;
    background:#dbeafe;
}

/*==================================================
ITEM
==================================================*/

.process-item{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:26px;
    align-items:start;
    position:relative;
}

.process-item::before{
    content:"";
    position:absolute;
    left:70px;
    top:35px;

    width:26px;
    height:2px;

    background:#dbeafe;
}

/*==================================================
ICON (STEP NUMBER)
==================================================*/

.process-icon{
    position:relative;
    z-index:2;

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#eff6ff;
    border:1px solid #bfdbfe;

    color:#2563eb;
    font-size:1.25rem;
    font-weight:800;
}

/* hover */
.process-item:hover .process-icon{
    background:#2563eb;
    color:#fff;
    transform:translateY(-4px) rotate(-2deg);
    box-shadow:0 15px 40px rgba(37,99,235,.25);
}

/*==================================================
CONTENT CARD
==================================================*/

.process-card{
    flex:1;

    padding:20px 24px;
    min-height:unset;
    border-radius:18px;

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px);

    border:1px solid #e2e8f0;

    box-shadow:0 20px 60px rgba(15,23,42,.05);

    transition:.35s ease;
}

/* hover lift */
.process-item:hover .process-card{
    transform:translateY(-4px);
    border-color:#c7dbff;
    box-shadow:0 30px 80px rgba(37,99,235,.12);
}

/* title */
.process-card h3{
    font-size:1.2rem;
    font-weight:900;
    color:#0f172a;
    margin-bottom:8px;
}

/* description */
.process-card p{
    font-size:.98rem;
    line-height:1.6;
    margin:0;
    color:#64748b;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

    .process-timeline::before{
        left:22px;
    }

    .process-item{
        gap:16px;
    }

    .process-item::before{
        left:15px;
    }

    .process-icon{
        width:55px;
        height:55px;
        font-size:1.1rem;
        border-radius:14px;
    }

    .process-card{
        padding:18px;
    }
}







/*==================================================
SERVICE TECHNOLOGIES
==================================================*/

.service-technologies{ 
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
BACKGROUND GLOW
==================================================*/

.service-technologies::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-220px;
    width:520px;
    height:520px;
    border-radius:50%;

    background:
        radial-gradient(circle,#2563eb20,transparent 70%);

    filter:blur(90px);
    pointer-events:none;
}

.service-technologies::after{
    content:"";
    position:absolute;
    bottom:-220px;
    right:-220px;
    width:520px;
    height:520px;
    border-radius:50%;

    background:
        radial-gradient(circle,#60a5fa20,transparent 70%);

    filter:blur(100px);
    pointer-events:none;
}

/*==================================================
GRID
==================================================*/

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
    align-items:start;
}

/*=========================================
SHOW MORE
=========================================*/

.tech-hidden{
    display:none;
    flex-direction:column;
    gap:12px;
    margin-top:12px;
}

.tech-hidden.show{
    display:flex;
}

.tech-toggle{

    width:100%;

    margin-top:auto;

    padding:12px 16px;

    border:none;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.tech-toggle:hover{

    background:#2563eb;
    color:#fff;

}

.tech-toggle i{

    transition:.3s;

}

.tech-toggle.active i{

    transform:rotate(180deg);

}

/*==================================================
CATEGORY CARD
==================================================*/

.tech-card{
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;
    height:100%;

    padding:28px;

    border-radius:22px;

    background:#fff;

    border:1px solid #e2e8f0;

    box-shadow:
        0 18px 45px rgba(15,23,42,.05);

    transition:.35s ease;

    overflow:hidden;
}

.tech-card:hover{
    transform:translateY(-8px);

    border-color:#bfdbfe;

    box-shadow:
        0 28px 70px rgba(37,99,235,.12);
}

.tech-card::before{
    content:"";

    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(90deg,#2563eb,#60a5fa);

    transform:scaleX(0);
    transform-origin:left;

    transition:.35s ease;
}

.tech-card:hover::before{
    transform:scaleX(1);
}
/*==================================================
CARD HEADER
==================================================*/

.tech-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;

    margin-bottom:24px;
}

.tech-card-title{
    display:flex;
    align-items:center;
    gap:14px;

    min-width:0;
}

.tech-category-icon{
    width:54px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:18px;

    background:rgba(37,99,235,.08);

    color:#2563eb;

    font-size:1.35rem;

    transition:.35s ease;
}

.tech-card:hover .tech-category-icon{
    background:#2563eb;
    color:#fff;

    transform:rotate(-6deg) scale(1.06);

    box-shadow:
        0 15px 35px rgba(37,99,235,.25);
}

.tech-category-info{
    display:flex;
    flex-direction:column;
    gap:4px;

    min-width:0;
}

.tech-category-name{
    font-size:1.15rem;
    font-weight:800;

    color:#0f172a;

    letter-spacing:-.02em;
}

.tech-category-desc{
    font-size:.88rem;
    color:#64748b;
    line-height:1.5;
}

.tech-count{
    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:42px;
    height:42px;

    padding:0 14px;

    border-radius:999px;

    background:#eff6ff;

    color:#2563eb;

    font-size:.9rem;
    font-weight:700;

    border:1px solid #dbeafe;
}
/*==================================================
TECHNOLOGY LIST
==================================================*/

.tech-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
    flex:1;
}

/*==================================================
TECHNOLOGY ITEM
==================================================*/

.tech-item{
    display:flex;
    align-items:center;
    gap:10px;

    width:100%;

    padding:12px 14px;

    border-radius:14px;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    transition:.3s ease;
}

.tech-item:hover{
    background:#eff6ff;
    border-color:#bfdbfe;
    transform:translateX(4px);
}

/*==================================================
TECH ICON
==================================================*/

.tech-item-icon{
    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:12px;

    background:#ffffff;

    color:#2563eb;

    font-size:.95rem;

    border:1px solid #dbeafe;

    transition:.3s ease;
}

.tech-item:hover .tech-item-icon{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
}

/*==================================================
TECH NAME
==================================================*/

.tech-item-name{
    flex:1;

    font-size:.95rem;
    font-weight:600;

    color:#334155;

    line-height:1.5;
}

/*==================================================
OPTIONAL BADGE
==================================================*/

.tech-item-badge{
    padding:4px 10px;

    border-radius:999px;

    background:#dbeafe;

    color:#2563eb;

    font-size:.72rem;
    font-weight:700;
}
/*==================================================
CARD ANIMATION
==================================================*/

.tech-card,
.tech-item,
.tech-category-icon,
.tech-item-icon{
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.tech-card:hover .tech-category-name{
    color:#2563eb;
}

/*==================================================
SCROLL ANIMATION READY
==================================================*/

.tech-card{
    opacity:1;
    transform:translateY(0);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .tech-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .service-technologies{
        padding:100px 0;
    }

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .service-technologies{
        padding:80px 0;
    }

    .tech-grid{
        grid-template-columns:1fr;
    }

}








/*==================================================
SERVICE INDUSTRIES
==================================================*/

.service-industries{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
BACKGROUND GLOW
==================================================*/

.service-industries::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-220px;
    width:520px;
    height:520px;
    border-radius:50%;

    background:
        radial-gradient(circle,#2563eb20,transparent 70%);

    filter:blur(90px);
    pointer-events:none;
}

.service-industries::after{
    content:"";
    position:absolute;
    right:-220px;
    bottom:-220px;

    width:520px;
    height:520px;
    border-radius:50%;

    background:
        radial-gradient(circle,#60a5fa20,transparent 70%);

    filter:blur(100px);
    pointer-events:none;
}

/*==================================================
GRID
==================================================*/

.industries-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;

    margin-top:60px;
}

/*==================================================
CARD
==================================================*/

.industry-card{
    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    padding:36px 28px;

    border-radius:22px;

    background:#fff;
    border:1px solid #e2e8f0;

    box-shadow:
        0 18px 45px rgba(15,23,42,.05);

    transition:.35s ease;

    overflow:hidden;
}

.industry-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(90deg,#2563eb,#60a5fa);

    transform:scaleX(0);
    transform-origin:left;

    transition:.35s ease;
}

.industry-card:hover{
    transform:translateY(-8px);

    border-color:#bfdbfe;

    box-shadow:
        0 30px 70px rgba(37,99,235,.12);
}

.industry-card:hover::before{
    transform:scaleX(1);
}/*==================================================
ICON
==================================================*/

.industry-icon{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border-radius:20px;

    background:rgba(37,99,235,.08);

    color:#2563eb;

    font-size:1.8rem;

    transition:.35s ease;
}

.industry-card:hover .industry-icon{
    background:#2563eb;
    color:#fff;

    transform:
        rotate(-6deg)
        scale(1.08);

    box-shadow:
        0 16px 40px rgba(37,99,235,.25);
}

/*==================================================
CONTENT
==================================================*/

.industry-content{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.industry-content h3{
    font-size:1.2rem;
    font-weight:800;

    color:#0f172a;

    letter-spacing:-.02em;

    transition:.3s ease;
}

.industry-card:hover .industry-content h3{
    color:#2563eb;
}

.industry-content p{
    font-size:.95rem;
    line-height:1.75;

    color:#64748b;
}
/*==================================================
ANIMATIONS
==================================================*/

.industry-card,
.industry-icon{
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .industries-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .service-industries{
        padding:100px 0;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }

}

@media (max-width:768px){

    .industry-card{
        padding:30px 24px;
    }

    .industry-icon{
        width:64px;
        height:64px;
        font-size:1.6rem;
    }

    .industry-content h3{
        font-size:1.1rem;
    }

}

@media (max-width:576px){

    .service-industries{
        padding:80px 0;
    }

    .industries-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .industry-card{
        padding:28px 22px;
    }

    .industry-icon{
        width:58px;
        height:58px;
        font-size:1.45rem;
    }

    .industry-content p{
        font-size:.92rem;
    }

}









/*==================================================
SERVICE TIMELINE
==================================================*/

.service-timeline{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
BACKGROUND GLOW
==================================================*/

.service-timeline::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-220px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:
        radial-gradient(circle,#2563eb20,transparent 70%);

    filter:blur(90px);

    pointer-events:none;
}

.service-timeline::after{
    content:"";
    position:absolute;
    bottom:-220px;
    right:-220px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:
        radial-gradient(circle,#60a5fa20,transparent 70%);

    filter:blur(100px);

    pointer-events:none;
}

/*==================================================
TIMELINE WRAPPER
==================================================*/

.timeline{
    position:relative;
    margin-top:70px;
    z-index:2;
}

.timeline::before{
    content:"";

    position:absolute;

    left:28px;
    top:0;
    bottom:0;

    width:2px;

    background:
        linear-gradient(#2563eb,#93c5fd);
}
/*==================================================
TIMELINE ITEM
==================================================*/

.timeline-item{
    position:relative;

    display:flex;
    align-items:flex-start;

    gap:30px;

    margin-bottom:45px;
}

.timeline-item:last-child{
    margin-bottom:0;
}

/*==================================================
TIMELINE MARKER
==================================================*/

.timeline-marker{
    position:relative;

    width:56px;
    height:56px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#2563eb;
    color:#fff;

    font-size:.95rem;
    font-weight:800;

    box-shadow:
        0 12px 30px rgba(37,99,235,.30);

    z-index:2;

    transition:.35s ease;
}

.timeline-item:hover .timeline-marker{
    transform:scale(1.08);
    box-shadow:
        0 18px 40px rgba(37,99,235,.35);
}

/*==================================================
CARD
==================================================*/

.timeline-card{
    flex:1;

    padding:28px;

    border-radius:22px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    box-shadow:
        0 18px 45px rgba(15,23,42,.05);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.timeline-card::before{
    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:
        linear-gradient(#2563eb,#60a5fa);

    transform:scaleY(0);
    transform-origin:top;

    transition:.35s ease;
}

.timeline-item:hover .timeline-card{
    transform:translateY(-6px);

    border-color:#bfdbfe;

    box-shadow:
        0 28px 70px rgba(37,99,235,.10);
}

.timeline-item:hover .timeline-card::before{
    transform:scaleY(1);
}
/*==================================================
CARD CONTENT
==================================================*/

.timeline-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    margin-bottom:14px;
}

.timeline-card-header h3{
    font-size:1.2rem;
    font-weight:800;

    color:#0f172a;

    letter-spacing:-.02em;
}

.timeline-duration{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 14px;

    border-radius:999px;

    background:#eff6ff;

    color:#2563eb;

    font-size:.8rem;
    font-weight:700;

    border:1px solid #dbeafe;

    white-space:nowrap;
}

.timeline-card p{
    color:#64748b;

    font-size:.98rem;

    line-height:1.8;

    margin:0;
}

/*==================================================
ANIMATION
==================================================*/

.timeline-item,
.timeline-card,
.timeline-marker{
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease,
        color .3s ease;
}

.timeline-item:hover .timeline-card-header h3{
    color:#2563eb;
}
/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .timeline-list{
        gap:40px;
    }

}

@media (max-width:992px){

    .service-timeline{
        padding:100px 0;
    }

    .timeline-line{
        left:28px;
    }

    .timeline-item{
        grid-template-columns:56px 1fr;
        gap:20px;
    }

    .timeline-marker{
        width:56px;
        height:56px;
        font-size:1rem;
    }

    .timeline-card{
        padding:26px;
    }

}

@media (max-width:768px){

    .timeline-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .timeline-card-header h3{
        font-size:1.1rem;
    }

    .timeline-duration{
        font-size:.75rem;
    }

}

@media (max-width:576px){

    .service-timeline{
        padding:80px 0;
    }

    .timeline-list{
        gap:30px;
    }

    .timeline-line{
        left:24px;
    }

    .timeline-item{
        grid-template-columns:48px 1fr;
        gap:16px;
    }

    .timeline-marker{
        width:48px;
        height:48px;
        font-size:.95rem;
    }

    .timeline-card{
        padding:22px;
    }

    .timeline-card p{
        font-size:.92rem;
        line-height:1.7;
    }

}










/*==================================================
SERVICE FAQ (PREMIUM HELP CENTER ACCORDION)
==================================================*/

.service-faq{
    position:relative;
    padding:120px 0;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
WRAPPER
==================================================*/

.faq-wrapper{
    max-width:900px;
    margin:70px auto 0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

/*==================================================
FAQ ITEM (GLASS CARD)
==================================================*/

.faq-item{
    border-radius:20px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(14px);

    border:1px solid #e2e8f0;

    box-shadow:
        0 20px 60px rgba(15,23,42,.05),
        inset 0 1px 0 rgba(255,255,255,.7);

    overflow:hidden;
    transition:.35s cubic-bezier(.2,.8,.2,1);
}

.faq-item:hover{
    transform:translateY(-3px);
    border-color:#c7dbff;
    box-shadow:0 30px 80px rgba(37,99,235,.10);
}

/*==================================================
QUESTION BUTTON
==================================================*/

.faq-question{
    width:100%;
    padding:22px 24px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;

    background:transparent;
    border:none;
    cursor:pointer;

    text-align:left;
}

/* question text */
.faq-question-text{
    font-size:1.05rem;
    font-weight:800;
    color:#0f172a;
    line-height:1.5;
    transition:.25s ease;
}

.faq-item:hover .faq-question-text{
    color:#2563eb;
}

/*==================================================
ICON
==================================================*/

.faq-icon{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:rgba(37,99,235,.08);
    color:#2563eb;

    flex-shrink:0;

    transition:.35s ease;
}

/* active state (JS toggles .active on .faq-item) */
.faq-item.active .faq-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(45deg);
}

/*==================================================
ANSWER
==================================================*/

.faq-answer{
    max-height:0;
    overflow:hidden;

    opacity:0;
    transform:translateY(-10px);

    transition:
        max-height .55s ease,
        opacity .3s ease,
        transform .4s ease;

    padding:0 24px;
}

.faq-answer-inner{
    padding-bottom:22px;

    font-size:.98rem;
    line-height:1.8;
    color:#64748b;
}

/* open state */
.faq-item.active .faq-answer{
    max-height:400px;
    opacity:1;
    transform:translateY(0);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

    .faq-question{
        padding:18px;
    }

    .faq-question-text{
        font-size:1rem;
    }

    .faq-icon{
        width:36px;
        height:36px;
    }
}










/*====================================
  SERVICE CTA
====================================*/

.service-cta{
    position:relative;
    padding:120px 8%;
    overflow:hidden;
    background:linear-gradient(135deg,#0f172a 0%,#1e3a8a 100%);
}

.service-cta::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    top:-180px;
    left:-120px;
    filter:blur(30px);
}

.service-cta::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(59,130,246,.18);
    bottom:-150px;
    right:-120px;
    filter:blur(40px);
}

.service-cta .container{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
    text-align:center;
}

/* Badge */

.cta-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:22px;
    backdrop-filter:blur(10px);
}

/* Heading */

.service-cta h2{
    font-size:clamp(2.2rem,5vw,3.5rem);
    font-weight:800;
    line-height:1.2;
    color:#fff;
    margin-bottom:20px;
}

/* Paragraph */

.service-cta p{
    max-width:700px;
    margin:0 auto 45px;
    color:rgba(255,255,255,.82);
    font-size:1.08rem;
    line-height:1.8;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.cta-buttons .btn{
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

/* Primary */

.btn-primary{
    background:#fff;
    color:#0f172a;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(255,255,255,.18);
}

/* Outline */

.btn-outline{
    color:#fff;
    border:2px solid rgba(255,255,255,.35);
}

.btn-outline:hover{
    background:#fff;
    color:#0f172a;
    border-color:#fff;
    transform:translateY(-4px);
}

/* Features */

.cta-features{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.cta-features .feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.88);
    font-weight:500;
}

.cta-features i{
    color:#22c55e;
    font-size:1rem;
}

/*====================================
  Responsive
====================================*/

@media (max-width:768px){

    .service-cta{
        padding:90px 6%;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons .btn{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .cta-features{
        flex-direction:column;
        gap:18px;
    }

}