/* ==========================================================================
   SIGMA NEOTECH PVT. LTD. — Stylesheet
   Theme: Navy + Gold corporate / government-contractor identity
   ========================================================================== */

:root {
    --navy-950: #08152e;
    --navy-900: #0b1f3f;
    --navy-800: #14305c;
    --navy-700: #1d4079;
    --gold-600: #a87412;
    --gold-500: #c8961e;
    --gold-400: #dba934;
    --gold-100: #f7e7c4;
    --cream: #f8f7f3;
    --white: #ffffff;
    --ink: #161d2b;
    --slate: #5b6478;
    --slate-light: #8b93a6;
    --line: #e6e3da;
    --line-dark: #23335c;

    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, Segoe UI, sans-serif;

    --container: 1220px;
    --radius: 10px;
    --shadow-sm: 0 4px 14px rgba(11, 31, 63, .06);
    --shadow-md: 0 14px 36px rgba(11, 31, 63, .10);
    --shadow-lg: 0 26px 60px rgba(11, 31, 63, .16);
    --ease: cubic-bezier(.22, .7, .2, 1);
}

/* Horizontal Scroll Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0;
    color: var(--navy-900);
    line-height: 1.15;
}

p {
    margin: 0;
}

section {
    position: relative;
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 3px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 96px 0;
}

@media (max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

/* ---------- Signature divider / eyebrow (from logo motif) ---------- */
.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow span {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: .22em;
    font-size: .78rem;
    color: var(--gold-600);
    text-transform: uppercase;
    white-space: nowrap;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    height: 1px;
    width: 48px;
    background: linear-gradient(90deg, transparent, var(--gold-500));
}

.eyebrow::after {
    background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-head.left {
    margin: 0 0 48px;
    text-align: left;
}

.section-head.left .eyebrow {
    justify-content: flex-start;
}

.section-head.left .eyebrow::before {
    display: none;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.section-head p.lead {
    color: var(--slate);
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .02em;
    border: 2px solid transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-950);
    box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--navy-900);
    color: var(--navy-900);
    background: transparent;
}

.btn-outline:hover {
    background: var(--navy-900);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline.on-dark {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.btn-outline.on-dark:hover {
    background: var(--white);
    color: var(--navy-900);
}

/* ==============================
   TOPBAR
============================== */
.topbar {
    background: var(--navy-950);
    color: #cfd6e6;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
}

.topbar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-info a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #cfd6e6;
    transition: .3s;
}

.topbar-info a:hover {
    color: var(--gold-400);
}

.topbar-info svg {
    width: 14px;
    height: 14px;
    color: var(--gold-400);
    flex-shrink: 0;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.topbar-social a:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-950);
}

.topbar-social svg {
    width: 14px;
    height: 14px;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 247, 243, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: .3s;
}

.navbar.scrolled {
    background: rgba(248, 247, 243, .98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy-900);
}

.brand-text strong em {
    color: var(--gold-600);
    font-style: normal;
}

