/* ============================================
   Okdasolutions Custom Styles
   Based on Bootstrap Agency Theme
   ============================================ */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-deep-blue: #003366;
    --brand-navy: #00366f;
    --primary-bright-blue: #0065FF;
    --highlight-yellow: #FFC727;
    --bg-light: #F3F4F6;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-deep-blue);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Section Spacing ===== */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== Premium Hero Section ===== */
.hero-section-premium {
    background: var(--brand-navy);
    color: var(--white);
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-section-premium::before {
    content: none;
}

/* Hero Section with Background Image */
.hero-section-with-bg {
    background: var(--brand-navy);
    background-image: none;
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0 0;
    position: relative;
    overflow: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

.hero-section-with-bg .container {
    position: relative;
    z-index: 2;
}

.hero-section-with-bg::before {
    display: none;
}

.hero-image-animated {
    position: relative;
}
.hero-image-animated img {
    animation: slowZoom 14s ease-in-out infinite alternate;
    transform-origin: center;
}
.hero-image-animated::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(0,198,255,0.14), transparent 42%),
                radial-gradient(circle at 30% 75%, rgba(255,199,39,0.12), transparent 45%);
    animation: floatGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
@keyframes floatGlow {
    from { transform: translateY(0); opacity: 0.9; }
    to { transform: translateY(-6px); opacity: 0.75; }
}

.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    min-height: 520px;
}

.hero-slider {
    position: relative;
}

.hero-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero-card-grid {
    display: grid;
       flex-direction: column;
    gap: 1rem;
}

.hero-card-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.hero-card-grid.three-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
}

.hero-card-grid.three-cards .hero-card {
    min-height: 180px;
}

.hero-card-wide {
    grid-column: 1 / -1;
    min-height: auto;
    padding-bottom: 0.5rem;
}

.hero-card-wide p:last-child {
    margin-bottom: 0;
}

.hero-card-square {
    min-height: 180px;
}

.hero-card {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    color: var(--text-dark) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
    border-color: rgba(0, 0, 0, 0.08);
}

