*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1a3a8f;
    --blue-dark: #0d1f54;
    --blue-deep: #070e2b;
    --orange: #f39200;
    --orange-lite: #fbb040;
    --white: #ffffff;
    --slate: #94a3b8;
    --slate-light: #e2e8f0;
    --surface: #0f172a;
    --surface-2: #1e2d4d;
    --radius: 16px;
    --nav-h: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--blue-deep);
    color: var(--white);
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blue-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 99px;
}

/* ══════════════════════════════ NAV ══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled {
    background: rgba(7, 14, 43, .85);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lite));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.logo-text {
    line-height: 1;
}

.logo-text span:first-child {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--white);
}

.logo-text span:last-child {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-light);
    text-decoration: none;
    position: relative;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 99px;
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    transition: background .25s, transform .2s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-lite) !important;
    transform: translateY(-1px);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition: .3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: rgba(7, 14, 43, .97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    z-index: 99;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate-light);
    text-decoration: none;
    transition: color .2s;
}

.mobile-nav a:hover {
    color: var(--orange);
}

/* ══════════════════════════════ HERO ══════════════════════════════ */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 40px) 24px 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(26, 58, 143, .55) 0%, transparent 70%),
        linear-gradient(180deg, #070e2b 0%, #0d1f54 60%, #070e2b 100%);
}

/* animated grid */
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image:
        linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(26, 58, 143, .4);
    top: -100px;
    right: -100px;
    animation: drift 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(243, 146, 0, .25);
    bottom: 0;
    left: -80px;
    animation: drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: rgba(243, 146, 0, .12);
    border: 1px solid rgba(243, 146, 0, .3);
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(270deg, var(--orange), #ff6b00, var(--white), var(--orange));
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 6s ease-in-out infinite;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.75;
    margin: 0 auto 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lite));
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(243, 146, 0, .35);
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(243, 146, 0, .5);
}

.btn-outline {
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .06);
}

/* hero visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

.hc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hc-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-left: auto;
}

.hc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    margin-bottom: 10px;
}

.hc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-icon svg {
    width: 18px;
    height: 18px;
}

.hc-row-text strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
}

.hc-row-text span {
    font-size: .72rem;
    color: var(--slate);
}

.hc-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.hc-stat {
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.hc-stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}

.hc-stat span {
    font-size: .68rem;
    color: var(--slate);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ══════════════════════════════ STATS STRIP ══════════════════════════════ */
.stats-strip {
    background: rgba(26, 58, 143, .18);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 36px 24px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--orange-lite));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 4px;
}

/* ══════════════════════════════ SECTION BASE ══════════════════════════════ */
section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(243, 146, 0, .1);
    border: 1px solid rgba(243, 146, 0, .25);
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 550px;
}

/* ══════════════════════════════ ABOUT ══════════════════════════════ */
#about {
    background: #ffffff;
}

#about .section-tag {
    color: var(--blue);
    background: rgba(26, 58, 143, .1);
    border-color: rgba(26, 58, 143, .2);
}

#about .section-title {
    color: var(--blue-dark);
}

#conferences .section-title {
    color: var(--blue-dark);
}

#clients .section-title {
    color: var(--blue-dark);
}

#about .section-sub {
    color: #475569;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}

.about-feat:hover {
    border-color: rgba(243, 146, 0, .4);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.af-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(26, 58, 143, .1), rgba(243, 146, 0, .05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-icon svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.about-feat:hover .af-icon svg {
    color: var(--orange);
}

.af-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--blue-dark);
}

.af-text span {
    font-size: .78rem;
    color: #475569;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

@keyframes float-image {
    0% {
        transform: translateY(0);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 35px 60px rgba(243, 146, 0, 0.25);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
}

.about-img-animated {
    width: 100%;
    height: 100%;
    /* max-height: 520px; */
    object-fit: cover;
    border-radius: 24px;
    animation: float-image 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(243, 146, 0, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

.about-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    border: none;
    padding: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.asg-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform .25s, border-color .25s;
}

.asg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 146, 0, .3);
}

.asg-card strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.asg-card span {
    font-size: .72rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ══════════════════════════════ CONFERENCES ══════════════════════════════ */
#conferences {
    background: #f8fafc;
    padding: 20px 0;
}

/* ── TAB NAVIGATION ── */
.conf-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.conf-tab-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: all .3s;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.conf-tab-btn:hover {
    border-color: var(--blue);
    background: #f0f7ff;
    transform: translateY(-2px);
}

.conf-tab-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.conf-tab-btn span {
    display: block;
}

.tab-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-dark);
    transition: color .3s;
}

