/* ---- Variables ---- */
:root {
    --navy: #0b2545;
    --navy-2: #13395e;
    --navy-3: #1e5080;
    --cyan: #00c6ff;
    --cyan-2: #0072ff;
    --cyan-light: #7dd8f7;
    --cyan-dark: #0057b8;
    --white: #ffffff;
    --off: #f0f6fc;
    --border: #dce8f5;
    --text: #0b2545;
    --text-2: #3a5c7e;
    --text-3: #7a9ab8;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 2px 12px rgba(11,37,69,0.08);
    --shadow-md: 0 8px 32px rgba(11,37,69,0.13);
    --shadow-lg: 0 20px 60px rgba(11,37,69,0.18);
    --r: 14px;
    --r-sm: 8px;
    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 72px;
    --font-d: 'Outfit', sans-serif;
    --font-b: 'Plus Jakarta Sans', sans-serif;
    --grad: linear-gradient(135deg, var(--cyan), var(--cyan-2));
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-d);
    font-weight: 700;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

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

main {
    padding-top: var(--nav-h);
}

/* =============================================
   LOADER
   ============================================= */
.blazor-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #060e1a 0%, #0b2545 60%, #0d3366 100%);
    gap: 16px;
}

.loader-logo {
    animation: loaderSpin 2s linear infinite;
}

@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 2px;
    animation: loaderFill 1.8s ease-in-out infinite;
}

@keyframes loaderFill {
    0% {
        width: 0%;
    }

    60% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal:nth-child(2) {
        transition-delay: 0.1s;
    }

    .reveal:nth-child(3) {
        transition-delay: 0.2s;
    }

    .reveal:nth-child(4) {
        transition-delay: 0.3s;
    }

    .reveal:nth-child(5) {
        transition-delay: 0.4s;
    }

    .reveal:nth-child(6) {
        transition-delay: 0.5s;
    }

/* =============================================
   NAVBAR — FIXED HORIZONTAL TOP BAR
   Key fixes:
   1. display:block not flex-column (was showing as sidebar)
   2. Always-visible dark gradient base so logo/links readable
   3. nav-links-desktop ALWAYS flex on desktop (not hidden)
   4. Hamburger only shows below 900px
   ============================================= */

/* Strip ALL Bootstrap navbar defaults that interfere */
.skb-navbar,
.skb-navbar * {
    box-sizing: border-box;
}

.skb-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    /* Always-visible dark gradient — readable against any hero image */
    background: darkslategray;
    /* Override Bootstrap's flex-column and padding that creates sidebar */
    display: block !important;
    padding: 0 !important;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

    .skb-navbar.scrolled {
        background: darkslategray;
        background-color: darkslategray;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 2px 24px rgba(0,0,0,0.35);
    }

/* The actual horizontal row inside the navbar */
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    height: var(--nav-h);
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Logo */
.nav-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-mark {
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.nav-logo-main {
    font-family: var(--font-d);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.nav-logo-sub {
    font-size: 0.62rem;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Desktop nav links — ALWAYS a horizontal row on desktop */
.nav-links-desktop {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px;
}

.nav-item-link {
    font-family: var(--font-b);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cyan);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px;
    transition: all var(--t);
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    white-space: nowrap;
}

    .nav-item-link i {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .nav-item-link:hover {
        color: var(--white);
        background: rgba(0,198,255,0.18);
        text-shadow: none;
    }

    .nav-item-link.active {
        color: var(--white);
        background: rgba(0,198,255,0.18);
        text-shadow: none;
    }

.nav-cta-btn {
    font-family: var(--font-d);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--grad);
    padding: 10px 22px;
    border-radius: var(--r-sm);
    margin-left: 12px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px;
    transition: all var(--t);
    box-shadow: 0 4px 18px rgba(0,114,255,0.35);
    white-space: nowrap;
}

    .nav-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,114,255,0.5);
    }

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all var(--t);
        filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    }

    .nav-hamburger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* Mobile dropdown — hidden by default, shown when .is-open */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(0,198,255,0.15);
    background: rgba(11, 37, 69, 0.98) !important;
    background-color: rgba(11, 37, 69, 0.98) !important;
}

    .nav-mobile-menu.is-open {
        display: flex;
    }

