

/* ---------- 1.  CSS VARIABLES ---------- */
:root,
[data-bs-theme="light"] {
    --si-primary: #6366f1;
    --si-secondary: #eff2fc;
    --si-danger: #ef4444;
    --si-success: #22c55e;
    --si-info: #4c82f7;
    --si-warning: #ffba08;
    --si-gray-100: #f3f6ff;
    --si-gray-200: #eff2fc;
    --si-gray-300: #e2e5f1;
    --si-gray-400: #d4d7e5;
    --si-gray-500: #b4b7c9;
    --si-gray-600: #9397ad;
    --si-gray-700: #565973;
    --si-gray-800: #33354d;
    --si-gray-900: #0b0f19;
    --si-body-bg: #ffffff;
    --si-body-color: #565973;
    --si-heading-color: #0b0f19;
    --si-border-color: #e2e5f1;
    --si-glass-bg: rgba(255, 255, 255, 0.55);
    --si-glass-border: rgba(255, 255, 255, 0.25);
    --si-glass-shadow: 0 8px 32px rgba(11, 15, 25, 0.08);
    --si-box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
    --si-box-shadow-lg: 0 0.3rem 1.525rem -0.375rem rgba(11, 15, 25, 0.1), 0 0.25rem 0.8125rem -0.125rem rgba(11, 15, 25, 0.06);
    --si-border-radius: 0.75rem;
    --si-font-sans: "Manrope", sans-serif;
    --si-alternate-color: #f0f6fa;
    --si-gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
    --si-faq-color: #ffffff;
}

[data-bs-theme="dark"] {
    --si-body-bg: #0b131f;
    --si-body-color: rgba(255, 255, 255, 0.72);
    --si-heading-color: #ffffff;
    --si-border-color: rgba(255, 255, 255, 0.10);
    --si-glass-bg: rgba(255, 255, 255, 0.04);
    --si-glass-border: rgba(255, 255, 255, 0.06);
    --si-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
    --si-box-shadow: 0 0.275rem 1.25rem rgba(0, 0, 0, 0.30), 0 0.25rem 0.5625rem rgba(0, 0, 0, 0.20);
    --si-box-shadow-lg: 0 0.3rem 1.525rem -0.375rem rgba(0, 0, 0, 0.50), 0 0.25rem 0.8125rem -0.125rem rgba(0, 0, 0, 0.30);
    --si-gray-100: #1f2233;
    --si-gray-200: #2a2d42;
    --si-gray-300: #3a3d57;
    --si-gray-400: #565973;
    --si-gray-500: #9397ad;
    --si-gray-600: #b4b7c9;
    --si-gray-700: #d4d7e5;
    --si-gray-800: #eff2fc;
    --si-gray-900: #ffffff;
    --si-primary: #818cf8;
    --si-danger: #f87171;
    --si-alternate-color: #16222f;
    --si-faq-color: #000000;
}

/* ---------- 2.  BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Manrope", sans-serif !important;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--si-body-color);
    background-color: var(--si-body-bg);
}

a {
    color: var(--si-primary);
    text-decoration: none;
}

    a:hover {
        color: var(--si-primary);
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- 3.  UTILITY CLASSES ---------- */
.section {
    padding: 70px 0 !important;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: var(--si-glass-bg);
    box-shadow: var(--si-glass-shadow);
    border: 1px solid var(--si-glass-border);
    backdrop-filter: blur(12px);
    color: var(--si-body-color);
}

    .section-badge i {
        color: var(--si-primary);
    }

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--si-heading-color);
    margin-bottom: 0.75rem;
}

    .section-title span {
        color: var(--si-primary);
        display: block
    }

.section-description {
    font-size: 1.12rem;
    color: var(--si-body-color);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.glass-card {
    background: var(--si-glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--si-glass-border);
    border-radius: var(--si-border-radius);
    box-shadow: var(--si-glass-shadow);
    padding: 1.75rem 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

    .glass-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- 4.  THEME TOGGLE ---------- */
.mode-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
}

    .mode-switch .form-check-input {
        width: 48px;
        height: 26px;
        border-radius: 26px;
        background-color: var(--si-gray-300);
        border: none;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s ease;
        flex-shrink: 0;
    }

        .mode-switch .form-check-input:checked {
            background-color: var(--si-primary);
        }

        .mode-switch .form-check-input::before {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fff;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .mode-switch .form-check-input:checked::before {
            transform: translateX(22px);
        }

    .mode-switch .form-check-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--si-body-color);
        cursor: pointer;
        user-select: none;
    }

        .mode-switch .form-check-label:last-of-type {
            display: none;
        }

    .mode-switch .form-check-input:checked ~ .form-check-label:first-of-type {
        display: none;
    }

    .mode-switch .form-check-input:checked ~ .form-check-label:last-of-type {
        display: inline-block;
    }