.tab-sub {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate);
    transition: color .3s;
}

.conf-tab-btn.active .tab-main {
    color: #ffffff;
}

.conf-tab-btn.active .tab-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* ── TAB CONTENT ── */
.conf-tab-content {
    display: none;
    animation: fadeInTab .5s ease forwards;
}

.conf-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 640px) {
    .conf-tabs-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .conf-tab-btn {
        min-width: 0;
    }
}

.conf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.conf-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 15px;
    border: 1px solid var(--blue);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.conf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: var(--blue);
}

.conf-card-top {
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.card-year-badge {
    background: #f1f5f9;
    color: var(--slate);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.conf-card h4 {
    font-size: 1.1rem;
    color: var(--blue-dark);
    font-weight: 800;
}

/* ── EVENT LIST REDESIGN ── */
.conf-event-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conf-event-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 8px;
    border-radius: 12px;
    transition: background .2s;
}

.conf-event-item:hover {
    background: #f8fafc;
}

.event-date {
    width: 70px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    line-height: 1.2;
    border-right: 2px solid #f1f5f9;
    flex-shrink: 0;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.2;
}

.event-loc {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 500;
}

.conf-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

@media(max-width: 1100px) {
    .conf-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .conf-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════ SERVICES ══════════════════════════════ */
#services {
    background: #f0f4ff;
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header .section-sub {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.svc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-lite));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 146, 0, .4);
    box-shadow: 0 20px 50px rgba(26, 58, 143, .12);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(26, 58, 143, .5), rgba(26, 58, 143, .2));
    border: 1px solid rgba(26, 58, 143, .4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background .3s;
}

.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lite));
    border-color: transparent;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
    color: var(--orange-lite);
    transition: color .3s;
}

.svc-card:hover .svc-icon svg {
    color: var(--white);
}

.svc-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.svc-card p {
    font-size: .85rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(26, 58, 143, .3);
    color: #93c5fd;
}

/* ══════════════════════════════ IT SERVICES ══════════════════════════════ */
#it-services {
    background: var(--blue-deep);
}

.dl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.dl-modules {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dl-module {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    transition: border-color .25s;
}

.dl-module:hover {
    border-color: rgba(243, 146, 0, .35);
}

.dl-mod-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    color: var(--orange);
    background: rgba(243, 146, 0, .1);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dl-module strong {
    font-size: .85rem;
    font-weight: 600;
    display: block;
}

.dl-module span {
    font-size: .75rem;
    color: var(--slate);
}

.dl-visual {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 32px;
}

.dl-vis-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.dl-vis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dl-progress+.dl-progress {
    margin-top: 16px;
}

.dl-prog-label {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--slate);
    margin-bottom: 6px;
}

.dl-prog-bar {
    height: 8px;
    background: rgba(255, 255, 255, .07);
    border-radius: 99px;
    overflow: hidden;
}

.dl-prog-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
}

.dl-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.dl-badge {
    padding: 8px 16px;
    background: rgba(26, 58, 143, .25);
    border: 1px solid rgba(26, 58, 143, .5);
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    color: #93c5fd;
}

/* ══════════════════════════════ CONTACT FORM ══════════════════════════════ */

#contact {
    background: #f0f4ff;
}

#contact-form-section {
    background: #f8fafc;
    padding: 100px 24px;
}

.cf-split-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(26, 58, 143, 0.06);
    overflow: hidden;
    max-width: 1050px;
    margin: 0 auto;
}

.cf-left {
    background: var(--blue-deep);
    position: relative;
    padding: 60px 48px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.cf-left::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: var(--orange);
    filter: blur(120px);
    opacity: 0.25;
    border-radius: 50%;
}

.cf-left::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: #00d4ff;
    filter: blur(140px);
    opacity: 0.15;
    border-radius: 50%;
}

.cf-left-content {
    position: relative;
    z-index: 2;
}

.cf-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.cf-left p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cf-graphic {
    position: relative;
    height: 100px;
}

.cf-circle-1 {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff6b00);
    top: 10px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(243, 146, 0, 0.5);
}