.nav-mobile-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cyan);
    padding: 11px 14px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--t);
}

    .nav-mobile-link i {
        font-size: 0.85rem;
    }

    .nav-mobile-link:hover,
    .nav-mobile-link.active {
        color: var(--white);
        background: rgba(0,198,255,0.12);
    }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-wrap {
    position: relative;
}

.carousel-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,20,45,0.88) 0%, rgba(11,37,69,0.75) 50%, rgba(0,70,130,0.55) 100%);
}

.carousel-overlay-teal {
    background: linear-gradient(135deg, rgba(0,50,80,0.9) 0%, rgba(0,100,140,0.72) 50%, rgba(0,180,216,0.3) 100%);
}

.carousel-overlay-green {
    background: linear-gradient(135deg, rgba(5,40,30,0.88) 0%, rgba(0,80,60,0.72) 50%, rgba(0,160,100,0.35) 100%);
}

.carousel-caption-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* Carousel text animations */
.carousel-item.active .animate-badge {
    animation: fadeInDown 0.7s 0.2s both;
}

.carousel-item.active .animate-h1 {
    animation: fadeInUp 0.8s 0.3s both;
}

.carousel-item.active .animate-sub {
    animation: fadeInUp 0.8s 0.45s both;
}

.carousel-item.active .animate-btns {
    animation: fadeInUp 0.8s 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,198,255,0.12);
    border: 1px solid rgba(0,198,255,0.3);
    color: var(--cyan-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-d);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.05;
}

.hero-gradient-text {
    background: linear-gradient(90deg, #00c6ff, #7dd8f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-fill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--grad);
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    box-shadow: 0 6px 24px rgba(0,114,255,0.4);
    transition: all var(--t);
}

    .btn-hero-fill:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(0,114,255,0.55);
    }

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all var(--t);
    backdrop-filter: blur(8px);
}

    .btn-hero-ghost:hover {
        background: rgba(255,255,255,0.15);
        border-color: var(--cyan);
        color: var(--cyan);
    }

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    border: none;
    transition: all var(--t);
}

.carousel-indicators .active {
    background: var(--cyan);
    width: 40px;
}

/* Scroll arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    z-index: 10;
    animation: bounce 2.4s ease-in-out infinite;
    transition: color var(--t);
}

    .hero-scroll-arrow:hover {
        color: var(--cyan);
    }

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--navy);
    padding: 0;
    border-bottom: 1px solid rgba(0,198,255,0.1);
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 48px;
    gap: 4px;
}

    .stat-block .counter-val {
        font-family: var(--font-d);
        font-size: 2rem;
        font-weight: 900;
        color: var(--cyan);
        line-height: 1;
    }

.stat-desc {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.skb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cyan-2);
    background: rgba(0,114,255,0.08);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.light-eyebrow {
    color: var(--cyan-light);
    background: rgba(0,198,255,0.1);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.white-title {
    color: var(--white);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 14px;
}

.section-body {
    font-size: 0.97rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 14px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-sub {
    font-size: 1.02rem;
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta-center {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   SHARED BUTTONS
   ============================================= */
.btn-primary-skb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    box-shadow: 0 4px 18px rgba(0,114,255,0.3);
    transition: all var(--t);
    border: none;
    cursor: pointer;
}

    .btn-primary-skb:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,114,255,0.45);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 26px;
    border-radius: var(--r-sm);
    transition: all var(--t);
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--cyan);
        color: var(--cyan);
    }

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-img-col {
    position: relative;
}

.intro-img-stack {
    position: relative;
}

.img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
}