/* ---------- 5.  HERO ---------- */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--si-body-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    height: 100vh;
    width: 100%;
}

    .particles span {
        position: absolute;
        bottom: -50px;
        border-radius: 50%;
        background: white;
        opacity: 0;
        animation: particleFloat ease-in-out infinite;
    }

        .particles span:nth-child(odd) {
            background: rgba(7, 107, 167, 0.7);
        }

        .particles span:nth-child(even) {
            background: rgba(201, 5, 21, 0.7);
        }

        .particles span:nth-child(1) {
            left: 5%;
            width: 4px;
            height: 4px;
            animation-duration: 12s;
            animation-delay: -2s;
        }

        .particles span:nth-child(2) {
            left: 15%;
            width: 8px;
            height: 8px;
            animation-duration: 18s;
            animation-delay: -5s;
        }

        .particles span:nth-child(3) {
            left: 25%;
            width: 5px;
            height: 5px;
            animation-duration: 14s;
            animation-delay: -10s;
        }

        .particles span:nth-child(4) {
            left: 35%;
            width: 3px;
            height: 3px;
            animation-duration: 22s;
            animation-delay: -1s;
        }

        .particles span:nth-child(5) {
            left: 45%;
            width: 6px;
            height: 6px;
            animation-duration: 16s;
            animation-delay: -8s;
        }

        .particles span:nth-child(6) {
            left: 55%;
            width: 4px;
            height: 4px;
            animation-duration: 20s;
            animation-delay: -14s;
        }

        .particles span:nth-child(7) {
            left: 65%;
            width: 7px;
            height: 7px;
            animation-duration: 15s;
            animation-delay: -3s;
        }

        .particles span:nth-child(8) {
            left: 75%;
            width: 3px;
            height: 3px;
            animation-duration: 25s;
            animation-delay: -12s;
        }

        .particles span:nth-child(9) {
            left: 85%;
            width: 5px;
            height: 5px;
            animation-duration: 13s;
            animation-delay: -6s;
        }

        .particles span:nth-child(10) {
            left: 95%;
            width: 9px;
            height: 9px;
            animation-duration: 19s;
            animation-delay: -17s;
        }

        .particles span:nth-child(11) {
            left: 10%;
            width: 4px;
            height: 4px;
            animation-duration: 21s;
            animation-delay: -9s;
        }

        .particles span:nth-child(12) {
            left: 20%;
            width: 6px;
            height: 6px;
            animation-duration: 17s;
            animation-delay: -4s;
        }

        .particles span:nth-child(13) {
            left: 30%;
            width: 3px;
            height: 3px;
            animation-duration: 14s;
            animation-delay: -11s;
        }

        .particles span:nth-child(14) {
            left: 40%;
            width: 5px;
            height: 5px;
            animation-duration: 23s;
            animation-delay: -2s;
        }

        .particles span:nth-child(15) {
            left: 50%;
            width: 8px;
            height: 8px;
            animation-duration: 16s;
            animation-delay: -13s;
        }

        .particles span:nth-child(16) {
            left: 60%;
            width: 4px;
            height: 4px;
            animation-duration: 19s;
            animation-delay: -7s;
        }

        .particles span:nth-child(17) {
            left: 70%;
            width: 7px;
            height: 7px;
            animation-duration: 12s;
            animation-delay: -1s;
        }

        .particles span:nth-child(18) {
            left: 80%;
            width: 5px;
            height: 5px;
            animation-duration: 24s;
            animation-delay: -15s;
        }

        .particles span:nth-child(19) {
            left: 90%;
            width: 3px;
            height: 3px;
            animation-duration: 15s;
            animation-delay: -5s;
        }

        .particles span:nth-child(20) {
            left: 100%;
            width: 6px;
            height: 6px;
            animation-duration: 18s;
            animation-delay: -8s;
        }

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-110vh) translateX(50px) scale(1.2);
        opacity: 0;
    }
}