.brand-text small {
    font-size: .6rem;
    letter-spacing: .15em;
    color: var(--slate);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: var(--navy-900);
    font-size: .9rem;
    font-weight: 600;
    transition: .3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: .3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 10px;
    background: var(--navy-900);
    transition: .3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==============================
   MOBILE MENU
============================== */

.nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.nav-scrim.show {
    opacity: 1;
    visibility: visible;
}

/* ==============================
   TABLET
============================== */
@media (max-width: 991px) {

    .nav-toggle {
        display: flex;
    }

    .nav-cta .btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background: var(--navy-950);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 90px 25px 30px;
        overflow-y: auto;
        transition: .4s ease;
        z-index: 9999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        color: #fff;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .nav-links a::after {
        display: none;
    }
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 768px) {

    .topbar .container {
        justify-content: center;
        text-align: center;
    }

    .topbar-info {
        display: none;
    }

    .topbar-social {
        justify-content: center;
        width: 100%;
    }

    .nav-inner {
        min-height: 70px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .brand-text small {
        font-size: .5rem;
    }
}

/* ==============================
   SMALL MOBILE
============================== */
@media (max-width: 480px) {

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: .9rem;
    }

    .brand-text small {
        font-size: .45rem;
        letter-spacing: .08em;
    }

    .nav-links {
        width: 260px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .topbar-social a {
        width: 28px;
        height: 28px;
    }
}

/* ============================== PRELOADER ============================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-ring {
    position: relative;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.preloader-ring circle {
    fill: none;
    stroke-width: 3;
}

.preloader-ring .track {
    stroke: rgba(255, 255, 255, .1);
}

.preloader-ring .bar {
    stroke: var(--gold-500);
    stroke-linecap: round;
    stroke-dasharray: 345;
    stroke-dashoffset: 345;
    animation: loadbar 1.6s var(--ease) infinite;
}

@keyframes loadbar {
    0% {
        stroke-dashoffset: 345;
    }

    50% {
        stroke-dashoffset: 60;
    }

    100% {
        stroke-dashoffset: 345;
    }
}

.preloader-ring img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(.93);
    }
}

.preloader-text {
    color: #cfd6e6;
    font-size: .78rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
}

.preloader-text span {
    color: var(--gold-400);
}

/* ============================== HERO ============================== */
.hero {
    background:
        radial-gradient(circle at 18% 20%, rgba(200, 150, 30, .10), transparent 45%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 90px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(220, 180, 80, .4);
    background: rgba(220, 180, 80, .08);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 26px;
}

.hero-tag i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    display: inline-block;
}

.hero h1 {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--white);
    letter-spacing: .005em;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-400);
}

.hero p.desc {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c4cce0;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 46px;
    flex-wrap: wrap;
}

.hero-stats div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-400);
}

.hero-stats div span {
    font-size: .78rem;
    color: #9aa6c2;
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.hero-rings {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(200, 150, 30, .28);
    animation: spin 36s linear infinite;
}

.hero-rings.r2 {
    width: 340px;
    height: 340px;
    border-color: rgba(255, 255, 255, .12);
    animation-duration: 50s;
    animation-direction: reverse;
}

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

.hero-emblem {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--navy-700), var(--navy-950) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(220, 180, 80, .25), var(--shadow-lg);

}

.hero-emblem img {
    width: 84%;
    height: 84%;
    object-fit: contain;
    border-radius: 50%;

}

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    font-weight: 700;
    color: #e7eaf2;
    animation: floaty 5s ease-in-out infinite;
}

.hero-float svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
}

.hero-float.f1 {
    top: 6%;
    left: -4%;
    animation-delay: .2s;
}

.hero-float.f2 {
    bottom: 10%;
    left: -2%;
    animation-delay: 1.1s;
}

.hero-float.f3 {
    top: 42%;
    right: -8%;
    animation-delay: .6s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

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

@media (max-width:1100px) {
    .hero-float {
        display: none;
    }
}

@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-tag,
    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero p.desc {
        margin-inline: auto;
    }

    .hero-visual {
        margin-top: 20px;
    }
}

/* ============================== ABOUT ============================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.about-art {
    position: relative;
}

.about-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/4.6;
    background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gal-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gal-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 31, 63, 0.9),
            rgba(11, 31, 63, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.gal-item:hover .overlay {
    background: linear-gradient(to top,
            rgba(11, 31, 63, 0.95),
            rgba(11, 31, 63, 0.4));
}



.about-image {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-card svg {
    width: 62%;

}

.about-badge {
    position: absolute;
    bottom: -26px;
    right: -26px;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
}

.about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-900);
}

.about-badge span {
    font-size: .72rem;
    color: var(--slate);
    letter-spacing: .04em;
}

.about-badge .ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    flex: none;
}

.about-content p.lead {
    color: var(--slate);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-top: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy-900);
    font-size: .94rem;
}

.about-features li svg {
    width: 20px;
    height: 20px;
    color: var(--gold-600);
    flex: none;
}

@media (max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
/* ============================== SERVICES ============================== */
.services {
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    position: relative;
    overflow: hidden;

    /* Image full show ho, crop na ho */
    min-height: 300px;
    background-size: contain;        /* cover ki jagah contain */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

/* NEW: dark gradient overlay so text stays readable on image */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,28,0.25) 0%, rgba(10,14,28,0.65) 55%, rgba(10,14,28,0.92) 100%);
    z-index: -1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--gold-500), var(--navy-700));
    transition: width .35s var(--ease);
    z-index: 3; /* NEW: stays above overlay on hover */
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative; /* NEW */
    z-index: 2; /* NEW */
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-400);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #fff; /* NEW: white text over image */
    position: relative; /* NEW */
    z-index: 2; /* NEW */
}

