/* ==============================================
   SERVICE PAGES – COMMON STYLES
   Shared across all service page templates
   ============================================== */

/* --- Hero Section --- */
.svc-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0d1b3d 0%, #102a56 50%, #0d1b3d 100%);
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(248, 128, 41, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12), transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(6, 182, 212, 0.1), transparent 45%);
    z-index: 1;
}

/* Content */
.svc-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    margin: 20px 0;
}

.svc-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
}

/* Badge */
.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 128, 41, 0.15);
    color: #F88029;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Buttons */
.svc-hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-svc-primary,
.btn-svc-primary:hover {
    background: #F88029;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-svc-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}


/* Trust Items */
.svc-hero-trust {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.svc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.svc-trust-item i {
    color: #F88029;
}

/* Stats Section */
.svc-hero-stats {
    margin-top: 20px;
}

.svc-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
}

.svc-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.svc-stat-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    border-radius: 10px;
    background: rgba(248, 128, 41, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-stat-icon i {
    color: #F88029;
    font-size: 18px;
}

.svc-stat-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.svc-stat-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- Overview Section --- */
.svc-overview-section {
    padding: 70px 0;
    background: #ffffff;
}

.svc-overview-content .sub-title {
    color: #F88029;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.svc-overview-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1.25;
    margin-bottom: 20px;
}

.svc-overview-content p {
    font-size: 16px;
    color: #5a6785;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* --- Tech Logos / Pills --- */
.svc-tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    align-items: center;
}

.svc-tech-logos img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.svc-tech-logos img:hover {
    transform: scale(1.15);
}

.svc-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 50px;
    padding: 8px 16px 8px 10px;
    transition: all 0.3s ease;
}

.svc-tech-pill:hover {
    border-color: #F88029;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(248, 128, 41, 0.1);
}

.svc-tech-pill span {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3d;
}

/* --- Services Section --- */
.svc-services-section {
    padding: 70px 0 90px;
    background: #f6f8ff;
}

.svc-service-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: calc(100% - 30px);
}

.svc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 27, 61, 0.1);
    border-color: #F88029;
}

.svc-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #F88029;
    margin-bottom: 22px;
}

.svc-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 12px;
}

.svc-service-card p {
    font-size: 15px;
    color: #5a6785;
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(13, 27, 61, 0.06);
    padding-top: 14px;
}

.svc-service-features li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #4a5875;
    margin-bottom: 8px;
    line-height: 1.5;
}

.svc-service-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #F88029;
    font-weight: 700;
    font-size: 13px;
}

/* --- Industries Section --- */
.svc-industries-section {
    padding: 70px 0 70px;
    background: #ffffff;
}

.svc-industry-card {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    height: calc(100% - 24px);
}

.svc-industry-card:hover {
    border-color: #F88029;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(248, 128, 41, 0.1);
}

.svc-industry-card i {
    font-size: 32px;
    color: #F88029;
    margin-bottom: 14px;
    display: block;
}

.svc-industry-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 8px;
}

.svc-industry-card p {
    font-size: 13px;
    color: #5a6785;
    line-height: 1.6;
    margin: 0;
}

/* --- Process Section --- */
.svc-process-section {
    padding: 70px 0 70px;
    background: #f6f8ff;
}

.svc-process-card {
    display: flex;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.svc-process-card:hover {
    border-color: #F88029;
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(13, 27, 61, 0.06);
}

.svc-process-final {
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border: none;
}

.svc-process-final .svc-process-num {
    background: #F88029;
    color: #fff;
}

.svc-process-final h3 {
    color: #ffffff;
}

.svc-process-final p {
    color: rgba(255, 255, 255, 0.8);
}

.svc-process-num {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #F88029;
}

.svc-process-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 10px;
}

.svc-process-body p {
    font-size: 15px;
    color: #5a6785;
    line-height: 1.7;
    margin: 0;
}

/* --- Why Choose Section --- */
.svc-why-section {
    padding: 70px 0 50px;
    background: #ffffff;
}