.hero-card h5,
.hero-card h6 {
    color: var(--primary-deep-blue) !important;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.hero-card p {
    color: var(--text-light) !important;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.hero-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 101, 255, 0.12) !important;
    color: var(--primary-bright-blue) !important;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.hero-card-icon i {
    color: var(--primary-bright-blue) !important;
}

.hero-card-tall {
    min-height: 320px;
}

.hero-card-short {
    min-height: 180px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 101, 255, 0.08);
    color: var(--primary-deep-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-carousel-control {
    width: 44px;
}

.hero-carousel-control .carousel-control-prev-icon,
.hero-carousel-control .carousel-control-next-icon {
    filter: invert(1);
}

.hero-section-with-bg .hero-carousel-indicators {
    position: absolute;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    margin: 0;
    gap: 0.75rem;
    flex-direction: row;
    justify-content: center;
    display: flex !important;
    z-index: 10;
    pointer-events: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section-with-bg .hero-carousel-indicators {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 30px;
        transform: translateX(-50%);
        flex-direction: row;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    /* Add padding to hero slider for radio buttons at bottom in MD */
    .hero-section-with-bg .hero-slider {
        padding-bottom: 50px;
    }
}

@media (min-width: 992px) {
    .hero-section-with-bg .hero-carousel-indicators {
        top: 50%;
        right: -48px;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
    }
    
    /* ===== LG ONLY (≥992px) - CARDS SIDE BY SIDE ===== */
    /* LG: Product Sprints and Cloud & DevOps cards side by side */
    
    /* Target the flex container */
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"],
    .hero-section-with-bg .col-lg-6 > div[style*="flex-direction"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }
    
    /* Force ALL direct child divs to equal width side by side */
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div:first-child,
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div:last-child,
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div {
        flex: 1 !important;
        flex-basis: auto !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
    }
}

.hero-carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
    opacity: 1;
    transition: all 0.2s ease;
}

.hero-carousel-indicators .active {
    background-color: var(--highlight-yellow);
    border-color: var(--highlight-yellow);
}

@media (max-width: 991px) {
    .hero-slider .carousel-item {
        min-height: auto;
    }
    
    .hero-card-grid.two-cards,
    .hero-card-grid.three-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-card-tall {
        min-height: 260px;
    }

    .hero-card-short {
        min-height: 180px;
    }
    
    /* Fix button sizes for tablet view - make them like lg */
    .btn-primary-premium,
    .btn-outline-premium {
        padding: 0.875rem 2.25rem;
        font-size: 1rem;
    }
    
    /* Hero section alignment for tablet */
    .hero-headline {
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-subtext {
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-primary-premium,
    .btn-outline-premium {
        display: inline-block;
        width: auto;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
    
    /* MD (769-991px): Cards SIDE BY SIDE - same as LG */
    .col-lg-6 > div[style*="display:flex"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }
    
    .col-lg-6 > div[style*="display:flex"] > div {
        flex: 1 !important;
        flex-basis: auto !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
    }
    
    /* Hero section row alignment */
    .hero-section-with-bg .row {
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-section-with-bg .col-lg-6 {
        margin-bottom: 2rem;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section-with-bg {
        overflow-x: hidden;
    }
    
    .hero-section-with-bg .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scroll on tablet */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}

@media (max-width: 576px) {
    .hero-card-grid.two-cards,
    .hero-card-grid.three-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-card-wide {
        grid-column: auto;
    }
    
    /* Fix button sizes for small mobile - make them like lg */
    .btn-primary-premium,
    .btn-outline-premium {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Ensure hero cards stack on small mobile - Product Sprints and Cloud & DevOps one by one */
    .col-lg-6 > div[style*="display:flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    /* Override inline style for flex-direction in SM - more aggressive */
    .col-lg-6 > div[style*="flex-direction:row"],
    .col-lg-6 > div[style*="display:flex"][style*="flex-direction:row"] {
        flex-direction: column !important;
    }
    
    /* Force child divs to stack by making them full width */
    .col-lg-6 > div[style*="display:flex"] > div {
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
    }
    
    /* Additional override for inline flex styles on child divs */
    .col-lg-6 > div[style*="display:flex"] > div[style*="flex:1"] {
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
    }
    
    /* Happy clients section - show one card at a time on sm */
    .stats-counter-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Add gap between cards and radio buttons in SM */
    .hero-section-with-bg .hero-slider {
        padding-bottom: 70px;
    }
    
    .hero-section-with-bg .hero-carousel-indicators {
        bottom: 40px;
    }
    
    /* Prevent horizontal scroll on small mobile */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-section-with-bg,
    .hero-section-premium {
        overflow-x: hidden;
    }
    
    .hero-section-with-bg .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-section-with-bg .hero-headline {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.hero-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-section-with-bg .hero-subtext {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 1.5rem;
}

.hero-trust-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.hero-section-with-bg .hero-trust-text {
    margin-top: 2rem;
}

.hero-illustration {
    position: relative;
}

.hero-image-float {
    animation: floatAnimation 6s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 3rem;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnimation 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-graphic-elements {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulseAnimation 3s ease-in-out infinite;
}

.hero-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 15%;
    animation-delay: 1s;
}

.hero-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.hero-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-icon-wrapper i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn-primary-premium {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue);
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 199, 39, 0.3);
}

.btn-primary-premium:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 199, 39, 0.4);
    color: var(--primary-deep-blue);
}

.btn-outline-premium {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-outline-premium:hover {
    background: var(--white);
    color: var(--primary-deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-dark-premium {
    background: transparent;
    color: var(--primary-deep-blue);
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-deep-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.btn-outline-dark-premium:hover {
    background: var(--primary-deep-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

@media (max-width: 768px) {
    .hero-section-premium {
        padding: 80px 0 60px;
        overflow-x: hidden;
    }
    
    .hero-section-with-bg {
        background-attachment: scroll;
        min-height: 70vh;
        padding: 100px 0 80px;
        overflow-x: hidden;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-section-with-bg .hero-headline {
        font-size: 1.75rem;
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-subtext {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-primary-premium,
    .btn-outline-premium {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        max-width: 280px;
        margin-right: 0;
        margin-bottom: 0;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* ===== SM ONLY (≤768px) - CARDS ONE BY ONE ===== */
    /* SM: Product Sprints and Cloud & DevOps cards stack vertically */
    
    /* Target the flex container */
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"],
    .hero-section-with-bg .col-lg-6 > div[style*="flex-direction"] {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 1.5rem !important;
    }
    
    /* Force ALL direct child divs to full width */
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div:first-child,
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div:last-child,
    .hero-section-with-bg .col-lg-6 > div[style*="display:flex"] > div {
        flex: 0 0 100% !important;
        flex-basis: 100% !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    /* Ensure proper text alignment in hero cards */
    .col-lg-6 > div[style*="display:flex"] > div h5,
    .col-lg-6 > div[style*="display:flex"] > div p {
        text-align: left;
        word-wrap: break-word;
    }
    
    /* Hero section row alignment */
    .hero-section-with-bg .row {
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-section-with-bg .col-lg-6 {
        margin-bottom: 2rem;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section-with-bg .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    /* Add gap between cards and radio buttons in SM */
    .hero-section-with-bg .hero-slider {
        padding-bottom: 60px;
    }
    
    .hero-section-with-bg .hero-carousel-indicators {
        bottom: 30px;
    }
}


@media (max-width: 1024px) {
    .hero-section-with-bg {
        background-attachment: scroll;
    }
}

/* ===== Services Snapshot Section ===== */
.services-snapshot-section {
    padding: 70px 0;
    background: rgba(0, 101, 255, 0.05);
}

/* Ensure home hero and services cards stay visible */
.hero-card h5,
.hero-card h6 {
    color: var(--primary-deep-blue) !important;
    font-weight: 600;
}
.hero-card p {
    color: var(--text-light) !important;
    line-height: 1.6;
}

.services-snapshot-section .service-tile {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}
.services-snapshot-section .service-tile h5 {
    color: var(--primary-deep-blue);
}
.services-snapshot-section .service-tile p {
    color: var(--text-light);
}
.services-snapshot-section .service-icon i {
    color: var(--brand-navy);
}
/* .service-tile {
    position: relative;
    background: #ffffff;
    padding: 30px 25px 30px 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all .3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
.service-tile:hover h5 {
    color: var(--highlight-yellow);
}
.service-tile:hover p {
    color: #ffffff;
}


.service-tile:hover p {
    color: #ffffff; /* icon and paragraph white */
}

.service-tile {
    position: relative;
    background: #ffffff; /* default white */
    padding: 30px 25px 30px 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* .service-tile {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
} */

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-bright-blue), var(--highlight-yellow));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile:hover {
    background-color: var(--primary-deep-blue) !important;
    /* transform: translateY(-5px); */
}
/* .service-tile:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-bright-blue);
} */

/* .service-tile:hover::before {
    transform: scaleX(1);
} */
/* .service-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1a2a5a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.3s ease;
} */
.service-icon i {
    font-size: 22px;
    color: var(--primary-deep-blue);
    transition: .3s ease;
}
.service-icon {
    position: absolute;
    left: -25px;              /* moved closer so it doesn't overlap */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;              /* reduced from 70px */
    height: 50px;             /* reduced from 70px */
    background: var(--highlight-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all .3s ease;
}

/* .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
} */

.service-tile:hover .service-icon {
    background: #ffffff; /* invert colors */
}
/* .service-tile:hover .service-icon {
    background: linear-gradient(135deg, var(--highlight-yellow), var(--primary-bright-blue));
    transform: rotate(5deg) scale(1.1);
} */
.service-tile h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-tile:hover .service-icon i {
    color: var(--primary-deep-blue);
}
/* .service-tile h5 {
    margin-bottom: 1rem;
    color: var(--primary-deep-blue);
    font-weight: 600;
} */
.service-tile p {
    color: var(--text-light);
    margin: 0;
    transition: .3s ease;
    line-height: 1.7;
}

.service-tile > .text-center {
    position: relative;
    left: -71.5px;
    width: calc(100% + 97px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-tile .case-study-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    color: var(--primary-deep-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: auto;
    max-width: 100%;
}

.service-tile:hover .case-study-badge {
    background: var(--white);
    color: var(--primary-deep-blue);
    transform: scale(1.05);
}

.case-study-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.case-study-link:hover {
    text-decoration: none;
    color: inherit;
}

.case-study-link .service-tile {
    justify-content: flex-start;
    cursor: pointer;
}

.case-study-view-more {
    color: var(--primary-deep-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
}

.case-study-view-more i {
    transition: transform 0.3s ease;
}

.service-tile:hover .case-study-view-more {
    color: var(--highlight-yellow);
}

.service-tile:hover .case-study-view-more i {
    transform: translateX(5px);
    color: var(--highlight-yellow);
}

/* .service-tile p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
} */

/* ===== Industries Section ===== */
.industries-section {
    background: var(--bg-light);
}

.industry-tile {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    cursor: pointer;
}

.industry-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 101, 255, 0.2);
    border-color: var(--primary-bright-blue);
    background: linear-gradient(135deg, var(--white), rgba(0, 101, 255, 0.05));
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-bright-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-tile:hover .industry-icon {
    color: var(--primary-deep-blue);
    transform: scale(1.1);
}

.industry-tile h6 {
    margin-bottom: 0;
    color: var(--primary-deep-blue);
    font-weight: 600;
}

/* ===== New Industry Cards Design ===== */
.industry-card-new {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    justify-content: flex-start;
}

.industries-carousel-track {
    align-items: stretch;
}

.industries-carousel-track .industry-card-new {
    height: 400px;
}

.industry-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.industry-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.industry-icon-box i {
    font-size: 2rem;
    color: var(--primary-deep-blue);
    transition: all 0.3s ease;
}

.industry-card-new:hover .industry-icon-box {
    background: var(--primary-deep-blue);
}

.industry-card-new:hover .industry-icon-box i {
    color: var(--white);
}

.industry-card-new h5 {
    color: var(--primary-deep-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.industry-card-new p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.4em;
    max-height: 3.4em;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-shrink: 0;
}

.industry-features li {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.industry-features li:last-child {
    margin-bottom: 0;
}

.industry-features li i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.industry-link {
    color: var(--primary-deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.industry-link:hover {
    color: var(--primary-deep-blue);
    gap: 0.75rem;
}

.industry-link i {
    transition: transform 0.3s ease;
}

.industry-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for industry cards */
@media (max-width: 991px) {
    .industry-card-new {
        padding: 1.75rem;
        height: 380px;
    }
    
    .industries-carousel-track .industry-card-new {
        height: 380px;
    }
    
    .industry-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon-box i {
        font-size: 1.75rem;
    }
    
    .industry-card-new h5 {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .industry-card-new {
        padding: 1.5rem;
        height: 360px;
    }
    
    .industries-carousel-track .industry-card-new {
        height: 360px;
    }
    
    .industry-icon-box {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }
    
    .industry-icon-box i {
        font-size: 1.5rem;
    }
    
    .industry-card-new h5 {
        font-size: 1.25rem;
    }
    
    .industry-card-new p {
        font-size: 0.9rem;
    }
    
    .industry-features li {
        font-size: 0.9rem;
    }
}

/* ===== Industries Carousel Styles ===== */
.industries-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.industries-carousel-container {
    overflow: hidden;
    width: 100%;
}

.industries-carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    gap: 1.5rem;
    will-change: transform;
}

.industries-carousel-track .industry-card-new {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
    margin: 0;
}

.industries-carousel-control {
    width: 50px;
    height: 50px;
    background: var(--primary-deep-blue);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-carousel-control:hover {
    background: var(--primary-deep-blue);
    opacity: 0.9;
    transform: translateY(-50%) scale(1.1);
}

.industries-carousel-prev {
    left: 0;
    position: absolute;
}

.industries-carousel-next {
    right: 0;
    position: absolute;
}

.industries-carousel-control .carousel-control-prev-icon,
.industries-carousel-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: brightness(0) invert(1);
}

/* Responsive adjustments for carousel */
@media (max-width: 991px) {
    .industries-carousel-wrapper {
        padding: 0 50px;
    }
    
    .industries-carousel-track .industry-card-new {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .industries-carousel-control {
        width: 45px;
        height: 45px;
    }
    
    .industries-carousel-control .carousel-control-prev-icon,
    .industries-carousel-control .carousel-control-next-icon {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
    }
}

@media (max-width: 767px) {
    .industries-carousel-wrapper {
        padding: 0 40px;
    }
    
    .industries-carousel-track .industry-card-new {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .industries-carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .industries-carousel-control .carousel-control-prev-icon,
    .industries-carousel-control .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
}

/* ===== Case Studies Section ===== */
.case-studies-section {
    background: var(--bg-light);
    padding: 60px 0 0;
}

.case-study-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.25);
    border-color: var(--primary-bright-blue);
}

.case-study-card:hover::before {
    transform: scaleX(1);
}

.case-study-image {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-study-image-placeholder i {
    font-size: 3.5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.case-study-placeholder-1 {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
}

.case-study-placeholder-2 {
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
}

.case-study-placeholder-3 {
    background: linear-gradient(135deg, var(--highlight-yellow), var(--primary-deep-blue));
}

.case-study-placeholder-4 {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--highlight-yellow));
}

.case-study-placeholder-5 {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
}

.case-study-placeholder-6 {
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--highlight-yellow));
}

.case-study-placeholder-7 {
    background: linear-gradient(135deg, var(--highlight-yellow), var(--primary-bright-blue));
}

.case-study-placeholder-8 {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--highlight-yellow));
}

.case-study-placeholder-9 {
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
}

.case-study-card:hover .case-study-image img,
.case-study-card:hover .case-study-image-placeholder {
    transform: scale(1.08);
}

.case-study-card:hover .case-study-image-placeholder {
    background: linear-gradient(135deg, var(--highlight-yellow), var(--primary-deep-blue));
}

.case-study-card:hover .case-study-image-placeholder i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-deep-blue);
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 101, 255, 0.9));
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.case-study-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover .case-study-content {
    background: var(--primary-deep-blue);
}

.case-study-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    color: var(--primary-deep-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-badge {
    background: var(--white);
    color: var(--primary-deep-blue);
    transform: scale(1.05);
}

.case-study-content h5 {
    margin-bottom: 0.75rem;
    color: var(--primary-deep-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.case-study-card:hover .case-study-content h5 {
    color: var(--highlight-yellow);
}

.case-study-content p {
    margin-bottom: 0;
    color: var(--text-light);
    transition: color 0.3s ease;
    line-height: 1.7;
}

.case-study-card:hover .case-study-content p {
    color: var(--white);
}

.case-study-content .btn-outline-premium {
    margin-top: auto;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-content .btn-outline-premium {
    background: var(--highlight-yellow);
    border-color: var(--highlight-yellow);
    color: var(--primary-deep-blue);
}

.case-study-card:hover .case-study-content .btn-outline-premium:hover {
    background: var(--white);
    color: var(--primary-deep-blue);
    transform: translateX(5px);
}

/* ===== New Portfolio Cards ===== */
.portfolio-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 51, 102, 0.15);
    border-color: rgba(0, 51, 102, 0.1);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, transform 0.4s ease;
    filter: blur(0);
}

.portfolio-card:hover .portfolio-image {
    filter: blur(5px);
    transform: scale(1.05);
}

.portfolio-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 3;
}

.portfolio-card:hover .portfolio-hover-content {
    opacity: 1;
    visibility: visible;
}

.portfolio-hover-content p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.portfolio-hover-content .portfolio-btn {
    color: var(--white);
    background: var(--highlight-yellow);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0;
}

.portfolio-hover-content .portfolio-btn:hover {
    background: var(--white);
    color: var(--primary-deep-blue);
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-deep-blue);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: filter 0.4s ease;
    filter: blur(0);
}

.portfolio-card:hover .portfolio-tag {
    filter: blur(5px);
}

.portfolio-content {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-content h5 {
    color: var(--primary-deep-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-content h5 {
    color: var(--highlight-yellow);
}

.portfolio-btn i {
    transition: transform 0.3s ease;
}

.portfolio-hover-content .portfolio-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for portfolio cards */
@media (max-width: 991px) {
    .case-studies-section {
        padding: 40px 0 0;
    }
    
    .portfolio-image-wrapper {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .portfolio-content h5 {
        font-size: 1.15rem;
    }
    
    .portfolio-hover-content {
        padding: 1.5rem;
    }
    
    .portfolio-hover-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767px) {
    .case-studies-section {
        padding: 30px 0 0;
    }
    
    .portfolio-image-wrapper {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .portfolio-content h5 {
        font-size: 1.1rem;
    }
    
    .portfolio-hover-content {
        padding: 1.25rem;
    }
    
    .portfolio-hover-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-hover-content .portfolio-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== Engagement Models Section ===== */
.engagement-models-section {
    background: var(--bg-light);
    padding: 50px 0 80px;
}

.engagement-models-section .text-center {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.engagement-models-section .text-center.mb-5 {
    margin-bottom: 1.5rem !important;
}

.engagement-models-section .section-title-premium {
    color: var(--primary-deep-blue);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--primary-deep-blue);
    background-clip: unset;
}

.engagement-process-steps {
    position: relative;
    padding-left: 3rem;
}

.engagement-process-steps::before {
    display: none;
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(-3rem + 30px);
    top: 60px;
    width: 2px;
    background: var(--primary-deep-blue);
    z-index: 1;
    transform: translateX(-50%);
    bottom: -2rem;
    display: block;
}

.process-step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 60px;
    height: 60px;
    background: #c8d5e2;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.15);
    z-index: 3;
    flex-shrink: 0;
    transform: translateY(0);
}

.process-step-content {
    flex: 1;
    padding-top: 0;
    align-self: flex-start;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step-content h4 {
    color: var(--primary-deep-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
    line-height: 1.3;
    padding-top: 0;
   
    align-items: center;
   
}

.process-step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.process-step:hover .process-step-number {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Responsive Styles for Engagement Process */
@media (max-width: 991px) {
    .engagement-process-steps {
        padding-left: 2.5rem;
        margin-top: 0;
    }
    
    .process-step-number {
        left: -2.5rem;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        transform: translateY(0);
        background: #c8d5e2;
        border: none;
        color: var(--primary-deep-blue);
    }
    
    .process-step:not(:last-child)::after {
        left: calc(-2.5rem + 25px);
        top: 50px;
        bottom: -2rem;
        transform: translateX(-50%);
    }
    
    .process-step {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-step-content h4 {
        font-size: 1.35rem;
        line-height: 1.3;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .engagement-models-section {
        padding: 40px 0 60px;
    }
    
    .engagement-process-steps {
        padding-left: 2rem;
    }
    
    .process-step-number {
        left: -2rem;
        top: 0;
        width: 45px;
        height: 45px;
        font-size: 1rem;
        transform: translateY(0);
        background: #c8d5e2;
        border: none;
        color: var(--primary-deep-blue);
    }
    
    .process-step:not(:last-child)::after {
        left: calc(-2rem + 22.5px);
        top: 45px;
        bottom: -2rem;
        transform: translateX(-50%);
    }
    
    .process-step {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .process-step-content h4 {
        font-size: 1.25rem;
        line-height: 1.3;
        height: 45px;
    }
    
    .process-step-content p {
        font-size: 0.95rem;
    }
}

/* Legacy engagement-card styles for backward compatibility */
.engagement-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 101, 255, 0.15);
    border-color: var(--primary-bright-blue);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.engagement-card:hover .engagement-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--highlight-yellow), var(--primary-bright-blue));
}

.engagement-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-deep-blue);
    font-weight: 600;
}

.engagement-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== About Snapshot Section ===== */
.about-snapshot-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-aligned {
    padding-top: calc(2.5rem * 1.2 + 1.5rem);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-deep-blue);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 0 0 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    min-width: 180px;
    text-align: center;
}

.experience-badge .badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.experience-badge .counter-number {
    display: inline-block;
    transition: transform 0.2s ease;
}

.experience-badge .counter-number.counted {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.about-content-heading {
    color: var(--primary-deep-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(0, 51, 102, 0.05);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-deep-blue);
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    background: var(--primary-deep-blue);
}

.about-feature-item:hover .about-feature-icon i {
    color: var(--white);
}

.about-feature-content h5 {
    color: var(--primary-deep-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.shadow-premium {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-snapshot-section {
        padding: 60px 0;
    }
    
    .about-content-heading {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .about-image-aligned {
        padding-top: calc(2rem * 1.2 + 1.5rem);
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .about-snapshot-section {
        padding: 40px 0;
    }
    
    .about-content-heading {
        font-size: 1.75rem;
    }
    
    .about-image-aligned {
        padding-top: calc(1.75rem * 1.2 + 1.5rem);
        margin-top: 0;
    }
    
    .about-content-text {
        font-size: 1rem;
    }
    
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }
    
    .experience-badge .badge-text {
        font-size: 0.85rem;
    }
    
    .about-feature-item {
        padding: 0.875rem;
    }
    
    .about-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-feature-icon i {
        font-size: 1.25rem;
    }
    
    .about-feature-content h5 {
        font-size: 1rem;
    }
}

/* ===== Technology Expertise Section ===== */
.tech-expertise-section {
    background: var(--primary-deep-blue);
    padding: 1px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
    box-shadow: none !important;
    border: none;
    outline: none;
}

.tech-expertise-section::before,
.tech-expertise-section::after {
    display: none;
    content: none;
}

.tech-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.tech-section-heading1 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
}

.tech-section-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.tech-icon-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 101, 255, 0.1);
    cursor: pointer;
}

.tech-icon-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 101, 255, 0.25);
    border-color: var(--primary-bright-blue);
    background: linear-gradient(135deg, var(--white), rgba(0, 101, 255, 0.05));
}

.tech-icon {
    font-weight: 600;
    color: var(--primary-deep-blue);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-icon-card:hover .tech-icon {
    color: var(--primary-bright-blue);
    text-shadow: 0 0 10px rgba(0, 101, 255, 0.3);
}

/* ===== Tech Sliders Section ===== */
.tech-sliders-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.tech-expertise-section .tech-sliders-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tech-slider-wrapper {
    width: 180px;
    height: 700px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.tech-slider-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    align-items: center;
    width: 100%;
    will-change: transform;
}

.tech-slider-up .tech-slider-track {
    animation-name: slideUp;
    animation-duration: 20s;
}

.tech-slider-down .tech-slider-track {
    animation-name: slideDown;
    animation-duration: 20s;
}

.tech-item {
    width: 142px;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-deep-blue);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.tech-circle {
    background: var(--highlight-yellow);
    border-radius: 50%;
}

.tech-rhombus {
    background: var(--highlight-yellow);
    border-radius: 0;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: none;
}

.tech-rhombus span {
    transform: none;
}

.tech-circle:hover {
    transform: scale(1.1);
}

.tech-rhombus:hover {
    transform: scale(1.1);
}

.tech-item span {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Animation for upward movement */
@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

/* Animation for downward movement */
@keyframes slideDown {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .tech-expertise-section {
        padding: 1px 0;
    }
    
    .tech-section-heading {
        font-size: 2rem;
    }
    .tech-section-heading1 {
        font-size: 1rem;
    }
    
    .tech-section-text {
        font-size: 1rem;
    }
    
    .tech-sliders-container {
        gap: 4rem;
        min-height: 500px;
        margin-top: 2rem;
    }
    
    .tech-slider-wrapper {
        width: 150px;
        height: 500px;
    }
    
    .tech-item {
        width: 140px;
        height: 140px;
        font-size: 1rem;
    }
    
    .tech-circle {
        width: 140px;
        height: 140px;
    }
    
    .tech-rhombus {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .tech-expertise-section {
        padding: 1px 0;
    }
    
    
    .tech-section-heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .tech-section-heading1 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .tech-section-text {
        font-size: 0.95rem;
    }
    
    .tech-sliders-container {
        flex-direction: row;
        gap: 3rem;
        min-height: auto;
        padding: 2rem 0;
        margin-top: 2rem;
    }
    

      .tech-expertise-section .tech-sliders-container {
        width: 100%;
        margin-left: 0;
    }
    .tech-slider-wrapper {
        width: 120px;
        height: 400px;
    }
    
    .tech-item {
        width: 118px;
        height: 118px;
        font-size: 0.9rem;
    }
    
    .tech-circle {
        width: 120px;
        height: 120px;
    }
    
    .tech-rhombus {
        width: 120px;
        height: 120px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-section .mb-4 {
    margin-bottom: 1rem !important;
}

.testimonials-section .section-title-premium {
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--primary-deep-blue);
    background-clip: unset;
    color: var(--primary-deep-blue);
}

.testimonials-section h2 {
    margin-bottom: 0.5rem;
}

.testimonials-section .lead {
    margin-bottom: 1rem;
}

/* Carousel Wrapper - Flexible height container */
.testimonial-carousel-wrapper {
    position: relative;
    min-height: auto;
    padding: 0 60px;
}

.testimonial-carousel-wrapper .carousel-inner {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-card-premium {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    margin: 0 auto;
    max-width: 850px;
    width: 100%;
    min-height: auto;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.testimonial-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 101, 255, 0.15);
}

/* Prevent hover effects during carousel transition */
.testimonial-carousel-wrapper .carousel-item:not(.active) .testimonial-card-premium {
    pointer-events: none;
}

.testimonial-quote {
    font-size: 3.5rem;
    color: var(--primary-deep-blue);
    opacity: 0.15;
    margin-bottom: 1rem;
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    overflow: visible;
    position: relative;
    z-index: 1;
    padding-top: 0.5rem;
}

.testimonial-author {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.testimonial-author h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-deep-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-carousel-wrapper .carousel-control-prev,
.testimonial-carousel-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 15;
    cursor: pointer;
    pointer-events: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 51, 102, 0.1);
}

.testimonial-carousel-wrapper .carousel-control-prev-icon,
.testimonial-carousel-wrapper .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(0.6) contrast(1);
}

.testimonial-carousel-wrapper .carousel-control-prev:hover,
.testimonial-carousel-wrapper .carousel-control-next:hover {
    background: var(--primary-deep-blue);
    border-color: var(--primary-deep-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.2);
}

.testimonial-carousel-wrapper .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonial-carousel-wrapper .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.testimonial-carousel-wrapper .carousel-control-prev {
    left: 0;
}

.testimonial-carousel-wrapper .carousel-control-next {
    right: 0;
}

/* Smooth transitions for card changes */
.testimonial-carousel-wrapper .carousel-item {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    opacity: 0;
    transform: translateX(10px) scale(0.98);
    visibility: hidden;
}

.testimonial-carousel-wrapper .carousel-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
    display: flex !important;
}

.testimonial-carousel-wrapper .carousel-item:not(.active) {
    display: none;
}

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-carousel-wrapper {
        padding: 0 50px;
        min-height: auto;
    }
    
    .testimonial-carousel-wrapper .carousel-inner {
        min-height: auto;
    }
    
    .testimonial-card-premium {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
        top: 1rem;
        left: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        padding-top: 0.75rem;
    }
    
    .testimonial-author h6 {
        font-size: 1rem;
    }
    
    .testimonial-author p {
        font-size: 0.85rem;
    }
    
    .testimonial-carousel-wrapper .carousel-control-prev {
        left: 5px;
    }
    
    .testimonial-carousel-wrapper .carousel-control-next {
        right: 5px;
    }
    
    .testimonial-carousel-wrapper .carousel-control-prev,
    .testimonial-carousel-wrapper .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* ===== Premium CTA Section ===== */
.cta-section-premium {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-bright-blue) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-section-premium h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section-premium .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Align CTA rows similarly to centered layout CTA sections */
.cta-section-premium .row.align-items-center {
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}
.cta-section-premium .row.align-items-center .col-lg-8 {
    margin-bottom: 0.75rem;
}
.cta-section-premium .row.align-items-center .col-lg-4 {
    text-align: center;
}

/* Ensure results/impact sections remain legible on dark backgrounds */
.results-impact-section h2,
.results-impact-section h4,
.results-impact-section li {
    color: var(--white);
}
.results-impact-section li i {
    color: var(--highlight-yellow);
}

/* ===== Header / Navbar ===== */
.navbar {
    background: var(--brand-navy);
    box-shadow: none !important;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar-brand:hover {
    opacity: 0.9;
}

/* Logo container removed - using direct image now */

/* Logo image styling */
.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.navbar-logo:not([src]),
.navbar-logo[src=""] {
    display: none;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 45px;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
        max-width: 140px;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-bright-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

/* Remove underline effect for dropdown toggle links */
.navbar-nav .nav-link.dropdown-toggle::after {
    content: '';
    position: static !important;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.255em;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: none !important;
    left: auto !important;
    bottom: auto !important;
}

.navbar-nav .nav-link.dropdown-toggle:hover::after {
    width: auto !important;
}

.navbar-nav .btn-contact {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 16px;
    margin-left: 0.5rem;
    font-weight: 600;
}

.navbar-nav .btn-contact:hover {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.navbar-nav .btn-contact::after {
    display: none;
}

/* ===== Dropdown Menu Styles ===== */
.nav-item.dropdown {
    position: relative;
}

.nav-link.dropdown-toggle {
    cursor: pointer;
}

/* Arrow for dropdown toggle - override underline */
.nav-link.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    transform: none !important;
    left: auto !important;
    bottom: auto !important;
}

.nav-link.dropdown-toggle:hover::after {
    width: auto !important;
    background: none !important;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.nav-item.dropdown.show .nav-link.dropdown-toggle::after {
    transform: rotate(180deg) !important;
}


/* ===== Standard Dropdown Menu Styles ===== */
.dropdown-menu {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s ease;
    display: block;
    text-align: left;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    text-decoration: none;
    transform: translateX(0);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(0, 101, 255, 0.05);
    color: var(--primary-bright-blue);
    transform: translateX(3px);
    padding-left: 1.5rem;
}

.dropdown-item:active {
    background-color: rgba(0, 101, 255, 0.1);
    color: var(--primary-deep-blue);
}

/* Industries dropdown specific styling */
#industriesDropdown + .dropdown-menu {
    min-width: 260px;
    padding: 0.25rem 0;
    margin-top: 0.25rem;
}

#industriesDropdown + .dropdown-menu .dropdown-item {
    padding: 0.875rem 1.5rem;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
}

#industriesDropdown + .dropdown-menu .dropdown-item:hover,
#industriesDropdown + .dropdown-menu .dropdown-item:focus {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.02);
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-radius: 0;
    }
    
    .nav-item.dropdown.show .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item:hover {
        transform: none;
        padding-left: 1rem;
    }
}

/* ===== Mega Menu Styles ===== */
.mega-menu {
    position: static !important;
}

.mega-menu-dropdown {
    left: 50% !important;
    transform: translateX(-50%) translateY(-10px) !important;
    width: 100%;
    max-width: 1600px;
    padding: 1.25rem 1rem !important;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
}

.nav-item.mega-menu:hover .mega-menu-dropdown,
.nav-item.mega-menu.show .mega-menu-dropdown,
.mega-menu-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
    display: block !important;
}

.mega-menu-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(0, 101, 255, 0.15);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    line-height: 1.3;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0;
}

.mega-menu-list li:not(:last-child) {
    margin-bottom: 0.4rem;
}

.mega-menu-item {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.25rem 0;
    display: block;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateX(0);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.mega-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-bright-blue);
    transition: width 0.25s ease;
    transform: translateY(-50%);
}

.mega-menu-item:hover,
.mega-menu-item:focus {
    color: var(--primary-bright-blue);
    transform: translateX(3px);
    padding-left: 0.5rem;
}

.mega-menu-item:hover::before {
    width: 4px;
}

.mega-menu-item:active {
    color: var(--primary-deep-blue);
}

/* Responsive adjustments for single-row mega menu */
@media (min-width: 992px) {
    .mega-menu-dropdown .col-lg-2 {
        min-width: 0;
        flex: 0 0 auto;
        width: calc(100% / 6);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .mega-menu-item {
        font-size: 0.8rem;
    }
    
    .mega-menu-heading {
        font-size: 0.75rem;
    }
}

@media (min-width: 1400px) {
    .mega-menu-dropdown {
        max-width: 1600px;
    }
}

/* Mobile Mega Menu Styles */
@media (max-width: 991px) {
    .mega-menu-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        margin-top: 0;
        background-color: rgba(0, 0, 0, 0.02);
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        border-radius: 0;
    }
    
    .mega-menu.show .mega-menu-dropdown {
        max-height: 2000px;
        padding: 1rem 0 !important;
    }
    
    .mega-menu-dropdown .container {
        padding: 0 1rem;
    }
    
    .mega-menu-dropdown .row {
        margin: 0;
    }
    
    .mega-menu-dropdown .col-lg-2,
    .mega-menu-dropdown .col-lg-4,
    .mega-menu-dropdown .col-lg-3,
    .mega-menu-dropdown .col-md-4,
    .mega-menu-dropdown .col-md-6,
    .mega-menu-dropdown .col-sm-6 {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .mega-menu-heading {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        cursor: pointer;
        position: relative;
        padding-right: 1.5rem;
    }
    
    .mega-menu-heading::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        font-weight: 300;
        transition: transform 0.3s ease;
    }
    
    .mega-menu-heading.active::after {
        content: '−';
        transform: translateY(-50%) rotate(0deg);
    }
    
    .mega-menu-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mega-menu-heading.active + .mega-menu-list {
        max-height: 500px;
    }
    
    .mega-menu-item {
        padding: 0.75rem 1rem;
        border-left: 3px solid transparent;
        font-size: 0.9rem;
    }
    
    .mega-menu-item:hover,
    .mega-menu-item:focus {
        background: rgba(0, 101, 255, 0.08);
        border-left-color: var(--primary-bright-blue);
        padding-left: 1.25rem;
        transform: translateX(3px);
    }
}

@media (max-width: 576px) {
    .mega-menu-dropdown .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .mega-menu-heading {
        font-size: 0.75rem;
    }
    
    .mega-menu-item {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem;
    }
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(0, 0, 0, 0.02);
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav-item.dropdown.show .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 2rem;
        border-left: 3px solid transparent;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(0, 101, 255, 0.1);
        border-left-color: var(--primary-bright-blue);
        transform: translateX(5px);
        padding-left: 2.25rem;
    }
    
    .nav-link.dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-bright-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease;
}

.btn-primary-custom {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-primary-custom:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-deep-blue);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary-deep-blue);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    background: var(--primary-deep-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.25);
    border-color: var(--primary-bright-blue);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon,
.service-card .solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
    flex-shrink: 0;
}

.service-card:hover .icon,
.service-card:hover .solution-icon {
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 199, 39, 0.3);
}

.service-card:hover .icon i,
.service-card:hover .solution-icon i {
    color: var(--primary-deep-blue);
    transform: scale(1.1);
}

.service-card h4,
.service-card h5 {
    margin-bottom: 1rem;
    color: var(--primary-deep-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h4,
.service-card:hover h5 {
    color: var(--highlight-yellow);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
    transition: color 0.3s ease;
    line-height: 1.7;
}

.service-card:hover p {
    color: var(--white);
}

/* Remove hover background for success story cards */
.success-story-card:hover {
    background: var(--white) !important;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.25);
    border-color: var(--primary-bright-blue);
}

.success-story-card:hover h4,
.success-story-card:hover h5 {
    color: var(--primary-deep-blue) !important;
}

.success-story-card:hover p {
    color: var(--text-light) !important;
}

/* Remove hover background for specific cards */
.service-card.no-hover-bg:hover,
.service-solution-card.no-hover-bg:hover {
    background: var(--white) !important;
    transform: none;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card.no-hover-bg:hover h4,
.service-card.no-hover-bg:hover h5,
.service-solution-card.no-hover-bg:hover h4,
.service-solution-card.no-hover-bg:hover h5 {
    color: var(--primary-deep-blue) !important;
}
.service-card.no-hover-bg:hover p,
.service-solution-card.no-hover-bg:hover p {
    color: var(--text-light) !important;
}
.service-card.no-hover-bg:hover .icon,
.service-card.no-hover-bg:hover .solution-icon,
.service-solution-card.no-hover-bg:hover .icon,
.service-solution-card.no-hover-bg:hover .solution-icon {
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}
.service-card.no-hover-bg:hover .icon i,
.service-card.no-hover-bg:hover .solution-icon i,
.service-solution-card.no-hover-bg:hover .icon i,
.service-solution-card.no-hover-bg:hover .solution-icon i {
    color: var(--white);
    transform: none;
}

/* ===== Counter Section ===== */
.counter-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-item .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-bright-blue);
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-item .counter-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .counter-item .counter-number {
        font-size: 2rem;
    }
}

/* ===== Spotlight Strip ===== */
.spotlight-strip {
    background: var(--primary-deep-blue);
    color: var(--white);
    padding: 40px 0;
}

.spotlight-item {
    text-align: center;
    padding: 1rem;
}

.spotlight-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--highlight-yellow);
}

.spotlight-item h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.spotlight-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== Feature Block ===== */
.feature-block {
    padding: 60px 0;
}

.feature-block img {
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-bright-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== Industries Grid ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-bright-blue);
}

.industry-card h5 {
    margin-bottom: 0;
    color: var(--primary-deep-blue);
}

/* ===== Process Steps ===== */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-step::after {
    display: none;
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-bright-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
}

/* ===== Testimonials ===== */
.testimonial-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: var(--shadow-light);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
}

.testimonial-card .author-info h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-deep-blue);
}

.testimonial-card .author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-bright-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CTA enhancements */
.cta-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pill i {
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cta-actions .btn-outline-premium {
    border-color: var(--white);
    color: var(--white);
}

.cta-actions .btn-outline-premium:hover {
    background: var(--white);
    color: var(--primary-deep-blue);
}

.cta-section-premium .badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-section-premium .badge-soft i {
    font-size: 1rem;
}

/* ===== About Page Tabs Styling ===== */
.about-tabs {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.about-tabs .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.about-tabs .nav-link:hover {
    color: var(--primary-bright-blue);
    background: rgba(0, 101, 255, 0.05);
}

.about-tabs .nav-link.active {
    color: var(--primary-deep-blue);
    background: transparent;
    font-weight: 600;
}

.about-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-bright-blue), var(--highlight-yellow));
    border-radius: 2px 2px 0 0;
}

.about-tabs .nav-link i {
    font-size: 1.2rem;
}

.about-tabs .tab-pane {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-deep-blue);
    color: var(--white);
    padding: 40px 0 15px;
}

.footer .row {
    align-items: flex-start;
}

.footer .row > div {
    margin-bottom: 1.5rem;
}

.footer-logo-wrapper {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer .list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer .list-unstyled li:last-child {
    margin-bottom: 0;
}

.footer .list-unstyled a {
    display: inline-block;
    transition: var(--transition);
}

/* Footer Logo Responsive - Matching Navbar Logo */
@media (min-width: 992px) {
    .footer {
        padding: 45px 0 15px;
    }
    
    .footer-logo {
        height: 55px;
        max-width: 200px;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .footer .row > div {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .footer .row > div:first-child {
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 180px;
    }
    
    .footer .row > div {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 1rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    /* Fix button sizes for md view - make them like lg */
    .btn-primary-premium,
    .btn-outline-premium {
        padding: 0.875rem 2.25rem;
        font-size: 1rem;
    }
    
    /* MD: Buttons side by side, not one by one */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }
    
    .btn-primary-premium,
    .btn-outline-premium {
        display: inline-block;
        width: auto;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
    
    /* Prevent horizontal scroll on md view */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container,
    .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .hero-section-with-bg,
    .hero-section-premium {
        overflow-x: hidden;
    }
    
    .hero-section-with-bg .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .col-lg-6 > div[style*="display:flex"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Override inline style for flex-direction in MD */
    .col-lg-6 > div[style*="flex-direction:row"] {
        flex-direction: column !important;
    }
    
    .col-lg-6 > div[style*="display:flex"] > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure radio buttons are visible in MD view at bottom */
    .hero-section-with-bg .hero-carousel-indicators {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    /* Add padding to hero slider for radio buttons at bottom in MD */
    .hero-section-with-bg .hero-slider {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 35px 0 15px;
        text-align: center;
    }
    
    .footer-logo {
        height: 45px;
        max-width: 160px;
        margin: 0 auto;
    }
    
    .footer .row > div:first-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer .row > div:first-child a {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer .row > div:first-child p {
        text-align: center;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer .row > div {
        text-align: center;
        margin-bottom: 1.5rem;
        width: 100%;
        flex: 0 0 100%;
    }
    
    .footer h5 {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 0.875rem;
    }
    
    .footer .row > div {
        margin-bottom: 1.25rem;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 0.625rem;
    }
    
    .footer .list-unstyled li {
        margin-bottom: 0.5rem;
    }
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--highlight-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 1rem;
        padding-top: 0.875rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ===== Blog Cards ===== */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h5 {
    margin-bottom: 0.75rem;
}

.blog-card-body p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-body .read-more {
    color: var(--primary-bright-blue);
    font-weight: 600;
    margin-top: auto;
}

.blog-card-body .read-more:hover {
    color: var(--primary-deep-blue);
}

/* ===== Service Page Styles ===== */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1rem 0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-bright-blue);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-deep-blue);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.service-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.05) 0%, rgba(0, 51, 102, 0.05) 100%);
}

.service-hero-image {
    animation: floatAnimation 6s ease-in-out infinite;
}

.service-solutions-section {
    padding: 80px 0;
}

.service-solution-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0, 51, 102, 0.25);
    border-color: var(--primary-deep-blue);
    background: var(--primary-deep-blue);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.1), rgba(0, 51, 102, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-icon i {
    font-size: 2rem;
    color: var(--primary-bright-blue);
    transition: var(--transition);
}

.service-solution-card:hover .solution-icon {
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 199, 39, 0.35);
}

.service-solution-card:hover .solution-icon i {
    color: var(--primary-deep-blue);
    transform: scale(1.1);
}

.service-solution-card h5 {
    color: var(--primary-deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-solution-card:hover h5 {
    color: var(--highlight-yellow);
}

.service-solution-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-solution-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.value-proposition-section {
    padding: 80px 0;
    background: var(--white);
}

.value-proposition-section h2 {
    color: var(--primary-deep-blue);
    font-weight: 700;
    transition: color 0.3s ease;
}

.value-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    background: var(--white);
    border-color: var(--highlight-yellow);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 199, 39, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 199, 39, 0.3);
}

.value-card:hover .value-icon i {
    color: var(--primary-deep-blue);
}

.value-card h5 {
    color: var(--primary-deep-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-card:hover h5 {
    color: var(--highlight-yellow);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: var(--text-dark);
}

.stats-section {
    padding: 80px 0;
}

.stat-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 199, 39, 0.25);
    border-color: var(--highlight-yellow);
    background: var(--white);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card h3 {
    color: var(--primary-deep-blue);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.stat-card:hover h3 {
    color: var(--highlight-yellow);
    transform: scale(1.15) rotate(2deg);
    text-shadow: 0 2px 8px rgba(255, 199, 39, 0.3);
}

.stat-card h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover h6 {
    color: var(--primary-deep-blue);
    transform: translateY(-2px);
}

/* Stat cards on blue background - White cards with theme colors */
.results-impact-section .stat-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.results-impact-section .stat-card h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.results-impact-section .stat-card h6 {
    color: var(--text-dark);
    margin-top: 0;
}

.results-impact-section .stat-card:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 199, 39, 0.25);
    border-color: var(--highlight-yellow);
}

.results-impact-section .stat-card:hover h3 {
    color: var(--highlight-yellow);
    transform: scale(1.15) rotate(2deg);
    text-shadow: 0 2px 8px rgba(255, 199, 39, 0.3);
}

.results-impact-section .stat-card:hover h6 {
    color: var(--primary-deep-blue);
    transform: translateY(-2px);
}

/* Also support gradient background sections */
section[style*="background: linear-gradient"] .stat-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section[style*="background: linear-gradient"] .stat-card h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

section[style*="background: linear-gradient"] .stat-card h6 {
    color: var(--text-dark);
    margin-top: 0;
}

section[style*="background: linear-gradient"] .stat-card:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 199, 39, 0.25);
    border-color: var(--highlight-yellow);
}

section[style*="background: linear-gradient"] .stat-card:hover h3 {
    color: var(--highlight-yellow);
    transform: scale(1.15) rotate(2deg);
    text-shadow: 0 2px 8px rgba(255, 199, 39, 0.3);
}

section[style*="background: linear-gradient"] .stat-card:hover h6 {
    color: var(--primary-deep-blue);
    transform: translateY(-2px);
}

/* Case study hero image */
.case-study-hero-image {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 51, 102, 0.3);
}

/* Responsive adjustments for service page */
@media (max-width: 768px) {
    .service-hero-section {
        padding: 60px 0;
    }
    
    .service-hero-section h1 {
        font-size: 2rem;
    }
    
    .service-solutions-section,
    .value-proposition-section,
    .stats-section {
        padding: 60px 0;
    }
    
    .service-solution-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .service-hero-section {
        padding: 40px 0;
    }
    
    .service-hero-section h1 {
        font-size: 1.75rem;
    }
    
    .service-solutions-section,
    .value-proposition-section,
    .stats-section {
        padding: 40px 0;
    }
    
    .service-solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 1.5rem;
    }
}

/* ===== Services Page Image Styles ===== */
.choose-services-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 0;
}

.choose-services-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Ensure image aligns with heading */
.row.align-items-start .col-lg-6:first-child h2 {
    margin-top: 0;
}

.row.align-items-start .col-lg-6:last-child {
    padding-top: 0;
}

@media (max-width: 768px) {
    .choose-services-image {
        margin-top: 2rem;
        border-radius: 10px;
    }
    
    .row.align-items-start .col-lg-6:last-child {
        padding-top: 0;
    }
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-bright-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 101, 255, 0.25);
    outline: none;
}

.btn-submit {
    background: var(--primary-bright-blue);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--primary-bright-blue);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-item h6 {
    margin-bottom: 0.5rem;
    color: var(--primary-deep-blue);
}

.contact-info-item p {
    margin-bottom: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* ===== Utilities ===== */
.text-primary-blue {
    color: var(--primary-bright-blue);
}

.bg-light-custom {
    background: var(--bg-light);
}

.shadow-custom {
    box-shadow: var(--shadow-light);
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .case-study-card {
        margin-bottom: 1.5rem;
    }
    
    .engagement-card {
        margin-bottom: 1.5rem;
    }
    
    .tech-icon-card {
        padding: 1rem;
    }
    
    .testimonial-card-premium {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ===== Additional Premium Enhancements ===== */
/* Smooth page transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading state for images */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Enhanced focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-bright-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .btn-primary-premium,
    .btn-outline-premium,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ============================================
   PREMIUM ENHANCEMENTS - HIGH-CLASS STYLING
   ============================================ */

/* Enhanced CSS Variables */
:root {
    --shadow-premium: 0 10px 40px rgba(0, 101, 255, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 101, 255, 0.05) 100%);
    --gradient-purple: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    --gradient-cta: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Stats Counter Section - Infographic Style */
.stats-counter-section {
    background: var(--brand-navy);
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: none;
}

/* Stats counter cards - white background */
/* Stats counter cards - white background */
.stats-counter-section .stat-card-premium {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

.stats-counter-section .stat-card-premium:hover {
    border-color: var(--primary-bright-blue) !important;
    box-shadow: 0 15px 50px rgba(0, 101, 255, 0.15) !important;
}

.stats-counter-section .stat-card-premium .stat-number {
    color: var(--primary-deep-blue) !important;
}

.stats-counter-section .stat-card-premium .stat-label {
    color: var(--text-light) !important;
}

.stat-card-premium {
    /* Transparent card for dark backgrounds so white text stays visible */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    color: var(--white);
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 101, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card-premium:hover::before {
    left: 100%;
}

.stat-card-premium:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 101, 255, 0.2);
    border-color: var(--primary-bright-blue);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--highlight-yellow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card-premium:hover .stat-icon-wrapper::after {
    opacity: 1;
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.5s ease;
}

.stat-card-premium:hover .stat-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 101, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Badge - Premium Style */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-bright-blue), var(--primary-deep-blue));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 101, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 101, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 101, 255, 0.5);
    }
}

.section-title-premium {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-bright-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 400;
}

/* Premium Gradient Backgrounds */
.bg-gradient-premium {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.02) 0%, rgba(0, 101, 255, 0.02) 50%, rgba(102, 126, 234, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 101, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientFloat 20s ease-in-out infinite;
}

.bg-gradient-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientFloat 25s ease-in-out infinite reverse;
}

