:root {
    --navy: #0B132B;
    --charcoal: #111827;
    --cyan: #f5c2ce;
    --teal: #e97790;
    --white: #FFFFFF;
    --light: #F5F7FA;
    --soft: #EEF1F6;
    --gray-text: #9CA3AF;
    --text-dark: #1a2340;
    --text-mid: #4B5563;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 212, 255, 0.15);
    --glass-bg-light: rgba(0, 212, 255, 0.06);
    --glass-border-light: rgba(0, 180, 220, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

main {
    width: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 2px;
}

/* ── SHARED UTILITIES ── */
.cyan {
    color: var(--cyan);
}

.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, .35);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 1.2rem;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    line-height: 1.15;
}

.section-sub {
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}

/* Buttons */
.btn-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-size: .95rem;
    letter-spacing: .03em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, .45);
    color: #000;
}

.btn-outline-cyan {
    background: transparent;
    color: var(--cyan);
    font-weight: 600;
    border: 1.5px solid var(--cyan);
    border-radius: 50px;
    padding: 13px 32px;
    font-size: .95rem;
    letter-spacing: .03em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-cyan:hover {
    background: var(--cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, .3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    border: 1.5px solid var(--navy);
    border-radius: 50px;
    padding: 13px 32px;
    font-size: .95rem;
    letter-spacing: .03em;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

section {
    padding: 100px 0;
}

/* ════════════════════════════════
       DARK SECTION THEME
    ════════════════════════════════ */
.sec-dark {
    background: var(--navy);
    color: var(--white);
}

.sec-darker {
    background: #080e1c;
    color: var(--white);
}

.sec-charcoal {
    background: var(--charcoal);
    color: var(--white);
}

.sec-dark .section-sub,
.sec-darker .section-sub,
.sec-charcoal .section-sub {
    color: var(--gray-text);
}

/* ════════════════════════════════
       LIGHT SECTION THEME
    ════════════════════════════════ */
.sec-light {
    background: var(--light);
    color: var(--text-dark);
}

.sec-white {
    background: var(--white);
    color: var(--text-dark);
}

.sec-light .section-sub,
.sec-white .section-sub {
    color: var(--text-mid);
}

.sec-light .section-heading,
.sec-white .section-heading {
    color: var(--text-dark);
}

.sec-light .section-label,
.sec-white .section-label {
    color: #0099BB;
    border-color: rgba(0, 153, 187, .4);
}

.sec-light .cyan,
.sec-white .cyan {
    color: #e2981a;
}

/* ════════════════════════════════
       HEADER
    ════════════════════════════════ */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .4s ease;
    background: transparent;
}

#mainNav.scrolled {
    background: rgb(0 0 0 / 96%);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(0, 212, 255, .1);
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    font-weight: 900;
}

.nav-logo span {
    color: var(--cyan);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 8px 14px !important;
    transition: color .2s;
}

#mainNav .nav-link:hover {
    color: var(--cyan) !important;
}

.navbar-toggler {
    border: 1px solid rgba(0, 212, 255, .4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ════════════════════════════════
       HERO
    ════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    padding: 50px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(0 0 0 / 97%) 40%, rgba(11, 19, 43, .7) 100%);
}

#particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1.5px;
    background: var(--cyan);
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5.5vw, 3.2rem);
    line-height: 1.08;
    color: #fff;
}

.hero-heading .highlight {
    background: linear-gradient(90deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .65);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orb {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, .18), transparent 70%);
    border: 1px solid rgba(0, 212, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatOrb 6s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

.hero-orb-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, .22) 0%, rgba(11, 19, 43, .6) 70%);
    border: 1px solid rgba(0, 212, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orb-icon {
    font-size: 5rem;
    color: var(--cyan);
    opacity: .85;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 212, 255, .2);
    animation: spin 20s linear infinite;
}

.orbit-1 {
    width: 340px;
    height: 340px;
}

.orbit-2 {
    width: 490px;
    height: 490px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--cyan);
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-badge {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    white-space: nowrap;
    color: #fff;
}

.hero-badge-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #000;
}

.badge-1 {
    top: 15%;
    right: 5%;
    animation: floatBadge 4s ease-in-out infinite
}

.badge-2 {
    bottom: 18%;
    left: 5%;
    animation: floatBadge 4s ease-in-out infinite .8s
}

