.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.mg-bt-10 {
    margin-top: 4rem;
}

:root {
    --navy: #0d1b3e;
    --dark: #071126;
    --blue: #1a6de8;
    --cyan: #2fbcf7;
    --steel: #3a5a8c;
    --light: #e8f0fb;
    --white: #ffffff;
    --muted: #7a90b0;
    --grad: linear-gradient(135deg, #1a6de8 0%, #2fbcf7 100%);
    --grad-dark: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 100%);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow: 0 20px 60px rgba(26, 109, 232, 0.18);
    --radius: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 3px;
}

/* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(238 238 238);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26, 109, 232, 0.18);
    transition: background .4s, box-shadow .4s;
}

#mainNav.scrolled {
    background: rgb(238 238 238);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.navbar-toggler {
    border: 1px solid var(--blue);
    border-radius: 8px;
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a6de8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link-item {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgb(0 0 0 / 84%) !important;
    text-transform: uppercase;
    padding: 8px 14px !important;
    position: relative;
    transition: color .3s;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .3s;
}

.nav-link-item:hover {
    color: var(--cyan) !important;
}

.nav-link-item:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--grad);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 8px 22px !important;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: opacity .3s, transform .3s;
}

.nav-cta:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none;
}

/* ══════════════════════════════════════
       HERO SLIDER
    ══════════════════════════════════════ */
#heroSlider {
    margin-top: 76px;
}

.hero-slide {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 17, 38, .92) 0%, rgba(13, 27, 62, .78) 45%, rgba(26, 109, 232, .28) 100%);
}

.hero-slide .grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(26, 109, 232, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 109, 232, .06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 109, 232, .15);
    border: 1px solid rgba(47, 188, 247, .35);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 24px;
    font-family: var(--font-head);
    font-size: .9rem;
    letter-spacing: .12em;
    color: var(--cyan);
    text-transform: uppercase;
    animation: fadeDown .8s ease both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--white);
    animation: fadeUp .9s .15s ease both;
}

.hero-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .72);
    max-width: 710px;
    line-height: 1.7;
    margin: 20px 0 36px;
    animation: fadeUp .9s .3s ease both;
}

.hero-btns {
    animation: fadeUp .9s .45s ease both;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: var(--grad);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 34px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(26, 109, 232, .4);
    transition: transform .3s, box-shadow .3s;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(26, 109, 232, .55);
    color: var(--white);
}

.btn-outline-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    padding: 14px 34px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color .3s, background .3s;
}

.btn-outline-cta:hover {
    border-color: var(--cyan);
    background: rgba(47, 188, 247, .08);
    color: var(--cyan);
}

/* Slider controls */
.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 24px;
}

.carousel-control-next {
    right: 24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.ctrl-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(47, 188, 247, .45);
    background: rgba(7, 17, 38, .6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
    transition: background .3s, border-color .3s;
}

.ctrl-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.carousel-indicators {
    bottom: 24px;
}

.carousel-indicators button {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .3);
    border: none;
    margin: 0 4px;
    transition: background .3s, width .3s;
}

.carousel-indicators button.active {
    background: var(--cyan);
    width: 56px;
}

/* Stats bar */
.stats-bar {
    background: rgba(13, 27, 62, .95);
    border-top: 1px solid rgba(26, 109, 232, .2);
    border-bottom: 1px solid rgba(26, 109, 232, .2);
    padding: 28px 0;
}

.stat-item {
    text-align: center;
    padding: 8px 20px;
    border-right: 1px solid rgba(26, 109, 232, .2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: .82rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ══════════════════════════════════════
       SECTIONS COMMON
    ══════════════════════════════════════ */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(47, 188, 247, .1);
    border: 1px solid rgba(47, 188, 247, .25);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--grad);
    border-radius: 2px;
    margin: 16px 0 28px;
}

/* ══════════════════════════════════════
       WHO WE ARE
    ══════════════════════════════════════ */