.bg-light-gradient {
    background: linear-gradient(180deg, var(--white) 0%, rgba(243, 244, 246, 0.5) 100%);
    position: relative;
}

@keyframes gradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Enhanced Service Tiles */
.service-tile {
    /* background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%); */
    backdrop-filter: blur(10px);
}



/* Enhanced Industry Tiles */
.industry-tile {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.industry-tile:hover {
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.05) 0%, rgba(0, 51, 102, 0.05) 100%);
}

/* Enhanced Case Study Cards */

/* Enhanced Engagement Cards */
.engagement-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.engagement-card:hover {
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
}

/* Enhanced Tech Icons */
.tech-icon-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.tech-icon-card:hover {
    background: linear-gradient(135deg, rgba(0, 101, 255, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

/* Premium CTA Section */
.cta-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaRotate 30s linear infinite;
}

@keyframes ctaRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-icon-wrapper i {
    font-size: 3rem;
    color: var(--white);
}

.cta-title-premium {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 30px rgba(255, 199, 39, 0.4);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 199, 39, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 199, 39, 0.6);
    }
}

/* Enhanced Hero Section */
.hero-section-with-bg::after {
    content: none;
}

.hero-overlay {
    background: none;
}




.service-tile .service-icon {
    font-size: 2rem;
    color: var(--brand-navy); /* default icon color same as theme */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}