.stars {
    position: absolute;
    inset: 0;
}

    .stars span {
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 20px #fff;
        animation: twinkle 3s ease-in-out infinite;
    }

        .stars span:nth-child(1) {
            top: 10%;
            left: 12%;
        }

        .stars span:nth-child(2) {
            top: 18%;
            left: 80%;
        }

        .stars span:nth-child(3) {
            top: 25%;
            left: 45%;
        }

        .stars span:nth-child(4) {
            top: 35%;
            left: 90%;
        }

        .stars span:nth-child(5) {
            top: 60%;
            left: 25%;
        }

        .stars span:nth-child(6) {
            top: 72%;
            left: 70%;
        }

        .stars span:nth-child(7) {
            top: 82%;
            left: 55%;
        }

        .stars span:nth-child(8) {
            top: 15%;
            left: 60%;
        }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.6);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(252, 245, 245, 1);
    border: 1px solid var(--si-glass-border);
    color: #565973;
    margin-bottom: 0.5rem;
}

    .hero-badge i {
        color: var(--si-primary);
    }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--si-heading-color);
    margin-bottom: 1.5rem;
}

    .hero-title span {
        display: block;
        background: var(--si-gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--si-body-color);
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hero-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--si-box-shadow-lg);
    }

.hero-buttons .btn-danger {
    background: var(--si-danger);
    border-color: var(--si-danger);
    color: #fff;
}

.hero-buttons .btn-outline-secondary {
    border: 1px solid var(--si-border-color);
    color: var(--si-body-color);
    background: transparent;
}

    .hero-buttons .btn-outline-secondary:hover {
        background: var(--si-primary);
        border-color: var(--si-primary);
        color: #fff;
    }

.hero-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--si-body-color);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    backdrop-filter: blur(8px);
}

    .highlight-card i {
        color: var(--si-primary);
        font-size: 1rem;
    }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    color: var(--si-body-color);
    opacity: 0.6;
    z-index: 10;
}

    .hero-scroll i {
        animation: bounce 1.8s infinite;
        font-size: 1.4rem;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0 5rem;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-highlights-grid {
        gap: 0.5rem;
    }

    .highlight-card {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .particles {
        height: 600px;
    }
}

/* ---------- 6.  TRUSTED BY (STATS) ---------- */
.trusted-by-section {
    background-color: var(--si-alternate-color);
}

    .trusted-by-section .container {
        border-top: 1px solid var(--si-border-color);
        border-bottom: 1px solid var(--si-border-color);
    }

.stat-block {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: transparent;
    transition: transform 0.3s ease;
}

    .stat-block:hover {
        transform: translateY(-5px);
    }

    .stat-block h2 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 0.5rem;
        color: var(--si-heading-color);
    }

    .stat-block .counter-suffix {
        color: var(--si-primary);
        margin-left: 2px;
    }

    .stat-block p {
        font-size: 1rem;
        font-weight: 500;
        color: var(--si-body-color);
        margin: 0;
    }

@media (max-width: 576px) {
    .stat-block h2 {
        font-size: 2.5rem;
    }
}

/* ---------- 7.  ABOUT ---------- */
.about-section {
    background: var(--si-body-bg);
    position: relative;
}

    .about-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        top: -180px;
        right: -180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
        filter: blur(60px);
        pointer-events: none;
    }

    .about-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        bottom: -150px;
        left: -150px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.06), transparent 70%);
        filter: blur(60px);
        pointer-events: none;
    }

.about-image {
    position: relative;
    border-radius: var(--si-border-radius);
    animation: floatImage 6s ease-in-out infinite;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

    .about-image img {
        width: 100%;
        transition: transform 0.4s ease;
        border-radius: var(--si-border-radius);
        box-shadow: var(--si-box-shadow-lg);
    }

    .about-image:hover img {
        transform: scale(0.90);
        box-shadow: none;
    }

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--si-box-shadow);
}

    .feature-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

    .feature-item i {
        font-size: 2rem;
        color: var(--si-primary);
        flex-shrink: 0;
    }

    .feature-item h3 {
        color: var(--si-heading-color);
        margin-bottom: 0.25rem;
        font-weight: 700;
    }

    .feature-item p {
        color: var(--si-body-color);
        margin-bottom: 0;
        font-size: 1rem;
    }

/* ---------- 8.  WHY US ---------- */
.why-us-section {
    background: var(--si-alternate-color);
}