.img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--r);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.img-badge-float {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    max-width: 220px;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
}

    .img-badge-float i {
        color: var(--cyan);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,114,255,0.06);
    border: 1px solid rgba(0,114,255,0.15);
    color: var(--cyan-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
}

    .pill i {
        color: var(--success);
        font-size: 0.78rem;
    }

/* =============================================
   SERVICES CARDS (Home)
   ============================================= */
.services-section {
    padding: 100px 0;
    background: var(--off);
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    cursor: default;
}

    .svc-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0,198,255,0.25);
    }

        .svc-card:hover .svc-icon-ring {
            background: var(--grad);
            color: var(--white);
        }

.svc-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 20px;
    background: rgba(0,114,255,0.08);
    color: var(--cyan-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--t);
}

.svc-card h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .svc-tags span {
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--cyan-dark);
        background: rgba(0,114,255,0.06);
        border: 1px solid rgba(0,114,255,0.12);
        padding: 3px 10px;
        border-radius: 100px;
    }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #0d3880 100%);
    position: relative;
    overflow: hidden;
}

.why-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(0,198,255,0.06);
    box-shadow: 0 0 0 100px rgba(0,198,255,0.03), 0 0 0 200px rgba(0,198,255,0.02);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: all var(--t);
}

    .why-card:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(0,198,255,0.25);
        transform: translateY(-4px);
    }

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0,198,255,0.15), rgba(0,114,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--cyan);
}

.why-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* =============================================
   PROJECTS IMAGE CARDS
   ============================================= */
.projects-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.projects-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.proj-img-card {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

    .proj-img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .proj-img-card:hover img {
        transform: scale(1.06);
    }

.proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7,18,40,0.92) 0%, rgba(7,18,40,0.4) 50%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all var(--t);
}

.proj-img-card:hover .proj-overlay {
    background: linear-gradient(0deg, rgba(7,18,40,0.95) 0%, rgba(7,18,40,0.6) 60%, rgba(7,18,40,0.2) 100%);
}

.proj-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: rgba(0,198,255,0.15);
    border: 1px solid rgba(0,198,255,0.3);
    color: var(--cyan-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.proj-tag-green {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.3);
    color: #6ee7b7;
}

.proj-overlay h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.proj-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.proj-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 1px solid transparent;
    transition: all var(--t);
    width: fit-content;
}

    .proj-link:hover {
        border-color: var(--cyan);
        gap: 10px;
    }

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section {
    padding: 100px 0;
    background: var(--off);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--t);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.team-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .team-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--t);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11,37,69,0.8);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--t);
    backdrop-filter: blur(8px);
}

    .team-social a:hover {
        background: var(--cyan-2);
    }

.team-info {
    padding: 24px 24px 28px;
}

    .team-info h3 {
        font-size: 1.05rem;
        color: var(--text);
        margin-bottom: 6px;
    }

.team-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan-2);
    margin-bottom: 14px;
}

    .team-role i {
        font-size: 0.72rem;
    }

.team-info p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.65;
}

.director-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .director-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.84rem;
        color: var(--text-2);
    }

        .director-list li i {
            color: var(--cyan-2);
            font-size: 0.78rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

/* =============================================
   PARTNER STRIP
   ============================================= */
.partner-strip {
    background: linear-gradient(135deg, #040d1f 0%, var(--navy) 60%, #0a2e5a 100%);
    padding: 64px 0;
    border-top: 1px solid rgba(0,198,255,0.1);
    border-bottom: 1px solid rgba(0,198,255,0.1);
}

.partner-strip-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.partner-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 8px;
}

.partner-strip-text {
    flex: 1;
}

    .partner-strip-text h3 {
        font-size: 1.4rem;
        color: var(--white);
        margin-bottom: 10px;
    }

    .partner-strip-text p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.7;
    }

.partner-strip-stats {
    display: flex;
    gap: 36px;
}