.service-heading-left {
    text-align: left !important;
    width: 100%;
}

.service-heading-left span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-deep-blue);
    margin-bottom: 0.3rem;
}

.service-heading-left .section-title-premium {
    text-align: left !important;
}

.service-heading-left .section-subtitle {
    text-align: left !important;
}
.service-heading-title {
    position: relative;
    display: inline-block;
    font-size: 2.2rem;     /* Bigger size */
    font-weight: 700;
    padding-top: 15px;     /* space for line */
    margin-bottom: 0.8rem;
    text-align: left;
}

/* Line above the heading */
.service-heading-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;           /* length of the line */
    height: 4px;           /* thickness */
    background: var(--highlight-yellow);
    transform: scaleX(0);  /* hidden initially */
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-heading-title.animate-line::before {
    transform: scaleX(1);
}

/* ===== Our Core Values Section Styling ===== */
.values-section-heading {
    color: var(--primary-deep-blue);
    transition: color 0.3s ease;
}

.values-section-heading:hover {
    color: var(--highlight-yellow);
}

.values-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), var(--primary-bright-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.values-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 199, 39, 0.25);
    border-color: var(--highlight-yellow);
}

.values-card:hover::before {
    transform: scaleX(1);
}

.values-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--highlight-yellow), #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-deep-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 199, 39, 0.3);
}