.service-card p {
    color: #e3e6ee; /* NEW: light gray instead of slate, for image readability */
    font-size: .92rem;
    line-height: 1.65;
    position: relative; /* NEW */
    z-index: 2; /* NEW */
}

.service-num {
    position: absolute;
    top: 24px;
    right: 26px;
    font-family: var(--font-display);
    font-size: .85rem;
    color: var(--gold-400); /* NEW: changed from var(--line) so it's visible on image */
    font-weight: 700;
    z-index: 2; /* NEW */
}

@media (max-width:980px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:620px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================== WHY CHOOSE US ============================== */
.why {
    background: var(--white);
}

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

.why-card {
    display: flex;
    gap: 16px;
    padding: 26px;
    border-radius: 14px;
    background: var(--cream);
    border-left: 3px solid var(--gold-500);
    transition: background .3s, transform .3s var(--ease);
}

.why-card:hover {
    background: var(--navy-900);
    transform: translateY(-4px);
}

.why-card:hover h4,
.why-card:hover p {
    color: #e7eaf2;
}

.why-card .ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: background .3s;
}

.why-card:hover .ic {
    background: var(--gold-500);
}

.why-card .ic svg {
    width: 21px;
    height: 21px;
    color: var(--gold-400);
}

.why-card:hover .ic svg {
    color: var(--navy-950);
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    transition: color .3s;
}

.why-card p {
    font-size: .86rem;
    color: var(--slate);
    line-height: 1.55;
    transition: color .3s;
}

@media (max-width:980px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:620px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================== STATS ============================== */
.stats {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: var(--white);
    position: relative;
}

.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 26px);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 30px 14px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-box:last-child {
    border-right: none;
}

.stat-ring {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 2px solid rgba(220, 180, 80, .35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--gold-400);
    font-weight: 700;
}

.stat-label {
    margin-top: 14px;
    font-size: .84rem;
    letter-spacing: .04em;
    color: #c4cce0;
}

@media (max-width:900px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
}

@media (max-width:560px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- CERTIFICATIONS MARQUEE ---------- */
.marquee-wrap{
  overflow:hidden;position:relative;width:100%;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  margin-top:10px;
}
.marquee{
  display:flex;gap:24px;width:max-content;
  animation:certScroll 28s linear infinite;
}
.marquee:hover{animation-play-state:paused;}
@keyframes certScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.cert-chip{
  display:flex;flex-direction:column;align-items:center;gap:14px;
  background:#fff;border:1px solid #E3E0D6;border-radius:16px;
  padding:22px 26px;min-width:170px;
  box-shadow:0 2px 10px rgba(9,24,51,.06);
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1), border-color .35s;
}
.cert-chip:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(9,24,51,.14);
  border-color:#DDAA3C;
}
.cert-chip .cert-img{
  width:90px;height:60px;border-radius:14px;
  background:#F7F5F0;border:1px solid #E3E0D6;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;flex-shrink:0;
}
.cert-chip .cert-img img{
  width:100%;height:100%;object-fit:contain;
}
.cert-chip span{
  font-size:.85rem;font-weight:700;color:#15315C;
  text-align:center;white-space:nowrap;
}

@media (max-width:560px){
  .cert-chip{min-width:140px;padding:18px 18px;}
  .cert-chip .cert-img{width:56px;height:56px;}
  .cert-chip span{font-size:.78rem;}
}

/* ============================== INDUSTRIES ============================== */
.industries {
    background: var(--cream);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.ind-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px 14px;
    text-align: center;
    transition: .3s var(--ease);
}

.ind-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.ind-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ind-card .ic svg {
    width: 23px;
    height: 23px;
    color: var(--gold-600);
}

.ind-card span {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-900);
}

