 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #f9fafc;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1a2c3e;
            line-height: 1.5;
        }

        /* ========== SECTION 1: DIGITAL MARKETING SERVICE HERO (prefix: sec1-) ========== */
.sec1-service-hero {
    padding: 60px 0 80px;
    background: #ffffff;
}

.sec1-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec1-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.sec1-left {
    flex: 1;
    min-width: 280px;
}

.sec1-right {
    flex: 1;
    min-width: 280px;
}

/* ===== Breadcrumbs ===== */
.sec1-breadcrumbs {
    font-size: 0.8rem;
    color: #8ba0bc;
    margin-bottom: 24px;
}

.sec1-breadcrumbs a {
    color: #5b6e8c;
    text-decoration: none;
    transition: color 0.2s;
}

.sec1-breadcrumbs a:hover {
    color: #1E6DF2;
}

.sec1-breadcrumbs span {
    color: #1E6DF2;
    font-weight: 500;
}

/* ===== Typography ===== */
.sec1-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.sec1-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0A2540;
    margin-bottom: 20px;
}

.sec1-green-highlight {
    color: #4CAF50;
}

.sec1-description {
    font-size: 1rem;
    color: #4a5c72;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ===== Horizontal Checklist ===== */
.sec1-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}

.sec1-check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sec1-check-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.sec1-check-item span {
    color: #1a2c3e;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== Call-to-Action Button ===== */
.sec1-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.sec1-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: #1E6DF2;
    color: white;
    box-shadow: 0 4px 10px rgba(30, 109, 242, 0.25);
}

.sec1-btn-primary:hover {
    background: #0E5AD6;
    transform: translateY(-2px);
}

.sec1-btn-primary i {
    transition: transform 0.2s;
}

.sec1-btn-primary:hover i {
    transform: translateX(4px);
}

/* ===== Right Column Image ===== */
.sec1-service-image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .sec1-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 880px) {
    .sec1-service-hero {
        padding: 50px 0 60px;
    }
    
    .sec1-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .sec1-left {
        text-align: center;
    }
    
    .sec1-headline {
        font-size: 2rem;
    }
    
    .sec1-description {
        font-size: 0.95rem;
    }
    
    .sec1-description br {
        display: none;
    }
    
    .sec1-checklist {
        justify-content: center;
    }
    
    .sec1-buttons {
        justify-content: center;
    }
    
    .sec1-service-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sec1-breadcrumbs {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .sec1-service-hero {
        padding: 40px 0 50px;
    }
    
    .sec1-headline {
        font-size: 1.6rem;
    }
    
    .sec1-kicker {
        font-size: 0.65rem;
    }
    
    .sec1-description {
        font-size: 0.9rem;
    }
    
    .sec1-checklist {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .sec1-check-item span {
        font-size: 0.85rem;
    }
    
    .sec1-btn-primary {
        justify-content: center;
        width: 100%;
    }
    
    .sec1-breadcrumbs {
        font-size: 0.7rem;
    }
}

/* ========== SECTION 2: MARKETING SERVICES (prefix: sec2-) ========== */
.sec2-marketing-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.sec2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Top Section: Client Logo Banner ===== */
.sec2-clients-banner {
    background: #1e6df2;
    border-radius: 28px;
    padding: 40px 32px;
    margin-bottom: 70px;
}

.sec2-clients-headline {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.sec2-logos-wrapper {
    overflow-x: auto;
}

.sec2-logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sec2-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
    position: relative;
}

/* Vertical divider between logos */
.sec2-logo-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.sec2-logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec2-logo-icon i {
    font-size: 1.8rem;
    color: #b0c4de;
    transition: color 0.2s;
}

.sec2-logo-item:hover .sec2-logo-icon i {
    color: #4CAF50;
}

.sec2-logo-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #b0c4de;
    letter-spacing: 0.5px;
}

/* ===== Bottom Section: Solutions Grid ===== */
.sec2-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec2-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.sec2-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 16px;
}

.sec2-subtitle {
    font-size: 1rem;
    color: #5b6e8c;
    max-width: 650px;
    margin: 0 auto;
}

/* Solutions Grid Row 1 - 4 Columns */
.sec2-solutions-grid-row1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* Solutions Grid Row 2 - 2 Columns Centered */
.sec2-solutions-grid-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 60%;
    margin: 0 auto;
}