.badge-3 {
    top: 50%;
    right: 2%;
    animation: floatBadge 4s ease-in-out infinite 1.6s
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    letter-spacing: .12em;
    color: var(--gray-text);
    text-transform: uppercase;
    z-index: 2;
    animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

/* ════════════════════════════════
       ABOUT  (LIGHT)
    ════════════════════════════════ */
.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);
}

.about-img-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: #000;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 12px;
    padding: 16px 22px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, .4);
}

.about-img-badge .num {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    display: block;
    line-height: 1;
}

/* light feature checks */
.feature-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.feature-check:last-child {
    border-bottom: none;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 212, 255, .12);
    border: 1px solid rgba(0, 180, 220, .4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #0099BB;
    flex-shrink: 0;
}

.feature-check span {
    font-size: .95rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* ════════════════════════════════
       STATS  (DARK gradient)
    ════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, #080e1c 0%, #0B132B 100%);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 212, 255, .1);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, .06), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, .35);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    background: linear-gradient(90deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: .85rem;
    color: var(--gray-text);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: .05em;
}

/* ════════════════════════════════
       SOLUTIONS  (LIGHT)
    ════════════════════════════════ */
.solution-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: all .4s;
    position: relative;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 220, .4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12), 0 0 30px rgba(0, 212, 255, .1);
}

.solution-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.solution-body {
    padding: 22px;
}

.solution-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 14px;
}

.solution-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.solution-card p {
    font-size: .83rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.learn-link {
    font-size: .8rem;
    color: #0099BB;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.learn-link i {
    transition: transform .2s;
}

.solution-card:hover .learn-link i {
    transform: translateX(4px);
}

/* ════════════════════════════════
       SERVICES  (DARK)
    ════════════════════════════════ */
.service-card {
    padding: 42px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    transition: all .4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--teal));
    transform: scaleX(0);
    transition: transform .4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, .2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 212, 255, .08);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.service-card p {
    font-size: .9rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ════════════════════════════════
       WHY CHOOSE US  (LIGHT)
    ════════════════════════════════ */
.why-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .14);
}

.why-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, .12), transparent);
    z-index: 1;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.why-feature:last-child {
    border-bottom: none;
}

.why-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature-text h6 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.why-feature-text p {
    font-size: .82rem;
    color: var(--text-mid);
    margin: 0;
}

/* ════════════════════════════════
       INDUSTRIES  (DARK)
    ════════════════════════════════ */
.industry-card {
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    transition: all .3s;
    cursor: pointer;
}

.industry-card:hover {
    background: rgba(0, 212, 255, .08);
    border-color: rgba(0, 212, 255, .35);
    transform: translateY(-6px);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-card h6 {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

/* ════════════════════════════════
       PROJECTS  (LIGHT)
    ════════════════════════════════ */
.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
}

.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.project-card.tall img {
    height: 380px;
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 19, 43, .95) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all .4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-type {
    font-size: .7rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.project-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.project-loc {
    font-size: .78rem;
    color: var(--gray-text);
    margin-top: 3px;
}

/* ════════════════════════════════
       PARTNERS  (DARK)
    ════════════════════════════════ */
.partners-track-wrap {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: slideBrands 28s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes slideBrands {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.brand-item {
    min-width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .05em;
    transition: color .3s;
    cursor: default;
    border-right: 1px solid rgba(255, 255, 255, .05);
}

.brand-item img {
    width: 100%;
    border-radius: 12px;
}

.brand-item:hover {
    color: var(--cyan);
}

/* ════════════════════════════════
       PROCESS  (LIGHT)
    ════════════════════════════════ */
.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #000;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 212, 255, .35);
}

.process-step h6 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: .8rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.process-line {
    display: none;
}

@media (min-width:992px) {
    .process-line {
        display: block;
        position: absolute;
        top: 31px;
        left: calc(50% + 32px);
        width: calc(100% - 64px);
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 180, 220, .5), rgba(0, 180, 220, .1));
    }
}

/* process card wrapper for light bg */
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: all .3s;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 220, .4);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

/* ════════════════════════════════
       TESTIMONIALS  (DARK)
    ════════════════════════════════ */
