/* ============================================
   INDIRA CONSULTANCY - SERVICE PAGE STYLES
   Exact match to Figma design specifications
   Colors: Navy #1E2A3A, Gold #F8CA3B, White #FFFFFF
   Fonts: Kaisei Decol (headings), Poppins (body)
   ============================================ */

/* ============================================
   SERVICE HERO SECTION - Slider with Frosted Glass
   ============================================ */
.service-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slider Background Container */
.service-hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-hero-bg-slide.active {
    opacity: 1;
}

.service-hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 42, 58, 0.35);
}

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

/* Badge outside the card */
.service-hero-badge {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0;
    margin-bottom: 20px;
}

/* Slider Content Container */
.service-hero-slider {
    position: relative;
    min-height: 320px;
}

.service-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.service-hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Frosted Glass Card */
.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 50px 60px 45px;
}

.service-hero-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 56px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.service-hero-subtitle {
    font-family: 'Poly', serif;
    font-size: 22px;
    font-weight: 400;
    color: #F8CA3B;
    font-style: italic;
    margin-bottom: 24px;
}

.service-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* Navigation Dots */
.service-hero-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.service-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-hero-dot {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.service-hero-dot.active {
    background-color: #F8CA3B;
    width: 40px;
}


/* ============================================
   CTA SECTION - Figma Design
   ============================================ */
   .about-cta-section {
    padding: 100px 0;
    background-color: #FAF8F5;
    text-align: center;
}

.about-cta-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6B7280;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F8CA3B;
    color: #1E2A3A;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid #F8CA3B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn-primary:hover {
    background-color: #fad564;
    border-color: #fad564;
    color: #1E2A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.about-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #4A5568;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn-outline:hover {
    border-color: #1E2A3A;
    color: #1E2A3A;
}

/* ============================================
   WHAT WE DO SECTION (Strategic Value) - Dark Theme
   ============================================ */
.what-we-do-section {
    padding: 100px 0;
    background-color: #1E2A3A;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0;
    margin-bottom: 24px;
}

.what-we-do-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.what-we-do-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Cards Grid - 3 columns, centered last row */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.services-grid .service-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.service-card {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(15, 20, 28, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8CA3B;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background-color: rgba(15, 20, 28, 1);
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card-title::after {
    content: '>';
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
}

.service-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.service-card-arrow {
    display: none;
}

@media (max-width: 991px) {
    .services-grid .service-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 576px) {
    .services-grid .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   INDUSTRIES WE SERVE SECTION (Sector Expertise)
   ============================================ */
.industries-section {
    padding: 100px 0 80px;
    background-color: #0F141C;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.industries-header-left {
    flex: 1;
}

.industries-badge {
    display: inline-block;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.industries-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0;
}

.industries-header-right {
    flex-shrink: 0;
    padding-left: 40px;
    max-width: 260px;
    text-align: right;
}

.industries-tagline {
    font-family: 'Poly', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}

/* 4x2 Card Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.industry-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}

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

.industry-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.industry-card.visible:hover {
    transform: translateY(-3px);
}

/* Core Strength variant */
.industry-card--core {
    border-color: #F8CA3B;
    background-color: rgba(248, 202, 59, 0.06);
}

.industry-card--core:hover {
    background-color: rgba(248, 202, 59, 0.1);
    border-color: #F8CA3B;
    box-shadow: 0 8px 30px rgba(248, 202, 59, 0.12);
}

.industry-core-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #F8CA3B;
    color: #0F141C;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1;
}

.industry-card-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.industry-card--core .industry-card-icon {
    color: #F8CA3B;
}

.industry-card:hover .industry-card-icon {
    color: rgba(255, 255, 255, 0.85);
}

.industry-card--core:hover .industry-card-icon {
    color: #F8CA3B;
}

.industry-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.35;
}

/* Focus Bar */
.industries-focus {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-left: 3px solid #F8CA3B;
    padding-left: 24px;
}

.industries-focus-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.industries-focus-text {
    font-family: 'Poly', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* Industries Responsive */
@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .industries-header-right {
        text-align: left;
        padding-left: 0;
    }

    .industries-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 60px 0;
    }

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

    .industries-title {
        font-size: 32px;
    }

    .industry-card {
        padding: 24px 16px 22px;
    }

    .industry-card-icon {
        font-size: 26px;
    }

    .industry-card-title {
        font-size: 13px;
    }

    .industry-core-badge {
        font-size: 8px;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }

    .industries-focus {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   VALUE PROPOSITION SECTION (Service Delivery)
   ============================================ */
.value-proposition-section {
    padding: 100px 0;
    background-color: #FDFBF7;
}

.value-proposition-header {
    text-align: center;
    margin-bottom: 60px;
}

.value-proposition-badge {
    display: inline-block;
    background-color: transparent;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0;
    margin-bottom: 24px;
}

.value-proposition-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E2A3A;
    margin-bottom: 16px;
}

.value-proposition-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1E2A3A;
}

/* Value Items Grid - 2x2 Layout */
.value-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item-icon {
    width: 56px;
    height: 56px;
    background-color: #1E2A3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8CA3B;
    font-size: 24px;
    flex-shrink: 0;
}