.svc-why-card {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: calc(100% - 30px);
}

.svc-why-card:hover {
    transform: translateY(-8px);
    border-color: #F88029;
    box-shadow: 0 16px 40px rgba(248, 128, 41, 0.1);
}

.svc-why-icon {
    width: 64px;
    height: 64px;
    background: #F88029;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 20px;
}

.svc-why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 12px;
}

.svc-why-card p {
    font-size: 15px;
    color: #5a6785;
    line-height: 1.7;
    margin: 0;
}

/* --- FAQ Section --- */
.svc-faq-section {
    padding: 70px 0;
    background: #f6f8ff;
}

.svc-faq-left .sub-title {
    color: #F88029;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.svc-faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1.3;
    margin-bottom: 16px;
}

.svc-faq-left p {
    font-size: 16px;
    color: #5a6785;
    line-height: 1.7;
}

.svc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-faq-item {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.svc-faq-item.active {
    border-color: #F88029;
    box-shadow: 0 8px 25px rgba(248, 128, 41, 0.08);
}

.svc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.svc-faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b3d;
    margin: 0;
    flex: 1;
}

.svc-faq-toggle {
    width: 32px;
    height: 32px;
    background: #f6f8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-faq-item.active .svc-faq-toggle {
    background: #F88029;
    color: #fff;
    transform: rotate(180deg);
}

.svc-faq-toggle i {
    font-size: 12px;
    color: #5a6785;
}

.svc-faq-item.active .svc-faq-toggle i {
    color: #fff;
}

.svc-faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.svc-faq-answer p {
    font-size: 15px;
    color: #5a6785;
    line-height: 1.75;
    margin: 0;
}

.svc-process-final h3,
.svc-process-final p {
    color: white;
}



/* ==============================================
   PAGE-UNIQUE VISUALS
   ============================================== */

/* --- AI & Automation: Hub Visual Grid --- */
.ai-overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.ai-visual-grid {
    position: relative;
    width: 320px;
    height: 320px;
}

.ai-visual-item {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 1;
}

.ai-visual-item i {
    font-size: 28px;
    color: #F88029;
}

.ai-visual-item span {
    font-size: 12px;
    font-weight: 600;
    color: #0d1b3d;
}

.ai-visual-item:hover {
    transform: translateY(-6px);
    border-color: #F88029;
    box-shadow: 0 12px 30px rgba(248, 128, 41, 0.12);
}

.ai-v1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-v2 {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.ai-v3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.ai-v4 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-v1:hover {
    transform: translateX(-50%) translateY(-6px);
}

.ai-v2:hover {
    transform: translateY(-50%) translateY(-6px);
}

.ai-v3:hover {
    transform: translateY(-50%) translateY(-6px);
}

.ai-v4:hover {
    transform: translateX(-50%) translateY(-6px);
}

.ai-visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F88029 0%, #e06b1a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(248, 128, 41, 0.3);
}

.ai-visual-center i {
    font-size: 32px;
    color: #fff;
}

.ai-visual-center span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Blockchain: Chain Visual --- */
.bc-chain-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    min-height: 380px;
    flex-direction: column;
}