.why-item {
    padding: 1.5rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: var(--si-box-shadow);
    text-align: center;
}

    .why-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

    .why-item .why-icon i {
        font-size: 2.4rem;
        color: var(--si-primary);
        display: inline-block;
        padding: 0.5rem;
        transition: transform 0.3s ease;
/*        margin-bottom: 0.5rem;*/
        border-radius: 15px;
    }

    .why-item:hover .why-icon i {
        transform: scale(1.1);
        background: rgba(99, 102, 241, 0.18);
    }

    .why-item h3 {
        color: var(--si-heading-color);
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .why-item p {
        color: var(--si-body-color);
        margin-bottom: 0;
        font-size: 1rem;
    }

/* ---------- 9.  PROCESS ---------- */
.process-section {
    background: var(--si-body-bg);
}

.process-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    box-shadow: var(--si-box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

    .process-card .processcard-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.2rem;
    }

    .process-card .process-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--si-primary);
        opacity: 0.6;
        line-height: 1;
    }

    .process-card .process-icon {
        font-size: 2rem;
        color: var(--si-primary);
    }

    .process-card h3 {
        color: var(--si-heading-color);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        color: var(--si-body-color);
        margin-bottom: 0;
        font-size: 1rem;
    }

/* ---------- 10. INDUSTRIES ---------- */
.industries-section {
    background: var(--si-alternate-color);
}