.pss {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .pss strong {
        font-family: var(--font-d);
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--cyan);
    }

    .pss span {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b2545, #0057b8, #0072ff);
}

    .cta-banner-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    }

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
}

.cta-banner-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-banner-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto 36px;
}

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

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all var(--t);
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: var(--r-sm);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all var(--t);
}

    .btn-cta-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
    }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.inner-hero {
    position: relative;
    padding: 130px 28px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,16,38,0.92) 0%, rgba(11,37,69,0.82) 50%, rgba(0,80,140,0.65) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

    .inner-breadcrumb a {
        color: rgba(255,255,255,0.4);
        transition: color var(--t);
    }

        .inner-breadcrumb a:hover {
            color: var(--cyan-light);
        }

    .inner-breadcrumb i {
        font-size: 0.65rem;
    }

    .inner-breadcrumb span {
        color: rgba(255,255,255,0.6);
    }

.inner-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 14px;
}

.inner-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-statement {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
}

.about-img-overlay-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--grad);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--r-sm);
    margin-top: -24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0,114,255,0.4);
}

    .about-img-overlay-card i {
        font-size: 1.6rem;
    }

    .about-img-overlay-card strong {
        display: block;
        font-weight: 800;
        font-size: 0.95rem;
    }

    .about-img-overlay-card span {
        font-size: 0.75rem;
        opacity: 0.8;
    }

.about-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.aib {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-2);
}

    .aib i {
        color: var(--cyan-2);
    }

/* Vision Mission */
.vm-section {
    padding: 100px 0;
    background: var(--navy);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.vm-card-new {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.vm-img {
    position: relative;
    height: 260px;
}

    .vm-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vm-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,37,69,0.65);
}

.vm-content {
    padding: 32px 32px 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: none;
    border-radius: 0 0 var(--r) var(--r);
}

.vm-icon-new {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.vm-content h3 {
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 12px;
}

.vm-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

.about-partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.partner-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
}

.partner-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.pig {
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .pig strong {
        font-family: var(--font-d);
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--cyan);
    }

    .pig span {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.45);
    }

/* =============================================
   SERVICES FULL PAGE
   ============================================= */
.services-full-page {
    padding: 80px 0 100px;
    background: var(--white);
}

.svc-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.svc-wide {
    grid-column: 1 / -1;
}

.svc-full-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    position: relative;
}

    .svc-full-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0,198,255,0.2);
    }

        .svc-full-card:hover .sfc-icon-big {
            background: var(--grad);
            color: var(--white);
        }

.highlight-card {
    border-color: rgba(0,114,255,0.2);
    background: linear-gradient(135deg, rgba(0,198,255,0.03), rgba(0,114,255,0.02));
}

.sfc-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.sfc-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--cyan-2);
    background: rgba(0,114,255,0.08);
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 4px;
}

.sfc-icon-big {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(0,114,255,0.08);
    color: var(--cyan-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--t);
}

.svc-full-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    flex: 1;
    padding-top: 4px;
}

.svc-full-card p {
    font-size: 0.91rem;
    color: var(--text-2);
    line-height: 1.78;
    margin-bottom: 18px;
}

.sfc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .sfc-features span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--success);
    }

    .sfc-features i {
        font-size: 0.75rem;
    }

.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    color: #059669;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.pulse-dot {
    font-size: 0.5rem;
    color: #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* =============================================
   PROJECTS FULL PAGE
   ============================================= */
.projects-full-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.project-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.project-alt {
    direction: rtl;
}

    .project-alt > * {
        direction: ltr;
    }

.pdc-img {
    position: relative;
    min-height: 480px;
}

    .pdc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pdc-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11,37,69,0.85);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--r-sm);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(8px);
}

    .pdc-img-label i {
        color: var(--cyan);
    }

.pdc-content {
    padding: 48px 44px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pdc-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--cyan-2);
    background: rgba(0,114,255,0.08);
    display: inline-block;
    padding: 4px 13px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pdc-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--text);
    margin-bottom: 8px;
}