.bc-block {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #f6f8ff 0%, #fff7ed 100%);
    border: 2px solid rgba(248, 128, 41, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.bc-block:hover {
    border-color: #F88029;
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(248, 128, 41, 0.15);
}

.bc-block-inner {
    text-align: center;
}

.bc-block-inner i {
    font-size: 28px;
    color: #F88029;
    display: block;
    margin-bottom: 6px;
}

.bc-block-inner span {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3d;
}

.bc-chain-link {
    color: #F88029;
    font-size: 18px;
    padding: 8px 0;
    opacity: 0.5;
}

.bc-chain-label {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #F88029;
    letter-spacing: 0.5px;
    text-align: center;
}

/* --- Web Development: Browser Mockup --- */
.wd-browser-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wd-browser-frame {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid rgba(13, 27, 61, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 27, 61, 0.12);
}

.wd-browser-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f6f8ff;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(13, 27, 61, 0.06);
}

.wd-bar-dots {
    display: flex;
    gap: 6px;
}

.wd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wd-dot-red {
    background: #ff5f57;
}

.wd-dot-yellow {
    background: #ffbd2e;
}

.wd-dot-green {
    background: #28c840;
}

.wd-bar-url {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: #5a6785;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wd-bar-url i {
    color: #28c840;
    font-size: 10px;
}

.wd-browser-body {
    padding: 20px;
}

.wd-mock-nav {
    height: 8px;
    background: #0d1b3d;
    border-radius: 4px;
    margin-bottom: 18px;
    width: 100%;
}

.wd-mock-hero {
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border-radius: 10px;
    padding: 24px 18px;
    margin-bottom: 16px;
}

.wd-mock-title {
    height: 10px;
    width: 70%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 10px;
}

.wd-mock-text {
    height: 6px;
    width: 90%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-bottom: 14px;
}

.wd-mock-btn {
    height: 24px;
    width: 80px;
    background: #F88029;
    border-radius: 5px;
}

.wd-mock-cards {
    display: flex;
    gap: 10px;
}

.wd-mock-card {
    flex: 1;
    height: 60px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 8px;
}

.wd-browser-badges {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.wd-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #0d1b3d;
}

.wd-badge-item i {
    color: #F88029;
    font-size: 12px;
}

/* --- Mobile App: Phone Mockup --- */
.ma-phone-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.ma-phone-frame {
    width: 200px;
    background: #0d1b3d;
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(13, 27, 61, 0.2);
    position: relative;
}

.ma-phone-notch {
    width: 80px;
    height: 6px;
    background: #1a2f5a;
    border-radius: 10px;
    margin: 0 auto 12px;
}

.ma-phone-screen {
    background: #f6f8ff;
    border-radius: 18px;
    padding: 20px 14px;
    min-height: 300px;
}

.ma-screen-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ma-screen-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #F88029;
    box-shadow: 0 2px 8px rgba(13, 27, 61, 0.06);
}

.ma-screen-card {
    height: 50px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(13, 27, 61, 0.04);
    border-left: 3px solid #F88029;
}

.ma-screen-card.ma-card-sm {
    height: 36px;
    border-left-color: rgba(13, 27, 61, 0.1);
}

.ma-phone-bar {
    width: 60px;
    height: 4px;
    background: #1a2f5a;
    border-radius: 10px;
    margin: 12px auto 0;
}

.ma-phone-labels {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.ma-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3d;
}

.ma-label i {
    font-size: 16px;
}

.ma-label-ios i {
    color: #0d1b3d;
}

.ma-label-android i {
    color: #3DDC84;
}

/* --- Ecommerce: Platform Grid --- */
.ec-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.ec-platform-card {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ec-platform-card:hover {
    border-color: #F88029;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(248, 128, 41, 0.1);
}

.ec-platform-card span {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3d;
}

/* --- Custom Software: Stack Visual --- */
.cs-stack-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}

.cs-stack-layer {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cs-stack-layer:hover {
    border-color: #F88029;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(248, 128, 41, 0.08);
}

.cs-stack-layer span {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b3d;
}

.cs-stack-layer small {
    font-size: 12px;
    color: #5a6785;
}

.cs-layer-1 {
    border-left: 4px solid #F88029;
}

.cs-layer-2 {
    border-left: 4px solid #0d1b3d;
}

.cs-layer-3 {
    border-left: 4px solid #F88029;
}

.cs-layer-4 {
    border-left: 4px solid #0d1b3d;
}

/* --- Digital Marketing: Channel Grid --- */
.dm-channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
}

.dm-channel-card {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.08);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dm-channel-card:hover {
    border-color: #F88029;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(248, 128, 41, 0.1);
}

.dm-channel-card i {
    font-size: 24px;
    color: #F88029;
}

