 .service-overview-img {
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(6, 163, 218, 0.15);
            width: 100%;
            object-fit: cover;
            height: 420px;
            background: linear-gradient(135deg, #0B2154 0%, #06A3DA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-overview-img-placeholder {
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(6, 163, 218, 0.15);
            width: 100%;
            height: auto;
            background: linear-gradient(135deg, #0B2154 0%, #06A3DA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-overview-img-placeholder::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }

        .service-overview-img-placeholder::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            bottom: -30px;
            left: -30px;
        }

        .overview-icon-large {
            font-size: 90px;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 1;
        }

        .feature-check {
            color: var(--primary);
            font-size: 16px;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 14px;
            font-size: 15px;
            color: #444;
        }

        /* ===== PROCESS STEPS ===== */
        .process-section {
            background: var(--light);
        }

        .process-step-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 5px 30px rgba(6, 163, 218, 0.08);
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(6, 163, 218, 0.15);
        }

        .process-step-num {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 18px;
        }

        .process-step-card h5 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .process-step-card p {
            color: #666;
            font-size: 14px;
            margin: 0;
        }

        .step-connector {
            position: absolute;
            top: 27px;
            right: -18px;
            width: 36px;
            height: 2px;
            background: linear-gradient(to right, var(--primary), transparent);
            z-index: 1;
        }

        /* ===== TECH STACK ===== */
        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1.5px solid #e0f4fb;
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
            margin: 6px;
            transition: all 0.2s;
            box-shadow: 0 2px 10px rgba(6, 163, 218, 0.07);
        }

        .tech-badge:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .tech-badge i {
            color: var(--primary);
            font-size: 16px;
        }

        .tech-badge:hover i {
            color: #fff;
        }

        /* ===== PRICING ===== */
        .pricing-card {
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid #e8f4fb;
            background: #fff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(6, 163, 218, 0.15);
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            background: linear-gradient(145deg, var(--dark) 0%, #0a3580 100%);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(6, 163, 218, 0.25);
            transform: scale(1.03);
            color: #fff;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: 18px;
            right: -28px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 36px;
            transform: rotate(45deg);
            letter-spacing: 1px;
        }

        .pricing-plan-name {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .pricing-card.featured .pricing-plan-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 6px;
        }

        .pricing-card.featured .pricing-price {
            color: #fff;
        }

        .pricing-price sup {
            font-size: 22px;
            vertical-align: super;
        }

        .pricing-subtitle {
            font-size: 13px;
            color: #888;
            margin-bottom: 28px;
        }

        .pricing-card.featured .pricing-subtitle {
            color: rgba(255, 255, 255, 0.5);
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
            color: #555;
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255, 255, 255, 0.8);
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .pricing-features li i {
            color: var(--primary);
            font-size: 14px;
            flex-shrink: 0;
        }

        .pricing-features li.not-included {
            opacity: 0.4;
        }

        .pricing-features li.not-included i {
            color: #aaa;
        }

        .pricing-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 0 0 24px;
        }

        .pricing-card.featured .pricing-divider {
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        /* ===== REQUIREMENTS ===== */
        .req-card {
            background: #fff;
            border-radius: 12px;
            padding: 28px 24px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 20px rgba(6, 163, 218, 0.07);
            height: 100%;
            transition: all 0.3s ease;
        }

        .req-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 30px rgba(6, 163, 218, 0.14);
        }

        .req-icon {
            width: 46px;
            height: 46px;
            background: var(--light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 14px;
        }

        .req-card h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .req-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--light);
        }

        .custom-accordion .accordion-item {
            border: none;
            border-radius: 10px !important;
            margin-bottom: 12px;
            box-shadow: 0 3px 15px rgba(6, 163, 218, 0.07);
            overflow: hidden;
        }

        .custom-accordion .accordion-button {
            font-weight: 600;
            color: var(--dark);
            background: #fff;
            padding: 18px 24px;
            font-size: 15px;
        }

        .custom-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: #fff;
            box-shadow: none;
        }

        .custom-accordion .accordion-button::after {
            background-image: none;
            content: "\F282";
            font-family: "bootstrap-icons";
            font-size: 16px;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .custom-accordion .accordion-button:not(.collapsed)::after {
            content: "\F286";
            transform: none;
        }

        .custom-accordion .accordion-body {
            padding: 16px 24px 20px;
            color: #555;
            font-size: 14.5px;
            line-height: 1.7;
        }

        /* ===== TESTIMONIAL ===== */
        .testimonial-card {
            background: #fff;
            border-radius: 14px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(6, 163, 218, 0.08);
            height: 100%;
            position: relative;
        }

        .testimonial-card::before {
            content: '\201C';
            font-size: 80px;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
            font-family: Georgia, serif;
        }

        .testimonial-stars {
            color: #FFC107;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .testimonial-text {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 15px;
            margin: 0;
        }

        .testimonial-role {
            font-size: 13px;
            color: #888;
            margin: 0;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, #0a3580 50%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -100px;
            left: -80px;
        }

        .cta-phone-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 12px 28px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .cta-phone-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
            transform: scale(1.05);
        }

        .cta-phone-badge i {
            font-size: 22px;
            animation: ring 1.5s infinite;
        }

        @keyframes ring {
            0%, 100% { transform: rotate(0deg); }
            10% { transform: rotate(-15deg); }
            20% { transform: rotate(15deg); }
            30% { transform: rotate(-10deg); }
            40% { transform: rotate(10deg); }
            50% { transform: rotate(0deg); }
        }

        .cta-stat {
            text-align: center;
            padding: 20px 15px;
        }

        .cta-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .cta-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 5px;
        }

        .cta-stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.15);
            height: 60px;
            margin: auto 0;
        }

        /* Section titles */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Misc */
        .bg-light-blue {
            background: var(--light);
        }

        .text-primary-custom {
            color: var(--primary) !important;
        }

        .btn-primary-custom {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            border-radius: 50px;
            padding: 12px 32px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: var(--dark);
            border-color: var(--dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 163, 218, 0.35);
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            border-radius: 50px;
            padding: 12px 32px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .highlight-box {
            background: var(--light);
            border-radius: 12px;
            padding: 24px;
            border-left: 4px solid var(--primary);
        }

        .delivery-badge {
            background: #e8f8e8;
            color: #2e7d32;
            border-radius: 50px;
            padding: 4px 14px;
            font-size: 12px;
            font-weight: 600;
        }

.service-overview-img-placeholder img {
    width: 100%;
    
    object-fit: contain;
}

.req-section {
    background-color: #f4f6fb;
}

.req-section .container {
    position: relative;
    z-index: 1;
}
 
/* Eyebrow text */
.req-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2563eb;
}
 