.pdc-location {
    font-size: 0.83rem;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.pdc-content p {
    font-size: 0.93rem;
    color: var(--text-2);
    line-height: 1.78;
    margin-bottom: 12px;
}

.pdc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.pdc-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px;
    background: var(--off);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}

.pdc-val {
    font-family: var(--font-d);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cyan-2);
}

.pdc-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.highlight-pdc {
    background: rgba(0,198,255,0.07);
    border-color: rgba(0,198,255,0.2);
}

    .highlight-pdc .pdc-val {
        color: var(--cyan);
    }

.pdc-quote {
    padding: 18px 20px;
    border-left: 3px solid var(--cyan);
    background: rgba(0,114,255,0.04);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 12px 0;
}

    .pdc-quote p {
        font-style: italic;
        font-size: 0.88rem;
        color: var(--text-2);
        margin-bottom: 8px;
    }

    .pdc-quote cite {
        font-size: 0.78rem;
        color: var(--text-3);
        font-weight: 600;
    }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-section {
    padding: 80px 0 100px;
    background: var(--off);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.contact-form-card-new {
    background: var(--white);
    border-radius: var(--r);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.cfc-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.cfc-header-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--grad);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cfc-header h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 4px;
}

.cfc-header p {
    font-size: 0.9rem;
    color: var(--text-2);
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .cf-field label {
        font-size: 0.79rem;
        font-weight: 700;
        color: var(--text);
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }

.req {
    color: var(--danger);
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-icon-top {
    top: 16px;
    transform: none;
}

.textarea-wrap .input-icon {
    top: 16px;
    transform: none;
}

.skb-input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-b);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--t);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

    .skb-input:focus {
        border-color: var(--cyan-2);
        box-shadow: 0 0 0 3px rgba(0,114,255,0.1);
    }

    .skb-input.error {
        border-color: var(--danger);
    }

.skb-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 13px;
}

.skb-select {
    cursor: pointer;
}

.err-msg {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--danger);
    font-weight: 500;
}

.btn-submit-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad);
    color: var(--white);
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 18px rgba(0,114,255,0.3);
    transition: all var(--t);
}

    .btn-submit-new:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,114,255,0.45);
    }

.success-state {
    text-align: center;
    padding: 40px 20px;
}

.ss-icon {
    font-size: 3.5rem;
    color: var(--success);
    margin-bottom: 16px;
}

.success-state h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 10px;
}

.success-state p {
    font-size: 0.93rem;
    color: var(--text-2);
}

.contact-map-img {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 24px;
}

    .contact-map-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.cmap-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(11,37,69,0.85), transparent);
    padding: 20px 18px;
}

.cmap-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
}

    .cmap-label i {
        color: var(--cyan);
    }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.cil-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}

.cil-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,114,255,0.08);
    color: var(--cyan-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.cil-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    margin-bottom: 3px;
}

.cil-item p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.55;
}

.cil-item a {
    color: var(--cyan-dark);
    transition: color var(--t);
}

    .cil-item a:hover {
        color: var(--navy);
    }

.demo-highlight-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 18px;
    background: linear-gradient(135deg, rgba(0,198,255,0.06), rgba(0,114,255,0.04));
    border: 1px solid rgba(0,114,255,0.18);
    border-radius: var(--r-sm);
}

.dhb-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--grad);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.demo-highlight-box strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.demo-highlight-box p {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 8px !important;
}

.mt-3 {
    margin-top: 16px !important;
}

.mb-3 {
    margin-bottom: 16px !important;
}

/* =============================================
   FOOTER
   ============================================= */
.skb-footer-new {
    background: #060e1a;
    color: rgba(255,255,255,0.65);
}

.sfn-main {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sfn-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 52px;
}

.sfn-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.sfn-logo-main {
    display: block;
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.sfn-logo-sub {
    display: block;
    font-size: 0.65rem;
    color: rgba(0,198,255,0.6);
}

.sfn-desc {
    font-size: 0.87rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.42);
    margin-bottom: 16px;
}

