:root {
    --navy-dark: #0b1a45;
    --navy: #132a68;
    --navy-light: #1e3a8a;
    --blue-grad-1: #14235c;
    --blue-grad-2: #2646ab;
    --red: #e6323f;
    --red-dark: #c81f2c;
    --bg-light: #f5f7fc;
    --bg-soft: #eef1fa;
    --white: #ffffff;
    --text-dark: #151c33;
    --text-gray: #68708a;
    --border-light: #e7eaf5;
    --radius: 14px;
    --shadow-soft: 0 10px 30px rgba(19, 42, 104, 0.08);
    --shadow-hover: 0 20px 45px rgba(19, 42, 104, 0.16);
    --transition: all .35s cubic-bezier(.4, .2, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    color: var(--red);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--navy-light);
}

.section-sub {
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
}

.center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(230, 50, 63, .35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(19, 42, 104, .35);
}
.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0202f4;
    font-size: 12.5px;
    transition: .25s;
}


.top-bar .social-icons a:hover {
    background: var(--amber-500);
    color: #df0707;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
/* ---------- HEADER ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(19, 42, 104, .06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--red), var(--navy-light), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text b {
    font-size: 1.15rem;
    color: var(--navy-dark);
    letter-spacing: .5px;
}

.logo-text small {
    font-size: .6rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

/* .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
} */

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--blue-grad-1) 0%, var(--blue-grad-2) 100%);
    padding: 40px 0 110px;
    color: #fff;
    margin-bottom: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .08) 0, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, .06) 0, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 8px 0 18px;
    line-height: 1.15;
}

.hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero .eyebrow {
    color: #ffd8db;
}

.hero .eyebrow::before {
    background: #ffd8db;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    animation: floatY 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .35) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .5;
    z-index: 1;
}

/* ---------- ABOUT TEAM / FEATURES ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.about-grid h2 {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.about-grid h2 span {
    color: var(--red);
}

.about-grid p {
    color: var(--text-gray);
}

.feature-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--red);
    transform: scale(1.1) rotate(6deg);
}

.feature-item h4 {
    color: var(--navy-dark);
    font-size: 1.02rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: .9rem;
    margin: 0;
}

/* ---------- FADE IN ON SCROLL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
    gap: 10px;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TEAM GRIDS ---------- */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 50px;
}

.specialist-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 18px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.avatar-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    padding: 4px;
    background: conic-gradient(from 180deg, var(--red), var(--navy-light), var(--red));
    position: relative;
    overflow: hidden;
}

.specialist-grid .avatar-wrap {
    width: 82px;
    height: 82px;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.team-card:hover .avatar-inner img {
    transform: scale(1.12);
}

.team-card h4 {
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.specialist-grid h4 {
    font-size: .95rem;
}

.role {
    color: var(--red);
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: 8px;
    display: block;
}

.team-card .desc {
    color: var(--text-gray);
    font-size: .82rem;
    margin-bottom: 14px;
    min-height: 40px;
}

.exp {
    color: var(--text-gray);
    font-size: .78rem;
    margin-bottom: 12px;
    display: block;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* ---------- DEPARTMENTS MARQUEE ---------- */
.dept-section {
    background: var(--white);
    overflow: hidden;
}

.marquee-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
}

.marquee-outer:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.dept-card {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dept-img {
    height: 130px;
    overflow: hidden;
    position: relative;
}

.dept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.dept-card:hover .dept-img img {
    transform: scale(1.12);
}

.dept-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(230, 50, 63, .4);
}

.dept-body {
    padding: 30px 18px 18px;
}

.dept-body h4 {
    color: var(--navy-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.dept-body p {
    color: var(--text-gray);
    font-size: .83rem;
    margin: 0;
}

/* ---------- STATS ---------- */
.stats-bar {
    background: linear-gradient(120deg, var(--blue-grad-1), var(--blue-grad-2));
    padding: 26px 0;
    color: #fff;
}
.container-stats-grid{
    gap: 10px;

}
.stats-grid {
    display: relative;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    text-align: center;
    
}

.stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
}

/* ---------- WHY TRUST / VALUES ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: .9fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.trust-img img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.trust-img:hover img {
    transform: scale(1.08);
}

.trust-list h3 {
    color: var(--navy-dark);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.trust-list h3 span {
    color: var(--red);
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: .93rem;
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}

.values-title {
    color: var(--navy-dark);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.values-title span {
    color: var(--red);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
    animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.value-card h4 {
    font-size: .98rem;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.value-card p {
    font-size: .82rem;
    color: var(--text-gray);
    margin: 0;
}

/* ---------- LEADERSHIP MESSAGE ---------- */
.lead-msg {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.lead-msg-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.lead-msg-img img {
    height: 280px;
    object-fit: cover;
}

.quote-mark {
    font-size: 3rem;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    line-height: 0;
}

.lead-msg blockquote {
    font-size: 1.15rem;
    color: var(--navy-dark);
    font-weight: 500;
    margin: 14px 0 18px;
    line-height: 1.6;
}

.lead-msg .signee {
    font-weight: 700;
    color: var(--navy-dark);
}

.lead-msg .signee small {
    display: block;
    font-weight: 400;
    color: var(--red);
    font-size: .8rem;
}

/* ---------- CTA ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--blue-grad-1), var(--blue-grad-2));
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
    margin: 0 auto;
    max-width: 1152px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cta-left h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.cta-left p {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo b {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: .9rem;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .88rem;
}

.newsletter-form {
    display: flex;
    margin-top: 6px;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: .85rem;
    outline: none;
}

.newsletter-form button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--red-dark);
}

.copyright {
    text-align: center;
    padding: 22px 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialist-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-img img {
        width: 100%;
        height: 260px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lead-msg {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:720px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
        box-shadow: 0 12px 20px rgba(0, 0, 0, .08);
        transform: translateY(-140%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-cta .btn {
        display: none;
    }

    .leader-grid {
        grid-template-columns: 1fr 1fr;
    }

    .specialist-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-cols {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }
}
/* Mobile view me top bar hide */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}