.industry-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    box-shadow: var(--si-box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

    .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

    .industry-card .industry-icon {
        font-size: 2.4rem;
        color: var(--si-primary);
/*        margin-bottom: 0.75rem;*/
        display: inline-block;
    }

    .industry-card h3 {
        color: var(--si-heading-color);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .industry-card p {
        color: var(--si-body-color);
        margin-bottom: 0;
        font-size: 1rem;
    }

/* ---------- 11. RESEARCH ---------- */
.research-section {
    background: var(--si-body-bg);
}

.research-card {
    padding: 1.5rem 1.5rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    box-shadow: var(--si-box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

    .research-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--si-box-shadow-lg);
        border-color: var(--si-primary);
    }

    .research-card .research-icon {
        font-size: 2.4rem;
        color: var(--si-primary);
        display: inline-block;
        max-height: 55px;
        margin-bottom: 0.2rem;
    }

    .research-card h3 {
        color: var(--si-heading-color);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .research-card p {
        color: var(--si-body-color);
        margin-bottom: 0;
        font-size: 1rem;
    }

/* ---------- 12. TESTIMONIALS ---------- */
.testimonial-section {
    background: var(--si-alternate-color);
}

.testimonial-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

    .testimonial-summary .summary-item {
        background: var(--si-glass-bg);
        backdrop-filter: blur(12px);
        border: 1px solid var(--si-glass-border);
        border-radius: var(--si-border-radius);
        padding: 1.25rem;
        text-align: center;
    }

        .testimonial-summary .summary-item h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--si-primary);
            margin-bottom: 0.1rem;
        }

        .testimonial-summary .summary-item p {
            color: var(--si-body-color);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .testimonial-summary .summary-item .rating {
            color: #f59e0b;
            font-size: 1.2rem;
        }

        .testimonial-summary .summary-item small {
            color: var(--si-body-color);
            opacity: 0.7;
            font-size: 0.75rem;
            display: block;
            margin-top: 0.25rem;
        }

.testimonial-section .card {
    background: var(--si-glass-bg) !important;
    backdrop-filter: blur(16px);
    border: 1px solid var(--si-glass-border) !important;
    border-radius: var(--si-border-radius) !important;
    box-shadow: var(--si-box-shadow) !important;
}

    .testimonial-section .card blockquote p {
        color: var(--si-heading-color) !important;
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
    }

.testimonial-section .card-footer {
    background: transparent !important;
    border-top: none !important;
}

    .testimonial-section .card-footer h5 {
        color: var(--si-heading-color);
        font-weight: 700;
    }

    .testimonial-section .card-footer span {
        color: var(--si-body-color) !important;
    }

.swiper-pagination-bullet {
    background: var(--si-border-color) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--si-primary) !important;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--si-border-color);
    background: var(--si-glass-bg);
    color: var(--si-body-color);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

    .btn-icon:hover {
        background: var(--si-primary);
        color: #fff;
        border-color: var(--si-primary);
        transform: scale(1.05);
    }

    .btn-icon i {
        font-size: 1.2rem;
    }

    .btn-icon.btn-primary {
        background: var(--si-primary);
        color: #fff;
        border-color: var(--si-primary);
    }

@media (max-width: 991px) {
    .testimonial-summary {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-summary {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

        .testimonial-summary .summary-item {
            padding: 0.75rem;
        }

            .testimonial-summary .summary-item h2 {
                font-size: 1.6rem;
            }

    .testimonial-section .card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .testimonial-summary .summary-item h2 {
        font-size: 1.4rem;
    }
}

/* ---------- 13. FAQ ---------- */
.faq-section {
    background: var(--si-body-bg);
}

.faq-contact-card {
    padding: 2rem 1.75rem;
    border-radius: var(--si-border-radius);
    background: var(--si-glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--si-glass-border);
    box-shadow: var(--si-box-shadow);
    text-align: center;
}

    .faq-contact-card .contact-icon {
        font-size: 2.8rem;
        color: var(--si-primary);
        margin-bottom: 0.75rem;
    }

    .faq-contact-card h3 {
        color: var(--si-heading-color);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .faq-contact-card p {
        color: var(--si-body-color);
        font-size: 0.95rem;
    }

    .faq-contact-card .btn {
        border-radius: 50px;
        font-weight: 600;
    }

    .faq-contact-card .btn-outline-primary {
        border-color: var(--si-border-color);
        color: var(--si-body-color);
    }

        .faq-contact-card .btn-outline-primary:hover {
            background: var(--si-primary);
            border-color: var(--si-primary);
            color: #fff;
        }

    .faq-contact-card small {
        color: var(--si-body-color);
        opacity: 0.7;
        line-height: 1.6;
    }

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--si-border-color);
    --bs-accordion-btn-color: var(--si-heading-color);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-focus-border-color: var(--si-primary);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: var(--si-primary);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-body-color: var(--si-body-color);
    --bs-accordion-body-bg: transparent;
}

.accordion-item {
    border: 1px solid var(--si-border-color);
    border-radius: var(--si-border-radius) !important;
    margin-bottom: 0.75rem;
    background: var(--si-glass-bg);
}

.accordion-button {
    padding: 1rem 1rem;
    font-weight: 600;
    color: var(--si-heading-color);
    background: transparent;
    border: none;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        color: var(--si-primary);
        background: transparent;
        box-shadow: none !important;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    }

.accordion-body {
    color: var(--si-body-color);
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: transparent;
}

.accordion-button::after {
    width: var(--si-accordion-btn-icon-box-size);
    height: var(--si-accordion-btn-icon-box-size);
    background-position: center;
    background-color: transparent !important;
    transition: all .35s;
    border-radius: var(--si-accordion-btn-icon-box-border-radius);
}

.accordion-button:not(.collapsed):after {
    width: var(--si-accordion-btn-icon-box-size);
    height: var(--si-accordion-btn-icon-box-size);
    background-position: center;
    background-color: var(--si-faq-color) !important;
    transition: all .35s;
    border-radius: var(--si-accordion-btn-icon-box-border-radius);
}


@media (max-width: 768px) {
    .faq-contact-card {
        padding: 1.5rem;
    }

    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* ---------- 14. CTA ---------- */
.cta-section {
    background: var(--si-body-bg);
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
    filter: blur(80px);
}

.cta-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.cta-blob-1 {
    bottom: -100px;
    left: -100px;
    background: var(--si-primary);
}

.cta-blob-2 {
    top: -100px;
    right: -100px;
    background: var(--si-danger);
}

.cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--si-glass-bg);
    border: 1px solid var(--si-glass-border);
    backdrop-filter: blur(12px);;
    color: var(--si-body-color);
    margin-bottom: 1rem;
}

    .cta-badge i {
        color: var(--si-primary);
    }

.cta-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--si-heading-color);
    line-height: 1.15;
    margin-bottom: 1rem;
}

    .cta-heading span {
        color: var(--si-primary);
    }

.cta-description {
    font-size: 1.1rem;
    color: var(--si-body-color);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cta-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--si-box-shadow-lg);
    }

.cta-buttons .btn-primary {
    background: var(--si-primary);
    border-color: var(--si-primary);
    color: #fff;
}

.cta-buttons .btn-outline-dark {
    border: 1px solid var(--si-border-color);
    color: var(--si-heading-color);
    background: transparent;
}

    .cta-buttons .btn-outline-dark:hover {
        background: var(--si-primary);
        border-color: var(--si-primary);
        color: #fff;
    }

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

    .cta-trust span {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        background-color: rgb(238 247 255 / 55%);
        border: 1px solid var(--si-glass-border);
        backdrop-filter: blur(8px);
        font-size: 0.85rem;
        color: var(--si-body-color);
    }