.dm-channel-card span {
    font-size: 12px;
    font-weight: 600;
    color: #0d1b3d;
}



/* ==============================================
   INDUSTRY PAGES – SHARED STYLES (ind-*)
   Used across all industry page templates
   ============================================== */

/* --- Hero Mockup (E-Commerce specific) --- */
.ind-hero-mockup {
    position: relative;
    z-index: 2;
}

.ind-mockup-frame {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.ind-mockup-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f6f8ff;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(13, 27, 61, 0.06);
}

.ind-mockup-body {
    padding: 16px;
}

.ind-mock-header {
    height: 8px;
    background: #0d1b3d;
    border-radius: 4px;
    margin-bottom: 14px;
    width: 100%;
}

.ind-mock-banner {
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border-radius: 10px;
    padding: 22px 16px;
    margin-bottom: 16px;
}

.ind-mock-banner-text {
    height: 8px;
    width: 65%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 12px;
}

.ind-mock-banner-btn {
    height: 22px;
    width: 70px;
    background: #F88029;
    border-radius: 5px;
}

.ind-mock-products {
    display: flex;
    gap: 10px;
}

.ind-mock-product {
    flex: 1;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 8px;
    padding: 10px;
}

.ind-mock-img {
    height: 50px;
    background: linear-gradient(135deg, #e8ecf4 0%, #dde3ee 100%);
    border-radius: 6px;
    margin-bottom: 8px;
}

.ind-mock-line {
    height: 6px;
    width: 80%;
    background: #d1d8e5;
    border-radius: 3px;
    margin-bottom: 6px;
}

.ind-mock-price {
    height: 6px;
    width: 40%;
    background: #F88029;
    border-radius: 3px;
    opacity: 0.6;
}

.ind-mockup-cart {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 56px;
    height: 56px;
    background: #F88029;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(248, 128, 41, 0.4);
    z-index: 3;
}

.ind-mockup-cart span {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #fff;
    color: #F88029;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Challenges Section --- */
.ind-challenges-section {
    padding: 70px 0 50px;
    background: #ffffff;
}

.ind-challenge-card {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: calc(100% - 30px);
}

.ind-challenge-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #F88029;
    box-shadow: 0 20px 50px rgba(248, 128, 41, 0.12);
}

.ind-challenge-icon {
    width: 64px;
    height: 64px;
    background: #0d1b3d;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 20px;
}

.ind-challenge-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 12px;
}

.ind-challenge-card p {
    font-size: 15px;
    color: #5a6785;
    line-height: 1.7;
    margin: 0;
}

/* --- Learn More Link --- */
.ind-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F88029;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(13, 27, 61, 0.06);
    padding-top: 14px;
    margin-top: auto;
}

.ind-learn-more:hover {
    color: #0d1b3d;
    gap: 10px;
}

.ind-learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ind-learn-more:hover i {
    transform: translateX(4px);
}

.svc-services-section .svc-service-card {
    display: flex;
    flex-direction: column;
}

/* --- Platforms Section --- */
.ind-platforms-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.ind-platform-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
}

.ind-platform-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 16px;
    transition: all 0.4s ease;
    min-width: 140px;
}

.ind-platform-logo-card img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.ind-platform-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.ind-platform-logo-card:hover {
    border-color: #F88029;
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(248, 128, 41, 0.1);
}

.ind-platform-logo-card span {
    font-size: 14px;
    font-weight: 600;
    color: #0d1b3d;
}

/* --- Process Timeline --- */
.ind-process-section {
    padding: 70px 0 70px;
    background: #f6f8ff;
}

.ind-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.ind-timeline-track {
    display: none;
}

.ind-timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.ind-timeline-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0d1b3d, #F88029);
    border-radius: 2px;
    z-index: 0;
}