.sfn-reg {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #1d2b4a;
    margin-bottom: 8px;
}

    .sfn-reg i {
        color: rgba(0,198,255,0.4);
    }

.sfn-partner-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

    .sfn-partner-note i {
        color: rgba(0,198,255,0.4);
        flex-shrink: 0;
    }

    .sfn-partner-note strong {
        color: rgba(255,255,255,0.45);
    }

.sfn-col h4 {
    font-family: var(--font-d);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sfn-col h4 i {
        color: var(--cyan);
        font-size: 0.78rem;
    }

.sfn-col a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.42);
    padding: 5px 0;
    transition: color var(--t);
}

    .sfn-col a i {
        font-size: 0.65rem;
        color: rgba(0,198,255,0.4);
    }

    .sfn-col a:hover {
        color: var(--cyan-light);
    }

.sfn-contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 5px 0;
}

.sfn-ci {
    color: var(--cyan);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.sfn-contact-row span,
.sfn-contact-row a {
    font-size: 0.83rem;
    color: #1d2b4a;
    line-height: 1.55;
    transition: color var(--t);
}

    .sfn-contact-row a:hover {
        color: var(--cyan-light);
    }

.sfn-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.sfn-bottom-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center; 
}

    .sfn-bottom-inner span {
        font-size: 0.78rem;
        color: #1d2b4a;
    }

.sfn-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .sfn-tagline i {
        color: rgba(0,198,255,0.4);
    }

/* =============================================
   BLAZOR ERROR UI
   ============================================= */
#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
    display: none;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet — below 900px: switch to hamburger */
@media (max-width: 900px) {
    .nav-links-desktop {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-img-grid {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .svc-full-grid {
        grid-template-columns: 1fr;
    }

    .svc-wide {
        grid-column: 1;
    }

    .partner-strip-inner {
        flex-direction: column;
        gap: 32px;
    }

    .pdc-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .intro-grid, .about-grid, .partner-full-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .img-accent {
        display: none;
    }

    .img-badge-float {
        left: 16px;
        top: 16px;
    }

    .services-card-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sfn-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .project-detail-card {
        grid-template-columns: 1fr;
    }

    .project-alt {
        direction: ltr;
    }

    .pdc-img {
        min-height: 300px;
    }

    .pdc-content {
        padding: 36px 32px;
    }

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

@media (max-width: 640px) {
    .services-card-grid, .why-grid {
        grid-template-columns: 1fr;
    }

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

    .directors-new-section .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        gap: 0;
    }

    .stat-sep {
        display: none;
    }

    .stat-block {
        padding: 20px 28px;
    }

    .sfn-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sfn-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-info-boxes {
        grid-template-columns: 1fr;
    }

    .partner-impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-card-new {
        padding: 28px 20px;
    }
}
/* Optional label */
.opt {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-3);
    letter-spacing: 0;
    text-transform: none;
}

/* Captcha field */
.captcha-field {
    background: rgba(0,114,255,0.03);
    border: 1px solid rgba(0,114,255,0.12);
    border-radius: var(--r-sm);
    padding: 16px 18px;
}

    .captcha-field label {
        color: var(--text-2);
        text-transform: none;
        letter-spacing: 0;
        font-size: 0.88rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
    }

        .captcha-field label i {
            color: var(--cyan-dark);
            font-size: 0.95rem;
        }

        .captcha-field label strong {
            color: var(--navy);
            font-weight: 800;
        }

/* Server-side error banner */
.send-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    color: var(--danger);
    line-height: 1.55;
}

    .send-error-banner i {
        flex-shrink: 0;
        margin-top: 2px;
    }

/* Disabled submit button */
.btn-submit-new:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Sending spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spinAnim 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes spinAnim {
    to {
        transform: rotate(360deg);
    }
}