/* Solution Card Styles */
.sec2-solution-card {
    background: white;
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sec2-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.sec2-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sec2-card-icon i {
    font-size: 1.6rem;
}

.sec2-icon-green { background: #e8f5e9; }
.sec2-icon-green i { color: #4CAF50; }

.sec2-icon-purple { background: #f3e8ff; }
.sec2-icon-purple i { color: #9C27B0; }

.sec2-icon-orange { background: #fff3e0; }
.sec2-icon-orange i { color: #F97316; }

.sec2-icon-blue { background: #eef2ff; }
.sec2-icon-blue i { color: #1E6DF2; }

.sec2-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sec2-card-desc {
    font-size: 0.85rem;
    color: #5b6e8c;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sec2-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E6DF2;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.sec2-card-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.sec2-card-link:hover i {
    transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .sec2-solutions-grid-row2 {
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .sec2-solutions-grid-row1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sec2-solutions-grid-row2 {
        max-width: 80%;
    }
    
    .sec2-logos-grid {
        justify-content: center;
    }
    
    .sec2-logo-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 880px) {
    .sec2-marketing-section {
        padding: 50px 0 60px;
    }
    
    .sec2-headline {
        font-size: 1.8rem;
    }
    
    .sec2-solutions-grid-row2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .sec2-marketing-section {
        padding: 40px 0 50px;
    }
    
    .sec2-clients-banner {
        padding: 30px 20px;
    }
    
    .sec2-headline {
        font-size: 1.5rem;
    }
    
    .sec2-subtitle {
        font-size: 0.9rem;
    }
    
    .sec2-solutions-grid-row1 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sec2-solution-card {
        text-align: center;
        padding: 24px 20px;
    }
    
    .sec2-card-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sec2-card-link {
        justify-content: center;
    }
    
    .sec2-logos-grid {
        gap: 20px;
    }
    
    .sec2-logo-item {
        min-width: 80px;
    }
    
    .sec2-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .sec2-logo-icon i {
        font-size: 1.4rem;
    }
    
    .sec2-logo-name {
        font-size: 0.65rem;
    }
}

/* ========== SECTION 3: DIGITAL MARKETING PROCESS TIMELINE (prefix: sec3-) ========== */
.sec3-process {
    padding: 60px 0;
    background: #f9fafc;
}

.sec3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.sec3-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec3-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.sec3-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 16px;
}

.sec3-subtitle {
    font-size: 1rem;
    color: #5b6e8c;
    max-width: 650px;
    margin: 0 auto;
}

/* Process Timeline - 6 Columns */
.sec3-process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

/* Dotted connector line */
.sec3-process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #cbd5e6, #cbd5e6 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.sec3-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Step Circle */
.sec3-step-circle {
    width: 70px;
    height: 70px;
    background: white;
    border: 2px solid #1E6DF2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sec3-process-step:hover .sec3-step-circle {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 109, 242, 0.15);
}

.sec3-step-circle i {
    font-size: 1.6rem;
    color: #1E6DF2;
}

/* Step Number */
.sec3-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1E6DF2;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Step Title */
.sec3-step-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Step Description */
.sec3-step-desc {
    font-size: 0.75rem;
    color: #5b6e8c;
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .sec3-process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .sec3-process-timeline::before {
        display: none;
    }
    
    .sec3-step-desc {
        max-width: 100%;
    }
}

@media (max-width: 880px) {
    .sec3-process {
        padding: 50px 0;
    }
    
    .sec3-headline {
        font-size: 1.8rem;
    }
    
    .sec3-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 640px) {
    .sec3-process {
        padding: 40px 0;
    }
    
    .sec3-headline {
        font-size: 1.5rem;
    }
    
    .sec3-subtitle {
        font-size: 0.9rem;
    }
    
    .sec3-process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sec3-step-circle {
        width: 60px;
        height: 60px;
    }
    
    .sec3-step-circle i {
        font-size: 1.4rem;
    }
    
    .sec3-step-title {
        font-size: 0.9rem;
    }
    
    .sec3-step-desc {
        font-size: 0.75rem;
    }
}

/* ========== SECTION 4: VALUE PROPOSITION & STATS (prefix: sec4-) ========== */
.sec4-value-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.sec4-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Three Column Layout */
.sec4-three-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.sec4-left {
    flex: 1.2;
    min-width: 280px;
}

.sec4-center {
    flex: 0.8;
    min-width: 250px;
    text-align: center;
}

.sec4-right {
    flex: 1;
    min-width: 260px;
}

/* ===== Left Column Typography ===== */
.sec4-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.sec4-headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0A2540;
    margin-bottom: 20px;
}

.sec4-description {
    font-size: 0.95rem;
    color: #4a5c72;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Checklist */
.sec4-checklist {
    list-style: none;
    margin-bottom: 32px;
}

.sec4-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #2d3e50;
    font-weight: 500;
}

.sec4-checklist li i {
    color: #4CAF50;
    font-size: 1rem;
    flex-shrink: 0;
}

/* CTA Button */
.sec4-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1E6DF2;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(30, 109, 242, 0.25);
}

.sec4-cta-btn:hover {
    background: #0E5AD6;
    transform: translateY(-2px);
}

.sec4-cta-btn i {
    transition: transform 0.2s;
}

.sec4-cta-btn:hover i {
    transform: translateX(4px);
}

/* ===== Center Column Image ===== */
.sec4-center-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

/* ===== Right Column: Stats ===== */
.sec4-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 12px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.sec4-stat-item:hover {
    transform: translateX(5px);
    background: #f8fafc;
}

.sec4-stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec4-stat-icon i {
    font-size: 1.6rem;
}

.sec4-icon-green { background: #e8f5e9; }
.sec4-icon-green i { color: #4CAF50; }

.sec4-icon-blue { background: #eef2ff; }
.sec4-icon-blue i { color: #1E6DF2; }

.sec4-icon-orange { background: #fff3e0; }
.sec4-icon-orange i { color: #F97316; }

.sec4-icon-cyan { background: #e0f7fa; }
.sec4-icon-cyan i { color: #00ACC1; }

.sec4-stat-info {
    flex: 1;
}

.sec4-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.2;
    margin-bottom: 4px;
}

.sec4-stat-label {
    font-size: 0.8rem;
    color: #5b6e8c;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .sec4-headline {
        font-size: 1.7rem;
    }
}

@media (max-width: 880px) {
    .sec4-value-section {
        padding: 50px 0 60px;
    }
    
    .sec4-three-column {
        flex-direction: column;
        gap: 50px;
    }
    
    .sec4-left {
        text-align: center;
        order: 1;
    }
    
    .sec4-center {
        order: 2;
    }
    
    .sec4-right {
        order: 3;
    }
    
    .sec4-checklist li {
        justify-content: center;
    }
    
    .sec4-cta-btn {
        margin: 0 auto;
    }
    
    .sec4-headline {
        font-size: 1.6rem;
    }
    
    .sec4-stat-item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .sec4-value-section {
        padding: 40px 0 50px;
    }
    
    .sec4-headline {
        font-size: 1.4rem;
    }
    
    .sec4-description {
        font-size: 0.9rem;
    }
    
    .sec4-checklist li {
        font-size: 0.85rem;
    }
    
    .sec4-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .sec4-stat-number {
        font-size: 1.6rem;
    }
    
    .sec4-stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .sec4-stat-icon i {
        font-size: 1.3rem;
    }
}

/* ========== SECTION 5: CASE STUDIES + TESTIMONIALS (prefix: sec5-) ========== */
.sec5-success-section {
    padding: 60px 0 80px;
    background: #f9fafc;
}

.sec5-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Shared Header */
.sec5-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec5-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.sec5-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 16px;
}

.sec5-subtitle {
    font-size: 1rem;
    color: #5b6e8c;
    max-width: 650px;
    margin: 0 auto;
}

/* ===== Section 1: Case Studies Grid ===== */
.sec5-case-studies {
    margin-bottom: 70px;
}

.sec5-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sec5-case-card {
    padding: 28px 24px;
    border-radius: 20px;
    transition: transform 0.2s;
}

.sec5-case-card:hover {
    transform: translateY(-5px);
}

/* Card Backgrounds */
.sec5-card-green { background: #e8f5e9; }
.sec5-card-purple { background: #f3e8ff; }
.sec5-card-orange { background: #fff3e0; }
.sec5-card-blue { background: #eef2ff; }

.sec5-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sec5-card-icon i {
    font-size: 2rem;
}

.sec5-card-green .sec5-card-icon i { color: #4CAF50; }
.sec5-card-purple .sec5-card-icon i { color: #9C27B0; }
.sec5-card-orange .sec5-card-icon i { color: #F97316; }
.sec5-card-blue .sec5-card-icon i { color: #1E6DF2; }

.sec5-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2c3e;
}

.sec5-card-metric {
    margin-bottom: 28px;
}

.sec5-metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.sec5-card-green .sec5-metric-number { color: #4CAF50; }
.sec5-card-purple .sec5-metric-number { color: #0A2540; }
.sec5-card-orange .sec5-metric-number { color: #0A2540; }
.sec5-card-blue .sec5-metric-number { color: #1E6DF2; }

.sec5-metric-text {
    font-size: 0.8rem;
    color: #5b6e8c;
}

.sec5-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E6DF2;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.sec5-case-link i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.sec5-case-link:hover i {
    transform: translateX(4px);
}

/* ===== Section 2: Testimonials Carousel ===== */
.sec5-testimonials {
    margin-top: 20px;
}

.sec5-carousel-wrapper {
    margin: 40px 0 30px;
    overflow: hidden;
}

.sec5-carousel-track-container {
    overflow: hidden;
}

.sec5-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.sec5-testimonial-card {
    min-width: calc(33.33% - 20px);
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.sec5-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sec5-quote-icon {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #1E6DF2;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.7;
}

.sec5-quote-text {
    font-size: 0.9rem;
    color: #2d3e50;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sec5-author-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sec5-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.sec5-avatar-1 { background-image: url('https://randomuser.me/api/portraits/men/42.jpg'); }
.sec5-avatar-2 { background-image: url('https://randomuser.me/api/portraits/women/44.jpg'); }
.sec5-avatar-3 { background-image: url('https://randomuser.me/api/portraits/men/22.jpg'); }

.sec5-author-info {
    flex: 1;
}

.sec5-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 4px;
}

.sec5-author-title {
    font-size: 0.7rem;
    color: #8ba0bc;
}

/* Carousel Dots */
.sec5-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.sec5-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e6;
    cursor: pointer;
    transition: all 0.2s;
}

.sec5-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #1E6DF2;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .sec5-testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .sec5-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 880px) {
    .sec5-success-section {
        padding: 50px 0 60px;
    }
    
    .sec5-headline {
        font-size: 1.8rem;
    }
    
    .sec5-testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .sec5-success-section {
        padding: 40px 0 50px;
    }
    
    .sec5-headline {
        font-size: 1.5rem;
    }
    
    .sec5-subtitle {
        font-size: 0.9rem;
    }
    
    .sec5-case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sec5-case-card {
        text-align: center;
    }
    
    .sec5-card-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .sec5-metric-number {
        font-size: 2rem;
    }
    
    .sec5-testimonial-card {
        padding: 24px 20px;
    }
    
    .sec5-quote-text {
        font-size: 0.85rem;
    }
}

/* ========== SECTION 6: DIGITAL MARKETING CTA BANNER (prefix: sec6-) ========== */
.sec6-cta-banner {
    background: linear-gradient(135deg, #002266, #001133, #0A2540);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle wave pattern overlay */
.sec6-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
    pointer-events: none;
}

/* Digital grid pattern overlay */
.sec6-cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.sec6-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.sec6-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Left Side: Icon & Text */
.sec6-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sec6-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(30, 109, 242, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: transform 0.2s;
}

.sec6-icon-box i {
    font-size: 1.8rem;
    color: #1E6DF2;
}

.sec6-text-stack {
    flex: 1;
}

.sec6-headline {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.sec6-subtitle {
    font-size: 0.9rem;
    color: #b0c4de;
    line-height: 1.5;
}

/* Right Side: CTA Button */
.sec6-right {
    flex-shrink: 0;
}

.sec6-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1E6DF2;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sec6-cta-btn i {
    transition: transform 0.2s;
    font-size: 0.85rem;
}

.sec6-cta-btn:hover {
    background: #f0f4ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sec6-cta-btn:hover i {
    transform: translateX(5px);
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
    .sec6-cta-banner {
        padding: 50px 0;
    }
    
    .sec6-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .sec6-left {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .sec6-headline {
        font-size: 1.4rem;
    }
    
    .sec6-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .sec6-cta-banner {
        padding: 40px 0;
    }
    
    .sec6-headline {
        font-size: 1.2rem;
    }
    
    .sec6-subtitle {
        font-size: 0.8rem;
    }
    
    .sec6-icon-box {
        width: 55px;
        height: 55px;
    }
    
    .sec6-icon-box i {
        font-size: 1.5rem;
    }
    
    .sec6-cta-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}