.values-icon i {
    display: inline-block;
    font-size: inherit;
    line-height: 1;
    color: inherit;
}

.values-card:hover .values-icon {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.values-heading {
    color: var(--primary-deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.values-card:hover .values-heading {
    color: var(--highlight-yellow);
}

.values-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.values-card:hover p {
    color: var(--text-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title-premium {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .cta-title-premium {
        font-size: 2rem;
    }
    
    .stat-card-premium {
        padding: 2rem 1.5rem;
    }
}

/* ===== Migration Process Cards ===== */
.migration-process-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.migration-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.migration-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 199, 39, 0.2);
    border-color: var(--highlight-yellow);
    background: var(--white);
}

.migration-process-card:hover::before {
    transform: scaleX(1);
}

.migration-step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-deep-blue);
    color: var(--highlight-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.migration-process-card:hover .migration-step-number {
    background: var(--highlight-yellow);
    color: var(--primary-deep-blue);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 199, 39, 0.3);
}

.migration-process-card h5 {
    color: var(--primary-deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.migration-process-card:hover h5 {
    color: var(--primary-deep-blue);
}

.migration-process-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.migration-process-card:hover p {
    color: var(--text-dark);
}

/* Technology Stack Cards - Different Effect */
.tech-stack-card {
    background: var(--primary-deep-blue);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.tech-stack-card .tech-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--highlight-yellow), var(--highlight-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-deep-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 199, 39, 0.3);
    position: relative;
    z-index: 1;
}

.tech-stack-card h6 {
    color: var(--white);
    font-weight: 600;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    opacity: 1;
}

.tech-stack-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.3);
    border-color: var(--highlight-yellow);
    background: var(--primary-deep-blue);
}

.tech-stack-card:hover .tech-icon-wrapper {
    background: linear-gradient(135deg, var(--white), var(--white));
    color: var(--primary-deep-blue);
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.tech-stack-card:hover h6 {
    color: var(--highlight-yellow);
    transform: scale(1.1);
}

/* Our Solution Cards - Top Line Effect */
.solution-card-topline {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.solution-card-topline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), var(--highlight-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.solution-card-topline .solution-icon-topline {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-bright-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.solution-card-topline .solution-icon-topline i {
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.solution-card-topline h5 {
    color: var(--primary-deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.solution-card-topline p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.solution-card-topline:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 199, 39, 0.2);
    border-color: var(--highlight-yellow);
    background: var(--white);
}

.solution-card-topline:hover::before {
    transform: scaleX(1);
}

.solution-card-topline:hover .solution-icon-topline {
    background: linear-gradient(135deg, var(--highlight-yellow), var(--highlight-yellow));
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 199, 39, 0.3);
}

.solution-card-topline:hover .solution-icon-topline i {
    color: var(--primary-deep-blue);
    transform: scale(1.1);
}

.solution-card-topline:hover h5 {
    color: var(--highlight-yellow);
}

.solution-card-topline:hover p {
    color: var(--text-dark);
}

/* Key Takeaways Card - No background change on hover */
.key-takeaways-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.key-takeaways-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: var(--white);
}

.key-takeaways-card .lead,
.key-takeaways-card p {
    transition: color 0.3s ease;
}

.key-takeaways-card:hover .lead,
.key-takeaways-card:hover p {
    color: var(--text-dark);
}

/* Shared hero badge styles */
.creative-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.stat-badge-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.stat-badge-stack .stat-badge {
    position: absolute;
    pointer-events: auto;
}
.stat-badge.badge-top-left {
    top: -20px;
    left: -30px;
}
.stat-badge.badge-bottom-right {
    bottom: -20px;
    right: -30px;
}
.stat-badge {
    background: linear-gradient(135deg, #ffe07a, var(--highlight-yellow));
    color: var(--brand-navy);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,51,102,0.12);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    box-shadow: 0 6px 18px rgba(255, 199, 39, 0.35);
    transition: all 0.3s ease;
    animation: rotateIn 1s ease-out forwards, continuousFloat 4s ease-in-out infinite 1s;
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    width: 150px;
    height: 150px;
    text-align: center;
}
.stat-badge:nth-child(1) { animation-delay: 0.3s, 1.3s; }
.stat-badge:nth-child(2) { animation-delay: 0.5s, 1.7s; }
.stat-badge:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 199, 39, 0.5);
    background: linear-gradient(135deg, #ffd700, var(--highlight-yellow));
}
@keyframes rotateIn {
    0% { opacity: 0; transform: rotate(-180deg) scale(0.5) translateY(50px); }
    60% { transform: rotate(10deg) scale(1.1) translateY(-10px); }
    100% { opacity: 1; transform: rotate(0deg) scale(1) translateY(0); }
}
@keyframes continuousFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); box-shadow: 0 4px 15px rgba(255, 199, 39, 0.3); }
    25% { transform: translateY(-10px) rotate(3deg) scale(1.02); box-shadow: 0 6px 20px rgba(255, 199, 39, 0.4); }
    50% { transform: translateY(-15px) rotate(0deg) scale(1.03); box-shadow: 0 8px 25px rgba(255, 199, 39, 0.5); }
    75% { transform: translateY(-10px) rotate(-3deg) scale(1.02); box-shadow: 0 6px 20px rgba(255, 199, 39, 0.4); }
}
@media (max-width: 992px) {
    .stat-badge {
        width: 140px;
        height: 140px;
    }
    .stat-badge.badge-top-left { top: -8px; left: 100px; }
    .stat-badge.badge-bottom-right { bottom: -8px; right: 100px; }
}
@media (max-width: 768px) {
    .stat-badge {
        width: 130px;
        height: 130px;
        padding: 10px;
        font-size: 1rem;
    }
    .stat-badge div:first-child { font-size: 0.8rem !important; }
    .stat-badge div:last-child { font-size: 1.3rem !important; }
}
@media (max-width: 576px) {
    .stat-badge {
        width: 120px;
        height: 120px;
        max-width: 140px;
        padding: 10px;
        font-size: 0.95rem;
    }
    .stat-badge.badge-top-left { top: -6px; left: -6px; }
    .stat-badge.badge-bottom-right { bottom: -6px; right: -6px; }
    .stat-badge div:first-child { font-size: 0.75rem !important; }
    .stat-badge div:last-child { font-size: 1.2rem !important; }
}