.testimonial-card {
    padding: 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 212, 255, .1);
    backdrop-filter: blur(10px);
    transition: all .3s;
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, .3);
    transform: translateY(-4px);
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: .9rem;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: .95rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.client-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
}

.client-role {
    font-size: .78rem;
    color: var(--gray-text);
}

/* ════════════════════════════════
       CTA  (DARK gradient)
    ════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #080e1c 0%, #0B132B 50%, #0f1535 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, .08), transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, .06), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* ════════════════════════════════
       CONTACT  (LIGHT)
    ════════════════════════════════ */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 180, 220, .3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099BB;
    font-size: .9rem;
    flex-shrink: 0;
}

.contact-info-item .label {
    font-size: .75rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-info-item .value {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2px;
}

.map-placeholder {
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    background: #e8edf4;
    border: 1px solid #d1d9e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: .85rem;
}

.form-control-light {
    background: #fff;
    border: 1.5px solid #d1d9e6;
    color: var(--text-dark);
    border-radius: 10px;
    padding: 13px 18px;
    font-size: .9rem;
    transition: border-color .3s;
}

.form-control-light:focus {
    background: #fff;
    border-color: var(--cyan);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, .12);
    outline: none;
}

.form-control-light::placeholder {
    color: #9CA3AF;
}

textarea.form-control-light {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

/* ════════════════════════════════
       FOOTER  (DARK)
    ════════════════════════════════ */
.footer {
    background: #060b17;
    border-top: 1px solid rgba(0, 212, 255, .1);
    padding: 80px 0 0;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #000;
    font-weight: 900;
}

.footer-about {
    font-size: .85rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.footer-heading {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: .88rem;
    color: var(--gray-text);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--cyan);
    display: block;
    opacity: 0.5;
    transition: opacity .2s;
}

.footer-links.contact a::before {
    content: none;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: .82rem;
    color: var(--gray-text);
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-size: .85rem;
    text-decoration: none;
    transition: all .3s;
}

.social-icon:hover {
    background: rgba(0, 212, 255, .15);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

/* ════════════════════════════════
       FADE ANIMATIONS
    ════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width:991px) {
    .hero-visual {
        display: none;
    }

    .about-img-badge {
        right: 10px;
    }

    .why-img-wrap {
        margin-bottom: 40px;
    }
}

@media (max-width:576px) {
    section {
        padding: 60px 0;
    }

    #mainNav {
        background-color: rgb(0 0 0 / 96%) !important;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

/* Solutions mega dropdown - added only menu dropdown */
#mainNav .nav-has-mega {
    position: relative;
}

#mainNav .solution-mega-menu {
    position: absolute;
    top: calc(60% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(490px, 92vw);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 0 0 28px 28px;
    padding: 15px 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .20);
    opacity: 0;
    visibility: hidden;
    /* pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease; */
    z-index: 1100;
}

#mainNav .nav-has-mega:hover .solution-mega-menu,
#mainNav .nav-has-mega:focus-within .solution-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-40%) translateY(0);
        border-radius: 10px;
}

#mainNav .solution-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 54px;
}

#mainNav .solution-mega-grid a {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #172033;
    text-decoration: none;
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: -.01em;
    padding: 8px 0;
    transition: color .2s ease, transform .2s ease;
}

#mainNav .solution-mega-grid a:hover {
    color: #e97790;
    transform: translateX(4px);
}

#mainNav .solution-mega-grid span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #f5c2ce;
    color: #050b16;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: background .2s ease, transform .2s ease;
}

#mainNav .solution-mega-grid a:hover span {
    background: #e97790;
    transform: scale(1.06);
}

@media(max-width:991px) {
    #mainNav .nav-has-mega {
        position: static;
    }

    #mainNav .solution-mega-menu {
        position: static;
        transform: none !important;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 16px;
        margin-top: 8px;
        padding: 14px;
        background: rgba(255, 255, 255, .06);
        border-color: rgba(255, 255, 255, .10);
    }

    #mainNav .solution-mega-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    #mainNav .solution-mega-grid a {
        color: #fff;
        font-size: .9rem;
        padding: 8px;
    }

    #mainNav .solution-mega-grid span {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }


    .nav-logo img{
            width: 120px !important; 
    }
}



















html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
}


.overflow-safe-section {
    overflow-x: hidden;
    width: 100%;
}