.value-item-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1E2A3A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-item-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(30, 42, 58, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .value-items-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   OUTCOMES SECTION (Card Grid) - Dark Premium
   ============================================ */
.outcomes-section {
    padding: 100px 0;
    background-color: #0B1120;
    position: relative;
    overflow: hidden;
}

.outcomes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(248, 202, 59, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Header */
.outcomes-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.outcomes-header-left {
    flex: 1;
}

.outcomes-badge {
    display: inline-block;
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.outcomes-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
}

.outcomes-header-right {
    text-align: right;
    flex-shrink: 0;
    padding-left: 40px;
}

.outcomes-right-subtitle {
    display: inline-block;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    max-width: 180px;
    line-height: 1.5;
    border: 1px solid rgba(248, 202, 59, 0.25);
    border-radius: 6px;
    padding: 12px 16px;
}

/* Card Grid */
.outcomes-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Outcome Card */
.outcome-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Scroll-reveal initial state */
    opacity: 0;
    transform: translateY(30px);
}

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

/* Subtle left accent line */
.outcome-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 3px;
    height: 40px;
    background: #F8CA3B;
    border-radius: 0 3px 3px 0;
    transition: height 0.4s ease;
}

.outcome-card:hover {
    border-color: rgba(248, 202, 59, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(248, 202, 59, 0.04);
}

.outcome-card:hover::before {
    height: calc(100% - 40px);
}

/* Card Header */
.outcome-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.outcome-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(248, 202, 59, 0.1);
    border: 1px solid rgba(248, 202, 59, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.outcome-card-icon i {
    font-size: 18px;
    color: #F8CA3B;
}

.outcome-card:hover .outcome-card-icon {
    background: rgba(248, 202, 59, 0.18);
    border-color: rgba(248, 202, 59, 0.4);
}

.outcome-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

/* Card Bullets */
.outcome-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
}

.outcome-card-bullets li {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 18px;
    position: relative;
}

.outcome-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(248, 202, 59, 0.5);
}

/* Card Tag */
.outcome-card-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(248, 202, 59, 0.15) 0%, rgba(248, 202, 59, 0.08) 100%);
    color: #F8CA3B;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(248, 202, 59, 0.2);
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-card-tag {
    background: linear-gradient(135deg, rgba(248, 202, 59, 0.25) 0%, rgba(248, 202, 59, 0.12) 100%);
    border-color: rgba(248, 202, 59, 0.4);
}

/* Stat Card */
.outcome-stat-card {
    background: linear-gradient(145deg, rgba(248, 202, 59, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(248, 202, 59, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Scroll-reveal initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outcome-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.outcome-stat-value {
    font-family: 'Kaisei Decol', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
}

.outcome-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F8CA3B;
    margin-bottom: 16px;
}

.outcome-stat-quote {
    font-family: 'Poly', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

/* Responsive - Outcomes Grid */
@media (max-width: 991px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .outcomes-header-right {
        text-align: left;
        padding-left: 0;
    }

    .outcomes-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .outcomes-section {
        padding: 60px 0;
    }

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

    .outcomes-title {
        font-size: 32px;
    }

    .outcome-stat-value {
        font-size: 48px;
    }
}

/* ============================================
   SERVICE CTA SECTION
   ============================================ */
.service-cta-section {
    padding: 100px 0;
    background-color: #FAF9F6;
    text-align: center;
}

.service-cta-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F8CA3B;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-btn-primary:hover {
    background-color: #e6b832;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

.service-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #1E2A3A;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    border: 2px solid #1E2A3A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-btn-outline:hover {
    background-color: #1E2A3A;
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .service-hero {
        min-height: 75vh;
    }

    .service-hero-slider {
        min-height: 280px;
    }

    .service-hero-title {
        font-size: 44px;
    }

    .service-hero-subtitle {
        font-size: 20px;
    }

    .service-hero-content {
        padding: 40px 45px 38px;
        max-width: 600px;
    }

    .what-we-do-title,
    .industries-title,
    .value-proposition-title,
    .outcomes-title,
    .service-cta-title {
        font-size: 40px;
    }

    .value-item-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 70vh;
    }

    .service-hero-slider {
        min-height: 260px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-hero-desc {
        font-size: 14px;
    }

    .service-hero-content {
        padding: 32px 30px 28px;
        max-width: 90%;
        border-radius: 12px;
    }

    .service-hero-badge {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .service-hero-nav {
        margin-top: 35px;
    }

    .service-hero-dot {
        width: 24px;
    }

    .service-hero-dot.active {
        width: 32px;
    }

    .what-we-do-section,
    .industries-section,
    .value-proposition-section,
    .outcomes-section,
    .service-cta-section {
        padding: 60px 0;
    }



}

@media (max-width: 576px) {
    .service-hero {
        min-height: 65vh;
    }

    .service-hero-slider {
        min-height: 240px;
    }

    .service-hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .service-hero-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .service-hero-content {
        padding: 28px 24px 24px;
    }

    .service-hero-badge {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .service-hero-nav {
        margin-top: 28px;
    }

    .service-hero-dot {
        width: 20px;
        height: 3px;
    }

    .service-hero-dot.active {
        width: 28px;
    }

    .what-we-do-title,
    .industries-title,
    .value-proposition-title,
    .outcomes-title,
    .service-cta-title {
        font-size: 32px;
    }

    .value-item {
        padding: 28px 24px;
    }

    .value-item-content h4 {
        font-size: 20px;
    }

    .value-item-content p {
        font-size: 15px;
    }


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

    .service-cta-btn-primary,
    .service-cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}