/* ===== Our Work Hero Animations ===== */
@keyframes aiPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
@keyframes dataFlow {
    0% { transform: translateX(-20px) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(20px) translateY(-20px); opacity: 0; }
}
@keyframes blockchainLink {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}
@keyframes waveFlow {
    0%, 100% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-15px) scaleX(1.1); }
}
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
    33% { transform: translateY(-20px) translateX(10px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(-10px) translateX(-10px) rotate(240deg); opacity: 0.8; }
    100% { transform: translateY(0) translateX(0) rotate(360deg); opacity: 0.6; }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes shapeRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}
@keyframes truckMove {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(30px); }
}
@keyframes cloudFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}
@keyframes cartBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes phoneVibrate {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(-5deg) translateX(-3px); }
    75% { transform: rotate(5deg) translateX(3px); }
}
@keyframes globeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes hammerStrike {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
}
@keyframes chatBubble {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-10px); }
}
@keyframes boxStack {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes walletPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 101, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 101, 255, 0); }
}
@keyframes peopleGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes houseBuild {
    0% { transform: translateY(20px) scale(0.8); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes shopGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 199, 39, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 199, 39, 0.6); }
}
@keyframes gearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes bookFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(15deg); }
}
@keyframes bankShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}
@keyframes cupSteam {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scaleY(1.2); opacity: 1; }
}
@keyframes cashRegister {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05) translateX(2px); }
    75% { transform: scale(1.05) translateX(-2px); }
}
@keyframes briefcaseOpen {
    0%, 100% { transform: rotateX(0deg); }
    50% { transform: rotateX(10deg); }
}