.ind-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.ind-step-dot {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d1b3d 0%, #1a2f5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(13, 27, 61, 0.3);
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.ind-step-dot span {
    font-size: 20px;
    font-weight: 700;
}

.ind-timeline-step:hover .ind-step-dot {
    background: #F88029;
    border: 3px solid #F88029;
    box-shadow: 0 8px 25px rgba(248, 128, 41, 0.35);
    transform: scale(1.12);
    color: #fff !important;
}

.ind-step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b3d;
    margin-bottom: 8px;
}

.ind-step-content p {
    font-size: 13px;
    color: #5a6785;
    line-height: 1.6;
    max-width: 160px;
    margin: 0 auto;
}

/* --- Case Study --- */
.ind-casestudy-section {
    padding: 70px 0;
    background: #ffffff;
    display: none;
}

.ind-casestudy-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ind-cs-placeholder {
    background: linear-gradient(135deg, #f6f8ff 0%, #fef3e8 100%);
    border: 2px dashed rgba(13, 27, 61, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 360px;
}

.ind-cs-placeholder i {
    font-size: 56px;
    color: #F88029;
    opacity: 0.4;
}

.ind-cs-placeholder span {
    font-size: 15px;
    font-weight: 600;
    color: #5a6785;
}

.ind-cs-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F88029;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ind-casestudy-content .sub-title {
    color: #F88029;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.ind-casestudy-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b3d;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ind-casestudy-content p {
    font-size: 16px;
    color: #5a6785;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ind-metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ind-metric {
    background: #f6f8ff;
    border: 1px solid rgba(13, 27, 61, 0.06);
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    transition: all 0.3s ease;
}

.ind-metric:hover {
    border-color: #F88029;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(248, 128, 41, 0.1);
}

.ind-metric-value {
    font-size: 32px;
    font-weight: 800;
    color: #F88029;
    margin-bottom: 6px;
}

.ind-metric-label {
    font-size: 13px;
    font-weight: 600;
    color: #5a6785;
}

/* --- Final CTA --- */
.ind-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1b3d 0%, #102a56 50%, #0d1b3d 100%);
}

.ind-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.ind-cta-inner h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.ind-cta-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}


body:has(.svc-services-section) .section-title p {
    margin: auto;
}

body:has(.svc-services-section) .section-title h2 {
    margin-bottom: 10px !important;
}

section#ind-services {
    padding-bottom: 70px !important;
}

/* ================================
   CLEAN CENTERED TIMELINE FIXED
================================ */

.ind-timeline {
    position: relative;
    padding: 200px 0 0;
    background: #f8fafc;
}

/* Center Horizontal Line */
.ind-timeline-track {
    position: absolute;
    top: 80px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(to right, #0d1b3d, #F88029);
    z-index: 1;
}

/* Steps Layout */
.ind-timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Each Step */
.ind-timeline-step {
    position: relative;
    width: 19%;
    text-align: center;
}

/* DOT */
.ind-step-dot {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 3px solid #0d1b3d;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #0d1b3d !important;
    position: relative;
    z-index: 3;
}

/* ACTIVE STEP (like 3 in your screenshot) */
/* .ind-timeline-step:nth-child(3) .ind-step-dot {
    background: #F88029;
    border-color: #F88029;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(248,128,41,0.2);
} */

/* Content Card */
.ind-step-content {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
    transition: 0.3s ease;
}

/* Alternate position */
.ind-timeline-step:nth-child(odd) .ind-step-content {
    margin-top: -300px;
}

.ind-timeline-step:nth-child(even) .ind-step-content {
    margin-top: 12px;
}

/* Typography */
.ind-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3d;
    margin-bottom: 10px;
}

.ind-step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Hover */
.ind-timeline-step:hover .ind-step-content {
    transform: translateY(-5px);
}

/* ================================
   MOBILE FIX
================================ */