[data-bs-theme="dark"] .cta-trust span {
    background-color: rgb(0 135 255 / 55%);
}

        .cta-trust span i {
            color: var(--si-success);
        }

@media (max-width: 768px) {
    .cta-trust {
        flex-direction: column;
        align-items: center;
    }

        .cta-trust span {
            width: 100%;
            justify-content: center;
        }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }
}

/* ---------- 15. TIMELINE ---------- */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 8px;
        background: linear-gradient(190deg, #ca0000 0%, #1373ad 100%) !important;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 4px;
        height: 0;
        transition: height 1.5s ease-out, opacity 1.5s ease-out;
    }

.timeline-container {
    position: relative;
    width: 50%;
    padding: 10px 24px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .timeline-container.left {
        left: 0;
    }

    .timeline-container.right {
        left: 50%;
    }

    .timeline-container.left:nth-child(1) {
        margin-top: 0;
    }

    .timeline-container.left:nth-child(3) {
        margin-top: -40px;
    }

    .timeline-container.left:nth-child(5) {
        margin-top: -40px;
    }

    .timeline-container.right:nth-child(2) {
        margin-top: -40px;
    }

    .timeline-container.right:nth-child(4) {
        margin-top: -40px;
    }

    .timeline-container.right:nth-child(6) {
        margin-top: -40px;
    }

    .timeline-container::before {
        content: "";
        position: absolute;
        top: 30px;
        width: 24px;
        height: 24px;
        background: var(--si-heading-color);
        border: 4px solid var(--si-primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 99999;
    }

    .timeline-container.left::before {
        left: 100%;
    }

    .timeline-container.right::before {
        left: 0%;
    }

.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline.show-line::after {
    height: 100%;
    opacity: 1;
}

.timeline.hide-line::after {
    height: 0;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
        transform: none;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-bottom: 24px;
    }

        .timeline-container.left:nth-child(1),
        .timeline-container.left:nth-child(3),
        .timeline-container.left:nth-child(5),
        .timeline-container.right:nth-child(2),
        .timeline-container.right:nth-child(4),
        .timeline-container.right:nth-child(6) {
            margin-top: 0;
        }

        .timeline-container.left::before,
        .timeline-container.right::before {
            left: 35px;
        }

        .timeline-container.left,
        .timeline-container.right {
            left: 0 !important;
        }
}

/* ---------- 16. TECH ECOSYSTEM ---------- */
.tech-ecosystem-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
}

[data-bs-theme="dark"] .tech-ecosystem-container {
    background: radial-gradient(circle at 70% 45%, rgba(99, 102, 241, 0.10), transparent 42%), linear-gradient(135deg, #0b131f, #080d17);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

#techEcosystemCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.ecosystem-glass-panel {
    position: absolute;
    width: 58%;
    height: 80%;
    top: 10%;
    right: 3%;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--si-glass-bg), transparent 70%);
    border: 1px solid rgba(99, 102, 241, 0.10);
    box-shadow: inset 0 0 80px rgba(99, 102, 241, 0.05);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .tech-ecosystem-container {
        height: 560px;
    }
}

@media (max-width: 767px) {
    .tech-ecosystem-container {
        height: 420px;
        border-radius: 22px;
    }

    .ecosystem-glass-panel {
        width: 90%;
        height: 90%;
        top: 5%;
        right: 5%;
    }
}

/* ---------- 17. DARK MODE OVERRIDES ---------- */
[data-bs-theme="dark"] .text-danger {
    color: #f87171 !important;
}

[data-bs-theme="dark"] .bg-light {
    background: var(--si-glass-bg) !important;
}

[data-bs-theme="dark"] .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.6);
}

    [data-bs-theme="dark"] .btn-outline-secondary:hover {
        background: var(--si-primary);
        border-color: var(--si-primary);
        color: #fff;
    }

[data-bs-theme="dark"] .cta-buttons .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.7);
}

    [data-bs-theme="dark"] .cta-buttons .btn-outline-dark:hover {
        background: var(--si-primary);
        border-color: var(--si-primary);
        color: #fff;
    }

[data-bs-theme="dark"] .testimonial-section .card blockquote p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ---------- 18. RESPONSIVE GLOBAL TWEAKS ---------- */
@media (max-width: 991px) {
    .section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0 !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.hero-section,
.about-section,
.why-us-section,
.process-section,
.industries-section,
.research-section,
.testimonial-section,
.faq-section,
.cta-section {
    max-width: 100%;
    overflow-x: clip;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