.cf-circle-2 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #005eff);
    bottom: 0px;
    left: 70px;
    animation: float 8s ease-in-out infinite reverse;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.cf-right {
    padding: 60px 56px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(max-width: 900px) {
    .cf-split-card {
        grid-template-columns: 1fr;
    }

    .cf-left {
        padding: 48px 32px;
    }

    .cf-right {
        padding: 48px 32px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px !important;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: var(--blue-dark) !important;
    font-family: inherit;
    font-size: .95rem;
    outline: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

input:focus,
textarea:focus {
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.1);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.form-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lite));
    color: var(--white);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(243, 146, 0, .35);
    transition: transform .2s, box-shadow .2s;
    margin-top: 10px;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(243, 146, 0, .5);
}

/* ══════════════════════════════ FOOTER ══════════════════════════════ */
footer {
    background: var(--blue-deep);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 80px 24px 32px;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}

.f-col-brand .logo-img {
    margin-bottom: 20px;
}

.f-about {
    font-size: .95rem;
    color: var(--slate);
    line-height: 1.8;
    max-width: 320px;
}

.f-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.f-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.f-nav a {
    color: var(--slate);
    font-size: .95rem;
    text-decoration: none;
    transition: color .25s, transform .25s;
    display: inline-block;
    width: max-content;
}

.f-nav a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.fc-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fc-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fc-item-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(243, 146, 0, .15), rgba(243, 146, 0, .05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.fc-text strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.fc-text p,
.fc-text a {
    font-size: .9rem;
    color: var(--slate);
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s;
}

.fc-text a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .75rem;
    color: var(--slate);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.fs-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}

.fs-btn:hover {
    background: rgba(243, 146, 0, .15);
    border-color: var(--orange);
    color: var(--orange);
}

.fs-btn svg {
    width: 14px;
    height: 14px;
}

@media(max-width: 900px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ══════════════════════════════ REVEAL ══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s, transform .6s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 900px) {

    .hero-content,
    .about-grid,
    .dl-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding-bottom: 20px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── LOGO IMG ── */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* ── LIGHT SECTION TEXT OVERRIDES ── */
#services .section-tag {
    color: var(--blue);
    background: rgba(26, 58, 143, .1);
    border-color: rgba(26, 58, 143, .2);
}

#services .section-title {
    color: var(--blue-dark);
}

#services .section-sub {
    color: #475569;
}

#services .svc-icon {
    background: linear-gradient(135deg, rgba(26, 58, 143, .12), rgba(26, 58, 143, .06));
    border-color: rgba(26, 58, 143, .2);
}

#services .svc-icon svg {
    color: var(--blue);
}

#services .svc-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lite));
    border-color: transparent;
}

#services .svc-card:hover .svc-icon svg {
    color: #fff;
}

#services .svc-tag {
    background: rgba(26, 58, 143, .08);
    color: var(--blue);
}

/* End of overrides */

/* ── HIGHLIGHTS SECTION ── */
#highlights {
    background: var(--blue-deep);
    padding: 80px 24px;
}

.hl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.hl-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color .4s, box-shadow .4s;
}

.hl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 146, 0, .4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3), 0 0 30px rgba(243, 146, 0, .05);
}

.hl-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(243, 146, 0, .15), rgba(243, 146, 0, .05));
    border: 1px solid rgba(243, 146, 0, .2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-icon svg {
    width: 28px;
    height: 28px;
    color: var(--orange);
}

.hl-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.hl-content p {
    font-size: .9rem;
    color: var(--slate);
    line-height: 1.6;
}

.hl-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 48px;
}

@media(max-width:900px) {
    .hl-grid {
        grid-template-columns: 1fr;
    }

    .hl-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ── CLIENTS ── */
#clients {
    padding: 60px 0 60px;
    background: #fff;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.client-link {
    display: block;
    transition: transform .3s ease;
}

.client-logo {
    max-width: 300px;
    height: auto;
    transition: all .4s ease;
    border: 1px solid #1a3a8f;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgb(243 146 0 / 20%);
}

.client-link:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
}

.client-link:hover {
    transform: translateY(-5px);
}

@media(max-width: 768px) {
    .clients-grid {
        gap: 40px;
    }

    .client-logo {
        max-width: 140px;
    }
}
.year-separator {
   font-size:13px;
    color:#0d1f54 !important;
    padding-top: 7%;
    font-weight: bold;
    padding-bottom: 8% !important;
    border-bottom: 1px solid #f1f5f9;
}
.year-sep{
     background: var(--blue);
     color: #fff !important; 
}
.past-events{
color:var(--orange); font-weight:800; text-decoration:none; font-size:0.85rem;}