@media (max-width:980px) {
    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:560px) {
    .ind-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================== CHAIRMAN ============================== */
.chairman {
    background: var(--white);
}

.chairman-grid {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.chairman-photo {
    position: relative;
    aspect-ratio: 3/3.6;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.chairman-photo svg {
    width: 58%;
    color: rgba(220, 180, 80, .85);
}

.chairman-quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-100);
    line-height: 0;
    position: relative;
    top: 30px;
}

.chairman-text p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--ink);
    font-style: italic;
}

.chairman-sign {
    margin-top: 26px;
}

.chairman-sign strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy-900);
}

.chairman-sign span {
    font-size: .82rem;
    color: var(--gold-600);
    letter-spacing: .05em;
    font-weight: 700;
}

@media (max-width:900px) {
    .chairman-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chairman-photo {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* team */

/* ---------- TEAM SECTION (Compact) ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    gap: 24px;
    justify-content: center;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E3E0D6;
    box-shadow: 0 2px 10px rgba(9, 24, 51, .06);
    transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9, 24, 51, .16);
}

.team-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #E7ECF4;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(9, 24, 51, 0) 0%, rgba(9, 24, 51, .55) 100%);
    pointer-events: none;
}

.team-image .team-social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    transition: bottom .4s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-image .team-social {
    bottom: 0;
}

.team-image .team-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(115deg, #A87618 0%, #DDAA3C 50%, #E8B84B 100%);
    color: #091833;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    box-shadow: 0 2px 8px rgba(9, 24, 51, .08);
    transition: transform .3s;
}

.team-image .team-social a svg {
    width: 12px;
    height: 12px;
}

.team-image .team-social a:hover {
    transform: translateY(-2px) scale(1.05);
}

.team-content {
    padding: 14px 14px 16px;
    text-align: center;
}

.team-content h3 {
    font-size: .96rem;
    margin-bottom: 3px;
    color: #091833;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

.team-content>span {
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #A87618;
    background: #FBEFD6;
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 2px;
}

.team-qualification {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #E3E0D6;
}

.team-qualification h4 {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4A5063;
    margin-bottom: 2px;
}

.team-qualification p {
    font-size: .78rem;
    font-weight: 600;
    color: #15315C;
}

.team-card .team-content .team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #E3E0D6;
}

.team-card .team-content .team-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #E3E0D6;
    color: #15315C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: .3s;
}

.team-card .team-content .team-social a svg {
    width: 11px;
    height: 11px;
}

.team-card .team-content .team-social a:hover {
    background: linear-gradient(115deg, #A87618 0%, #DDAA3C 50%, #E8B84B 100%);
    border-color: transparent;
    color: #091833;
}

@media (max-width:1080px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width:480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-content {
        padding: 10px 10px 12px;
    }
}

/* ============================== LOGO MARQUEE (clients / certs) ============================== */
.marquee-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scroll-x 28s linear infinite;
}

.marquee.reverse {
    animation-direction: reverse;
    animation-duration: 24s;
}

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 26px;
    font-weight: 700;
    color: var(--navy-900);
    font-size: .92rem;
    white-space: nowrap;
}

.chip svg {
    width: 20px;
    height: 20px;
    color: var(--gold-600);
}

.clients-section {
    background: var(--navy-950);
}

.clients-section .section-head h2,
.clients-section .eyebrow span {
    color: var(--white);
}

.clients-section .chip {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .15);
    color: #e7eaf2;
}

.clients-section .chip svg {
    color: var(--gold-400);
}

/* ============================== TESTIMONIALS ============================== */
.testimonials {
    background: var(--cream);
}

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

.test-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--gold-500);
    font-size: .95rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.test-card p {
    color: var(--slate);
    font-size: .94rem;
    line-height: 1.7;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex: none;
}

.test-person strong {
    display: block;
    font-size: .9rem;
    color: var(--navy-900);
}

.test-person span {
    font-size: .76rem;
    color: var(--slate-light);
}

@media (max-width:900px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================== GALLERY ============================== */
.gallery {
    background: var(--white);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
}

.gal-grid div:nth-child(1) {
    grid-row: span 2;
    grid-column: span 2;
}

.gal-grid div:nth-child(4) {
    grid-column: span 2;
}

.gal-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gal-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--g);
    opacity: .92;
}

.gal-item .overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: transform .3s var(--ease);
}

.gal-item .overlay svg {
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    opacity: .85;
}