#about {
    background: var(--dark);
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-wrap .img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--grad);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .05em;
    box-shadow: 0 8px 24px rgba(26, 109, 232, .45);
}

.about-img-wrap .img-badge small {
    display: block;
    font-size: .78rem;
    font-weight: 400;
    opacity: .85;
    letter-spacing: .1em;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 109, 232, .12);
}

.about-feature:last-child {
    border-bottom: none;
}

.about-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(26, 109, 232, .12);
    border: 1px solid rgba(26, 109, 232, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.3rem;
}

.about-feature h5 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════
       SERVICES
    ══════════════════════════════════════ */
#services {
    background: linear-gradient(180deg, #071126 0%, #0d1b3e 100%);
}

.service-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(26, 109, 232, .18);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    transition: transform .35s, border-color .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(26, 109, 232, .08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 24px 60px rgba(26, 109, 232, .22);
}

.service-card:hover::before {
    opacity: 1;
}

.service-num {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .18;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: opacity .35s;
}

.service-card:hover .service-num {
    opacity: .35;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 109, 232, .2), rgba(47, 188, 247, .1));
    border: 1px solid rgba(47, 188, 247, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--cyan);
    margin-bottom: 22px;
    transition: transform .35s;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.service-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.service-link {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    transition: gap .3s;
}

.service-link:hover {
    gap: 12px;
    color: var(--cyan);
}

/* ══════════════════════════════════════
       INDUSTRIES
    ══════════════════════════════════════ */
#industries {
    background: var(--dark);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 38, .15) 0%, rgba(7, 17, 38, .88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    transition: background .4s;
}

.industry-card:hover .overlay {
    background: linear-gradient(180deg, rgba(26, 109, 232, .25) 0%, rgba(7, 17, 38, .92) 100%);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--cyan);
}

.industry-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.industry-tag {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════ */
#cta {
    background: linear-gradient(135deg, #0d1b3e 0%, #0a2058 50%, #071126 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(26, 109, 232, .3), transparent 70%);
}

#cta .cta-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(26, 109, 232, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 109, 232, .05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
}

.cta-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .65);
    margin: 20px auto 40px;
    max-width: 540px;
    line-height: 1.7;
}

.cta-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(26, 109, 232, .25);
    border-radius: 14px;
    padding: 18px 26px;
    text-decoration: none;
    color: var(--white);
    transition: border-color .3s, background .3s, transform .3s;
}

.cta-contact-card:hover {
    border-color: var(--cyan);
    background: rgba(47, 188, 247, .08);
    transform: translateY(-3px);
    color: var(--white);
}

.cta-contact-card .icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-contact-card small {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cta-contact-card strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    letter-spacing: .03em;
}

/* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
footer {
    background: #050d1e;
    border-top: 1px solid rgba(26, 109, 232, .15);
    padding: 70px 0 0;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tagline {
    font-family: var(--font-head);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(26, 109, 232, .25);
    background: rgba(26, 109, 232, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .3s, color .3s, background .3s;
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(47, 188, 247, .1);
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(26, 109, 232, .25);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    font-size: .9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s;
}

.footer-links a::before {
    content: '›';
    color: var(--blue);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--cyan);
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-item .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(26, 109, 232, .12);
    border: 1px solid rgba(26, 109, 232, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a,
.contact-item p {
    font-size: .9rem;
    color: var(--muted);
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
    transition: color .3s;
}

.contact-item a:hover {
    color: var(--cyan);
}

.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 109, 232, .2);
    margin-top: 20px;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 220px;
    filter: saturate(.6) brightness(.7);
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(26, 109, 232, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
}

/* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

.reveal-d4 {
    transition-delay: .4s;
}

.reveal-d5 {
    transition-delay: .5s;
}

.reveal-d6 {
    transition-delay: .6s;
}

/* ══════════════════════════════════════
       BACK TO TOP
    ══════════════════════════════════════ */
#backTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26, 109, 232, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s, transform .4s;
    z-index: 999;
}