/* Main heading */
.req-heading {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.req-heading-accent {
    color: #2563eb;
}
 
/* Subtext */
.req-subtext {
    font-size: 15px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
 
/* List wrapper — card-style box */
.req-list-wrapper {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
 
/* Left column has a right border divider on desktop */
@media (min-width: 768px) {
    .req-col-left {
        border-right: 1px solid #e2e8f0;
    }
}
 
/* Each list item */
.req-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}
.req-list-item:last-child {
    border-bottom: none;
}
.req-list-item:hover {
    background-color: #f8faff;
}
 
/* Icon wrapper */
.req-icon-wrap {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-top: 2px;
}
.req-icon-wrap svg {
    width: 18px;
    height: 18px;
}
 
/* Item title */
.req-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px;
}
 
/* Item description */
.req-item-desc {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}
 
/* Note bar */
.req-note-bar {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2563eb;
    padding: 18px 24px;
}
.req-note-icon {
    width: 22px;
    height: 22px;
    color: #2563eb;
    margin-top: 2px;
}
.req-note-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}
.req-note-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
}
 
/* Mobile: remove last item border */
@media (max-width: 767px) {
    .req-col-left .req-list-item:last-child {
        border-bottom: 1px solid #f1f5f9;
    }
    .req-col-right .req-list-item:last-child {
        border-bottom: none;
    }
    .req-list-item {
        padding: 18px 20px;
    }
}

.srv-outer-service {
    position: relative;
   
    overflow: hidden;
}