.work-hero-visual {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 51, 102, 0.2);
}

.work-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: particleFloat 6s ease-in-out infinite;
}

.work-hero-shape:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.work-hero-shape:nth-child(2) { width: 60px; height: 60px; animation-delay: 1s; }
.work-hero-shape:nth-child(3) { width: 100px; height: 100px; animation-delay: 2s; }
.work-hero-shape:nth-child(4) { width: 70px; height: 70px; animation-delay: 3s; }
.work-hero-shape:nth-child(5) { width: 90px; height: 90px; animation-delay: 4s; }

.work-hero-gradient {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* ===== Our Work Section 1 - White Text Styles ===== */
/* Apply white text styles to all our-work hero sections */
body:has(.work-hero-visual) .hero-section-premium .section-badge,
body:has(.work-hero-visual) .hero-section-with-bg .section-badge {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body:has(.work-hero-visual) .hero-section-premium h1,
body:has(.work-hero-visual) .hero-section-premium .display-4,
body:has(.work-hero-visual) .hero-section-premium .hero-headline,
body:has(.work-hero-visual) .hero-section-with-bg h1,
body:has(.work-hero-visual) .hero-section-with-bg .display-4,
body:has(.work-hero-visual) .hero-section-with-bg .hero-headline {
    color: var(--white) !important;
}

body:has(.work-hero-visual) .hero-section-premium p,
body:has(.work-hero-visual) .hero-section-premium .lead,
body:has(.work-hero-visual) .hero-section-premium .hero-subtext,
body:has(.work-hero-visual) .hero-section-with-bg p,
body:has(.work-hero-visual) .hero-section-with-bg .lead,
body:has(.work-hero-visual) .hero-section-with-bg .hero-subtext {
    color: rgba(255, 255, 255, 0.9) !important;
}

body:has(.work-hero-visual) .hero-section-premium small.text-muted,
body:has(.work-hero-visual) .hero-section-with-bg small.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

body:has(.work-hero-visual) .hero-section-premium strong,
body:has(.work-hero-visual) .hero-section-premium .text-primary-deep-blue,
body:has(.work-hero-visual) .hero-section-with-bg strong,
body:has(.work-hero-visual) .hero-section-with-bg .text-primary-deep-blue {
    color: var(--white) !important;
}

/* Ensure hero sections have dark background for our-work pages */
body:has(.work-hero-visual) .hero-section-premium,
body:has(.work-hero-visual) .hero-section-with-bg {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, #001a33 100%) !important;
    color: var(--white) !important;
}

/* Fallback for browsers that don't support :has() - apply to all hero sections */
.hero-section-premium .section-badge,
.hero-section-with-bg .section-badge {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-section-premium h1,
.hero-section-premium .display-4,
.hero-section-premium .hero-headline,
.hero-section-with-bg h1,
.hero-section-with-bg .display-4,
.hero-section-with-bg .hero-headline {
    color: var(--white);
}

.hero-section-premium p,
.hero-section-premium .lead,
.hero-section-premium .hero-subtext,
.hero-section-with-bg p,
.hero-section-with-bg .lead,
.hero-section-with-bg .hero-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section-premium small.text-muted,
.hero-section-with-bg small.text-muted {
    color: rgba(255, 255, 255, 0.7);
}

.hero-section-premium strong,
.hero-section-premium .text-primary-deep-blue,
.hero-section-with-bg strong,
.hero-section-with-bg .text-primary-deep-blue {
    color: var(--white);
}