#backTop.show {
    opacity: 1;
    pointer-events: all;
}

#backTop:hover {
    transform: translateY(-4px);
}

/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
@media (max-width: 991px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 109, 232, .2);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }

    .hero-slide {
        min-height: 88vh;
    }

    .navbar-collapse {
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ABOUT HERO */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #071126 0%, #0d1b3e 100%);
}

.about-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.about-hero-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 25px;
}

.about-hero-image img,
.story-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* STORY */
.about-story {
    background: var(--dark);
}

/* MISSION & VISION */
.mission-vision {
    background: #0d1b3e;
}

.mv-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(26, 109, 232, .2);
    border-radius: var(--radius);
    padding: 40px;
    height: 100%;
    transition: .3s;
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* WHY US */
.why-us {
    background: var(--dark);
}

.why-card {
    text-align: center;
    padding: 35px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(26, 109, 232, .18);
    height: 100%;
}

.why-card i {
    font-size: 2.4rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
}

/* VALUES */
.company-values {
    background: linear-gradient(180deg, #071126, #0d1b3e);
}

.value-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(26, 109, 232, .18);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    height: 100%;
    transition: .3s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
}

.value-card h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    margin-bottom: 12px;
}



.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 20px;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card {
    overflow: hidden;
}

@media (max-width:768px) {
    .service-image {
        height: 200px;
    }
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(13, 110, 253, .1);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

#why-us .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

#workflow .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-title span {
    color: #0d6efd;
}

.section-lead {
    max-width: 800px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
}

/* ==========================
   WHY CHOOSE US
========================== */

#why-us {
    background: #ffffff;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, .15);
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #00c2ff);
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* ==========================
   BIM WORKFLOW
========================== */

#workflow {
    background: #f8fbff;
}

.workflow-wrapper {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.workflow-wrapper::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
            #0d6efd,
            #00c2ff);
}

.workflow-step {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #0d6efd,
            #00c2ff);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .25);
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    border: 1px solid #edf2f7;
    transition: .3s;
}

.step-content:hover {
    transform: translateX(8px);
}

.step-content h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #0f172a;
}

.step-content p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.7;
}

#why-us .feature-card h4 {
    color: #000;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px) {

    .section-title {
        font-size: 2rem;
    }

    .workflow-wrapper::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 14px;
    }

    .step-content {
        padding: 20px;
    }

    .feature-card {
        padding: 25px;
    }
}

#industry-expertise {
    background: #071126;
}

.industry-detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 35px;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.industry-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.industry-detail-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(13, 110, 253, .08);
    color: #0d6efd;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.industry-detail-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.industry-detail-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #334155;
    font-weight: 500;
}

.industry-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .industry-detail-card {
        padding: 25px;
    }

    .industry-detail-card h3 {
        font-size: 1.6rem;
    }

    .industry-detail-image {
        height: 250px;
    }
}

@media(max-width:768px) {

    .industry-detail-card {
        padding: 20px;
    }

    .industry-detail-image {
        height: 220px;
    }

    .industry-detail-card h3 {
        font-size: 1.35rem;
    }
}

#strategic-sectors {
    position: relative;
    padding: 120px 0;

    overflow: hidden;
}

/* #strategic-sectors::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    background: rgba(0, 170, 255, .06);
}

#strategic-sectors::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: rgba(0, 255, 200, .04);
} */

.section-header {
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    color: #7dd3fc;
    border: 1px solid rgba(125, 211, 252, .3);
    margin-bottom: 20px;
}

.section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.section-title span {
    color: #4fd1ff;
}

.section-lead {
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
}

.sector-timeline {
    position: relative;
}

.timeline-item {
    margin-bottom: 50px;
}

.timeline-year {
    color: #4fd1ff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.timeline-content {
    padding: 40px;
}

.sector-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(79, 209, 255, .12);
    color: #7dd3fc;
    margin-bottom: 20px;
}