.gal-item .overlay span {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.gal-item:hover .overlay {
    transform: scale(1.08);
}

@media (max-width:760px) {
    .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 130px;
    }

    .gal-grid div:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gal-grid div:nth-child(4) {
        grid-column: span 1;
    }
}

/* ============================== NEWS ============================== */
.news {
    background: var(--cream);
}

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

.news-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s;
}

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

.news-top {
    height: 150px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-top svg {
    width: 34px;
    height: 34px;
    color: var(--gold-400);
}

.news-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 800;
    font-size: .72rem;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: .04em;
}

.news-body {
    padding: 22px;
}

.news-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold-600);
    text-transform: uppercase;
}

.news-body h4 {
    font-size: 1.04rem;
    margin-top: 8px;
    line-height: 1.4;
}

.news-body p {
    font-size: .86rem;
    color: var(--slate);
    margin-top: 10px;
    line-height: 1.6;
}

.news-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-900);
}

.news-link svg {
    width: 14px;
    height: 14px;
    transition: transform .25s;
}

.news-card:hover .news-link svg {
    transform: translateX(4px);
}

@media (max-width:900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================== CONTACT ============================== */
.contact {
    background: var(--navy-950);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 54px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(220, 180, 80, .12);
    border: 1px solid rgba(220, 180, 80, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.contact-info-item .ic svg {
    width: 21px;
    height: 21px;
    color: var(--gold-400);
}

.contact-info-item strong {
    display: block;
    font-size: .9rem;
    color: #9aa6c2;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: .72rem;
    margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-map {
    margin-top: 34px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    color: var(--ink);

}

.contact-form h3 {
    color: var(--navy-900);
    font-size: 1.4rem;
}

.contact-form p.sub {
    color: var(--slate);
    font-size: .9rem;
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: .92rem;
    background: var(--cream);
    transition: border-color .2s, background .2s;
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: 22px;
    width: 100%;
    justify-content: center;
    border: none;
}

.form-note {
    font-size: .76rem;
    color: var(--slate-light);
    margin-top: 12px;
    text-align: center;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================== FOOTER ============================== */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #aab4cc;
    padding: 20px;
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.footer-brand strong {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.1rem;
}

.footer p.desc {
    font-size: .88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h5 {
    color: var(--white);
    font-size: .92rem;
    letter-spacing: .04em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer ul li {
    margin-bottom: 11px;
    font-size: .88rem;
}

.footer ul li a {
    transition: color .2s, padding-left .2s;
}

.footer ul li a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.footer-social a svg {
    width: 15px;
    height: 15px;
}

.footer-social a:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a:hover {
    color: var(--gold-400);
}

@media (max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================== BACK TO TOP ============================== */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(220, 180, 80, .3);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s var(--ease);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top svg {
    width: 20px;
    height: 20px;
}

/* ============================== SCROLL REVEAL ============================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
    padding: 11px;
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-stagger.in>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(1) {
    transition-delay: .04s;
}

.reveal-stagger.in>*:nth-child(2) {
    transition-delay: .10s;
}

.reveal-stagger.in>*:nth-child(3) {
    transition-delay: .16s;
}

.reveal-stagger.in>*:nth-child(4) {
    transition-delay: .22s;
}

.reveal-stagger.in>*:nth-child(5) {
    transition-delay: .28s;
}

.reveal-stagger.in>*:nth-child(6) {
    transition-delay: .34s;
}

.reveal-stagger.in>*:nth-child(7) {
    transition-delay: .40s;
}

.reveal-stagger.in>*:nth-child(8) {
    transition-delay: .46s;
}

.reveal-stagger.in>*:nth-child(9) {
    transition-delay: .52s;
}

.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s ease;
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast.success { background: linear-gradient(135deg, #1e7a3c, #2ecc71); }
.toast.error { background: linear-gradient(135deg, #a31818, #e74c3c); }
.toast .toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.toast .toast-text strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15.5px;
}
.toast .toast-text span {
    font-size: 13px;
    opacity: 0.9;
}
@media (max-width: 500px) {
    .toast { right: 16px; left: 16px; min-width: unset; transform: translateY(-150px); }
    .toast.show { transform: translateY(0); }
}
