/* --- Master Service Detail Configurations --- */
:root {
    --bg-dark-deep: #020813;
    --card-bg-dark: rgba(255, 255, 255, 0.04);
    --border-color: #12253d;
    --text-pure: #ffffff;
    --text-gray-blue: #8fa1b6;
    --brand-blue: #3b82f6;
    --brand-cyan: #06b6d4;
    --btn-blue: #0056b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*background-color: var(--bg-dark-deep);*/
     background: radial-gradient(circle at top left, #071426, #020617);
   
    color: var(--text-pure);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.service-detail-page {
    padding: 40px 0 100px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Enforces multi-row wrap safety on ultra small devices */
    gap: 8px;
    font-size: 13px;
    margin-bottom: 45px;
}

.breadcrumb a {
    color: var(--text-gray-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--text-pure);
}

.breadcrumb .bc-arrow i {
    font-size: 10px;
    color: var(--text-gray-blue);
}

.breadcrumb .current-service {
    color: var(--text-pure);
    font-weight: 500;
}

/* --- Bada Premium Hero Setup --- */
.service-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Gives ample proportional layout space to image container */
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.hero-left h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-left h3 {
    font-size: 24px;
    font-weight: 600;
    color: #a5b9cf;
    line-height: 1.4;
    margin-bottom: 22px;
}

.hero-desc {
    color: var(--text-gray-blue);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 35px;
}

.btn-action {
    background-color: var(--brand-blue);
    color: var(--text-pure);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-action:hover {
    background-color: var(--btn-blue);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

/* --- Premium Large Visual Container --- */
.hero-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

.premium-graphic-container {
    position: relative;
    width: 100%;
    max-width: 440px; /* Bada display size footprint */
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Atmospheric Ambient Backlit Glow */
.glow-orb {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(0,0,0,0) 70%);
    top: 10%;
    right: 10%;
    z-index: 1;
}

/* Main UI Component Box */
.main-ui-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, #0b1d35 0%, #061121 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.panel-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #eab308; }
.dot.green { background-color: #22c55e; }

.panel-title {
    font-size: 11.5px;
    color: var(--text-gray-blue);
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 25px;
}

.circle-chart-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.progress-ring__circle {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 5/* 98% Ring fill calculation formula */;
    transform: rotate(-90deg);
    transform-origin: 50px 50px;
}

.counter-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-pure);
}

.stat-meta h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-meta p {
    color: var(--text-gray-blue);
    font-size: 13px;
    line-height: 1.4;
}

.mini-data-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-lbl {
    font-size: 12px;
    color: var(--text-gray-blue);
}

.bar-track {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
}
.bar-fill.blue { background-color: var(--brand-blue); }
.bar-fill.cyan { background-color: var(--brand-cyan); }

/* Floating Micro Element */
.floating-badge-v2 {
    position: absolute;
    bottom: -15px;
    left: -20px;
    z-index: 3;
    background-color: rgba(7, 19, 36, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.f-icon-box {
    width: 36px;
    height: 36px;
    background-color: rgba(6, 182, 212, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-icon-box i {
    color: var(--brand-cyan);
    font-size: 15px;
}

.floating-badge-v2 h5 {
    font-size: 13.5px;
    font-weight: 600;
}

.floating-badge-v2 p {
    font-size: 11px;
    color: var(--text-gray-blue);
}

/* --- Global Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-title {
    font-size: 12px;
    color: var(--brand-blue);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 8px;
}

.section-line {
    width: 40px;
    height: 2px;
    background-color: var(--brand-blue);
    margin: 15px auto 0 auto;
}

/* --- Process Grid Section (3 Columns) --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 90px;
}

.process-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    transition: transform 0.3s ease, border-color 0.3s;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-num {
    font-size: 32px;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.2);
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-gray-blue);
    font-size: 13.5px;
    line-height: 1.6;
}

/* --- Industries We Serve (4 Columns Grid) --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}

.industry-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.ind-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.ind-icon i {
    color: var(--brand-blue);
    font-size: 18px;
}

.industry-card h4 {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.industry-card p {
    color: var(--text-gray-blue);
    font-size: 13px;
    line-height: 1.5;
}

/* --- Benefits Container Block --- */
.benefits-container {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.benefits-left {
    flex: 0 0 35%;
}

.sub-title-left {
    font-size: 11px;
    color: var(--brand-blue);
    font-weight: 600;
    letter-spacing: 1px;
}

.benefits-left h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0 15px 0;
}

.benefits-left p {
    color: var(--text-gray-blue);
    font-size: 14px;
    line-height: 1.6;
}

.benefits-right {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--brand-blue);
    font-size: 16px;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit-content p {
    color: var(--text-gray-blue);
    font-size: 13.5px;
    line-height: 1.5;
}

/* --- Lower Inner Call To Action --- */
.mini-cta-box {
    background: linear-gradient(90deg, #021a3a 0%, #051429 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--btn-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap i {
    color: var(--text-pure);
    font-size: 20px;
}

.cta-inner-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-inner-left p {
    color: var(--text-gray-blue);
    font-size: 13.5px;
}

.btn-outline-cta {
    border: 1px solid var(--brand-blue);
    color: var(--text-pure);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-outline-cta:hover {
    background-color: rgba(59, 130, 246, 0.15);
}

/* ==========================================================================
   PURE RESPONSIVE MEDIA QUERIES BREAKPOINTS
   ========================================================================== */

@media (max-width: 1100px) {
    .service-hero {
        gap: 30px;
    }
    .hero-left h1 {
        font-size: 44px;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .service-hero {
        grid-template-columns: 1fr; /* Force single column on tablet screen viewports */
        text-align: center;
    }
    .hero-left h1 {
        font-size: 48px;
    }
    .hero-desc {
        margin: 0 auto 35px auto;
    }
    .hero-right {
        justify-content: center;
        margin-top: 20px;
    }
    .benefits-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
        gap: 35px;
    }
    .benefits-left, .benefits-right {
        width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .service-detail-page {
        padding: 20px 0 60px 0;
    }
    .breadcrumb {
        margin-bottom: 30px;
    }
    .hero-left h1 {
        font-size: 38px;
    }
    .hero-left h3 {
        font-size: 20px;
    }
    .process-grid {
        grid-template-columns: 1fr; /* Full width process cards stacked */
        gap: 20px;
    }
    .mini-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    .cta-inner-left {
        flex-direction: column;
        gap: 15px;
    }
    .btn-outline-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-left h1 {
        font-size: 32px;
    }
    .btn-action {
        width: 100%;
        justify-content: center;
    }
    .industries-grid {
        grid-template-columns: 1fr; /* Single column layout safety on compact grids */
    }
    .floating-badge-v2 {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
        width: 85%;
    }
    .premium-graphic-container {
        height: 380px;
    }
}