.timeline-content h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.timeline-content p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
}

.sector-metrics {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.metric {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px 25px;
    color: rgba(255, 255, 255, .7);
}

.metric span {
    display: block;
    color: #4fd1ff;
    font-size: 1.5rem;
    font-weight: 800;
}

.portfolio-summary {
    margin-top: 80px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.summary-item {
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, .04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.summary-item h3 {
    color: #4fd1ff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.summary-item p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

@media(max-width:991px) {

    .timeline-card {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.3rem;
    }

}

@media(max-width:768px) {

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        padding: 25px;
    }

    .sector-metrics {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.9rem;
    }

}



#contact-showcase {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    /* display:inline-block;
    padding:10px 20px;
    background:#e0f2fe;
    color:#0284c7;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px; */
}

.section-title {
    /* font-size:3rem;
    font-weight:800;
    color:#0f172a; */
}

.section-title span {
    color: #0284c7;
}

.section-lead {
    max-width: 800px;
    margin: auto;
    color: #64748b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgb(190 190 190 / 11%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card span {
    color: #a9a9a9;
    display: block;
    margin-bottom: 5px;
}

.contact-card h4 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.office-note {
    background: #0f172a;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 10px;
}

.office-note h5 {
    margin-bottom: 12px;
    font-weight: 700;
}

.office-note p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 650px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 5;
    background: rgba(15, 23, 42, .92);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    max-width: 320px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, .15);
    color: #38bdf8;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.map-overlay h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 450px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 94%;
    }
}

@media(max-width:768px) {

    #contact-showcase {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .map-overlay {
        left: 15px;
        right: 15px;
        top: 15px;
        max-width: none;
    }
}









#leadership-experience{
    padding:120px 0;
    background:#ffffff;
}

/* .section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#e0f2fe;
    color:#0284c7;
    font-weight:600;
    margin-bottom:20px;
} */

#leadership-experience .section-title{
    font-size:3rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
} 

.section-title span{
    color:#0284c7;
}

.section-description{
    color:#64748b;
    line-height:1.9;
    margin-bottom:35px;
}

.experience-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.experience-item .icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:16px;
    background:linear-gradient(135deg,#0284c7,#38bdf8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.experience-item h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:8px;
    color: #000;
}

.experience-item p{
    color:#64748b;
    margin:0;
}

.leadership-card{
    background:#0f172a;
    color:#fff;
    border-radius:30px;
    padding:40px;
    height:100%;
}

.badge-label{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:rgba(56,189,248,.15);
    color:#38bdf8;
    margin-bottom:20px;
}

.card-header h3{
    font-weight:700;
    margin-bottom:30px;
}

.credential-block{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.credential-item{
    background:rgba(255,255,255,.05);
    border-radius:18px;
    padding:20px;
}

.credential-title{
    display:block;
    color:rgba(255,255,255,.6);
    margin-bottom:8px;
    font-size:14px;
}

.credential-item h4{
    margin:0;
    color:#38bdf8;
    font-weight:700;
}

.institution-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
    background:rgba(255,255,255,.05);
    padding:20px;
    border-radius:20px;
}

.institution-box i{
    font-size:28px;
    color:#38bdf8;
}

.institution-box h5{
    margin-bottom:8px;
}

.institution-box p{
    margin:0;
    color:rgba(255,255,255,.7);
}

.stat-card{
    text-align:center;
    background:#f8fafc;
    border-radius:24px;
    padding:35px;
    margin-top:20px;
}

.stat-card h2{
    font-size:3rem;
    font-weight:800;
    color:#0284c7;
    margin-bottom:10px;
}

.stat-card p{
    margin:0;
    color:#64748b;
    font-weight:500;
}

@media(max-width:991px){

    .section-title{
        font-size:2.3rem;
    }

    .credential-block{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    #leadership-experience{
        padding:80px 0;
    }

    .section-title{
        font-size:1.9rem;
    }

    .leadership-card{
        padding:25px;
    }

}