/* --- Responsive --- */
@media (max-width: 1199px) {
    .svc-hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .svc-hero {
        padding: 90px 0 60px;
    }

    .svc-hero-content h1 {
        font-size: 36px;
    }

    .svc-hero-stats {
        margin-top: 40px;
    }

    .svc-overview-content h2,
    .svc-faq-left h2 {
        font-size: 28px;
    }

    .svc-process-card:hover {
        transform: none;
    }

    .ai-overview-visual {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .ai-visual-grid {
        width: 260px;
        height: 260px;
    }

    .ai-visual-item {
        width: 90px;
        height: 90px;
    }

    .ai-visual-center {
        width: 80px;
        height: 80px;
    }

    .bc-chain-visual {
        min-height: 280px;
    }

    .bc-block {
        width: 120px;
        height: 85px;
    }

    .wd-browser-frame {
        max-width: 360px;
    }

    .ma-phone-visual {
        min-height: 350px;
    }

    .dm-channel-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 360px;
    }

    .ind-hero-mockup {
        margin-top: 40px;
    }

    .ind-timeline-steps {
        flex-direction: column;
        gap: 24px;
    }

    .ind-timeline-steps::before {
        top: 0;
        bottom: 0;
        left: 23px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .ind-timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 18px;
    }

    .ind-step-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ind-step-content p {
        max-width: 100%;
    }

    .ind-casestudy-content h2 {
        font-size: 28px;
    }

    .ind-cta-inner h2 {
        font-size: 32px;
    }

    .ind-metrics {
        gap: 14px;
    }

    .ind-timeline-track {
        display: none;
    }

    .ind-timeline-steps {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .ind-timeline-step {
        width: 100%;
    }

    .ind-step-content {
        margin: 30px 0 !important;
    }

    .ind-timeline-step::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .svc-hero {
        padding: 80px 0 50px;
    }

    .svc-hero-content h1 {
        font-size: 28px;
    }

    .svc-hero-content p {
        font-size: 16px;
    }

    .svc-hero-btns {
        flex-direction: column;
    }

    .btn-svc-primary,
    .btn-svc-outline {
        text-align: center;
        justify-content: center;
    }

    .svc-hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .svc-overview-content h2 {
        font-size: 24px;
    }

    .svc-process-card {
        flex-direction: column;
        text-align: center;
    }

    .svc-process-num {
        margin: 0 auto;
    }

    .svc-faq-question h3 {
        font-size: 15px;
    }

    .svc-faq-left h2 {
        font-size: 24px;
    }

    .svc-tech-logos {
        gap: 8px;
    }

    .svc-tech-pill {
        padding: 6px 12px 6px 8px;
    }

    .svc-tech-pill span {
        font-size: 12px;
    }

    .ai-visual-grid {
        width: 240px;
        height: 240px;
    }

    .ai-visual-item {
        width: 80px;
        height: 80px;
    }

    .ai-visual-item i {
        font-size: 22px;
    }

    .ai-visual-item span {
        font-size: 10px;
    }

    .ai-visual-center {
        width: 70px;
        height: 70px;
    }

    .ai-visual-center i {
        font-size: 24px;
    }

    .bc-chain-visual {
        min-height: 250px;
    }

    .bc-block {
        width: 110px;
        height: 75px;
    }

    .bc-block-inner i {
        font-size: 22px;
    }

    .bc-block-inner span {
        font-size: 11px;
    }

    .wd-browser-frame {
        max-width: 300px;
    }

    .ma-phone-frame {
        width: 170px;
    }

    .ma-phone-screen {
        min-height: 250px;
    }

    .ma-phone-visual {
        min-height: 320px;
    }

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

    .dm-channel-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 260px;
    }

    .ind-mock-products {
        gap: 6px;
    }

    .ind-mock-img {
        height: 36px;
    }

    .ind-platform-logos {
        gap: 14px;
    }

    .ind-platform-logo-card {
        padding: 20px 22px;
        min-width: 110px;
    }

    .ind-metrics {
        flex-direction: column;
    }

    .ind-metric {
        min-width: auto;
    }

    .ind-casestudy-content h2 {
        font-size: 24px;
    }

    .ind-cta-inner h2 {
        font-size: 26px;
    }

    .ind-cta-inner p {
        font-size: 16px;
    }
}