:root {
    --navy-950: #081b33;
    --navy-900: #0b2545;
    --navy-800: #0f2f5a;
    --navy-700: #14325c;
    --blue-600: #1c6fd9;
    --blue-500: #2f86e8;
    --sky-100: #eaf3fc;
    --sky-50: #f4f9fe;
    --saffron-500: #1c6fd9;
    --saffron-100: #5f4de9;
    --ink-900: #0c1a2b;
    --ink-600: #4c5a70;
    --ink-400: #8091a8;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: #e1e8f2;
    --shadow-sm: 0 2px 10px rgba(11, 37, 69, .06);
    --shadow-md: 0 14px 34px rgba(11, 37, 69, .12);
    --radius: 14px;
    --ease: cubic-bezier(.22, .8, .32, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Archivo', sans-serif;
    color: var(--navy-900);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-600);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--saffron-500);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 10px 24px rgba(28, 111, 217, .30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(28, 111, 217, .38);
}

.btn-saffron {
    background: var(--saffron-500);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245, 130, 31, .32);
}

.btn-saffron:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(245, 130, 31, .4);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-outline {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

.btn-outline:hover {
    background: var(--navy-900);
    color: #fff;
}


/* ---------- HERO SLIDER ---------- */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    max-height: 880px;
    overflow: hidden;
    background: var(--navy-950);
}

.slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide .ken {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s linear;
}

.slide.active .ken {
    transform: scale(1);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 27, 51, .92) 0%, rgba(8, 27, 51, .68) 38%, rgba(8, 27, 51, .32) 65%, rgba(8, 27, 51, .55) 100%),
        linear-gradient(0deg, rgba(8, 27, 51, .55) 0%, transparent 40%);
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
}

.slide-content .inner {
    max-width: 620px;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8fc0ff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease .3s, transform .7s ease .3s;
}

.slide.active .hero-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.hero-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--saffron-500);
    display: inline-block;
}

.slide-content h1 {
    color: #fff;
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.08;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease .4s, transform .8s ease .4s;
}

.slide.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 span {
    color: var(--saffron-500);
}

.slide-content p {
    color: #c7d5e8;
    font-size: 16.5px;
    max-width: 480px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease .5s, transform .8s ease .5s;
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease .6s, transform .8s ease .6s;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* dots */
.slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 118px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 34px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, .32);
    cursor: pointer;
    padding: 0;
    transition: background .25s;
}

.slider-dots button.active {
    background: var(--saffron-500);
}

/* arrows */
.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    background: rgba(8, 27, 51, .35);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
}

.slider-arrow:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.slider-arrow.prev {
    left: 28px;
}

.slider-arrow.next {
    right: 28px;
}

/* slide index counter, bottom-right, like a filmstrip readout */
.slide-counter {
    position: absolute;
    z-index: 5;
    right: 28px;
    bottom: 36px;
    font-family: 'IBM Plex Mono', monospace;
    color: #c7d5e8;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-counter b {
    color: #fff;
    font-size: 16px;
}

/* thumbnail rail */
.thumb-rail {
    position: absolute;
    z-index: 5;
    left: 28px;
    bottom: 36px;
    display: flex;
    gap: 10px;
}

.thumb-rail button {
    width: 64px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .25);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 0;
    opacity: .55;
    transition: opacity .25s, border-color .25s;
}

.thumb-rail button.active {
    opacity: 1;
    border-color: var(--saffron-500);
}

@media (max-width: 720px) {
    .hero {
        height: 100vh;
        min-height: 520px;
        max-height: none;
    }

    .slide-content {
        padding-top: 110px;
    }

    .thumb-rail {
        display: none;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
    }

    .slider-arrow.prev {
        left: 12px;
    }

    .slider-arrow.next {
        right: 12px;
    }

    .slider-dots {
        bottom: 70px;
    }

    .slide-counter {
        bottom: 20px;
    }
}

/* ---------- MARQUEE / TRUST STRIP ---------- */
.trust-strip {
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
}

.trust-strip .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #b9c9de;
    font-size: 13px;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ---------- SECTION GENERIC ---------- */
section {
    padding: 96px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    margin-top: 16px;
}

.section-head p {
    color: var(--ink-600);
    font-size: 16.5px;
    margin-top: 16px;
}

.alt-bg {
    background: var(--paper);
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-photo .badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
}

.about-photo .badge .n {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--blue-600);
}

.about-photo .badge .t {
    font-size: 12px;
    color: var(--ink-600);
    line-height: 1.3;
    max-width: 120px;
}

.about-copy p {
    color: var(--ink-600);
    margin-top: 18px;
    font-size: 15.8px;
}

.about-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy-800);
}

.about-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- SERVICES SECTION ---------- */
.alt-bg {
    background: #f5f8fa;
    padding: 80px 0;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #e67e22;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a1a2b;
    line-height: 1.2;
}

.section-head p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-top: 16px;
}

/* ---------- SERVICE GRID ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.svc-card .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #e67e22;
    background: #fef3e6;
    padding: 3px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 14px;
}

.svc-card .ic {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f0f4f9;
    height: 180px;
}

.svc-card .ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.svc-card:hover .ic img {
    transform: scale(1.03);
}

.svc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a2b;
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 0.95rem;
    color: #4a5a6a;
    line-height: 1.5;
    margin-bottom: 14px;
}

.svc-card .learn-more {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #e67e22;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.svc-card .learn-more:hover {
    color: #d35400;
    transform: translateX(4px);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }

    .svc-card .ic {
        height: 140px;
    }
}

/* ---------- PROCESS ---------- */
.process {
    position: relative;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

.p-step {
    padding: 0 14px;
    position: relative;
}

.p-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}

.p-step:nth-child(3) .p-num {
    background: var(--saffron-500);
}

.p-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.p-step p {
    font-size: 13.6px;
    color: var(--ink-600);
}

/* ---------- GALLERY ---------- */
.gal-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 22px;
}

.gal-main,
.gal-sub img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.gal-main {
    position: relative;
    height: 100%;
}

.gal-main img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gal-sub {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gal-sub img {
    height: 100%;
    object-fit: cover;
}

.gal-cap {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    background: rgba(8, 27, 51, .72);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gal-cap svg {
    color: var(--saffron-500);
}

.gal-wrap {
    position: relative;
}

/* ---------- WHY US ---------- */
.why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.why-visual {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
    border-radius: 20px;
    padding: 44px 34px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-visual::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 134, 232, .35), transparent 70%);
    right: -80px;
    top: -80px;
}

.why-visual h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
    position: relative;
}

.why-visual p {
    color: #b9c9de;
    font-size: 14.5px;
    margin-bottom: 28px;
    position: relative;
}

.why-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.why-rating .num {
    font-family: 'Archivo', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--saffron-500);
}

.why-rating .stars {
    color: var(--saffron-500);
    font-size: 15px;
    margin-bottom: 4px;
}

.why-rating .sub {
    color: #9fb3cc;
    font-size: 12.5px;
    font-family: 'IBM Plex Mono', monospace;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.why-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-item .ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--saffron-100);
    color: var(--saffron-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 16.5px;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 14px;
    color: var(--ink-600);
}

/* ---------- TESTIMONIALS ---------- */
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.t-stars {
    color: var(--saffron-500);
    font-size: 14px;
    letter-spacing: 2px;
}

.t-card p {
    font-size: 14.8px;
    color: var(--navy-800);
    font-style: normal;
}

.t-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sky-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
}

.t-who .name {
    font-weight: 700;
    font-size: 13.6px;
    color: var(--navy-900);
}

.t-who .loc {
    font-size: 12px;
    color: var(--ink-400);
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--blue-600), #164f9c);
    border-radius: 24px;
    padding: 56px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 220px at 90% 10%, rgba(245, 130, 31, .28), transparent 70%);
}

.cta-band h3 {
    color: #fff;
    font-size: clamp(24px, 2.6vw, 32px);
    max-width: 480px;
    position: relative;
}

.cta-band p {
    color: #dbe8fb;
    margin-top: 10px;
    font-size: 14.5px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 14px;
    position: relative;
    flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(26px, 3vw, 34px);
}

.contact-info p {
    color: var(--ink-600);
    margin-top: 14px;
    font-size: 15px;
}

.cinfo-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cinfo-item .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--sky-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cinfo-item h4 {
    font-size: 14.5px;
    color: var(--navy-900);
    margin-bottom: 3px;
}

.cinfo-item p {
    font-size: 14.5px;
    color: var(--ink-600);
    margin: 0;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    transition: .25s;
}

.socials a:hover {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
}

.form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 7px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 9px;
    border: 1.5px solid var(--line);
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    background: #fff;
    color: var(--navy-900);
    transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue-600);
}

.field {
    margin-bottom: 16px;
}

.form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.form-note {
    font-size: 12px;
    color: var(--ink-400);
    margin-top: 14px;
    text-align: center;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--navy-950);
    color: #93a5bf;
    padding: 70px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.foot-brand img {
    height: 66px;
    width:180px
}

.foot-brand span {
    font-family: 'Archivo', sans-serif;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

footer p {
    font-size: 13.6px;
    line-height: 1.7;
}

footer h5 {
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul a {
    font-size: 13.8px;
    transition: color .2s;
}

footer ul a:hover {
    color: var(--saffron-500);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 980px) {

    .about-grid,
    .why-grid,
    .gal-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }

    .process-row::before {
        display: none;
    }

    .t-grid {
        grid-template-columns: 1fr;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .navlinks {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 26px 28px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%);
        transition: transform .3s var(--ease);
        box-shadow: var(--shadow-md);
    }

    .navlinks.open {
        transform: translateY(0);
    }

    .nav-cta .btn-outline {
        display: none;
    }

    .burger {
        display: flex;
    }

    .topbar-left {
        gap: 14px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 38px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    section {
        padding: 64px 0;
    }

    .gal-grid {
        grid-template-columns: 1fr;
    }

    .gal-sub {
        flex-direction: row;
    }

    .about-photo .badge {
        left: 0;
        bottom: -20px;
        padding: 14px 16px;
    }
}


/* service pge  */
/* PAGE BANNER */
.page-banner {
    background: var(--navy-900);
    color: white;
    padding: 80px 0 60px;
    margin-top: 0;
}

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.page-banner h1 span {
    color: var(--blue-500);
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
}

/* SERVICES PAGE GRID */
.svc-grid-full {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.svc-card-full {
    display: grid;
    grid-template-columns: 80px 1fr 1.8fr;
    gap: 30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease);
}

.svc-card-full:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.svc-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-600);
    opacity: 0.2;
    line-height: 1;
}

.svc-image {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-content h2 {
    font-size: 1.6rem;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.svc-desc {
    color: var(--ink-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.svc-details h4 {
    font-size: 0.9rem;
    color: var(--navy-900);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-details ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-bottom: 20px;
}

.svc-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ink-600);
    padding: 4px 0;
}

.svc-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .svc-card-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-number {
        display: none;
    }

    .svc-image {
        height: 250px;
    }

    .svc-details ul {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 700px) {
    .svc-image {
        height: 200px;
    }

    .svc-content h2 {
        font-size: 1.3rem;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .page-banner {
        padding: 50px 0 40px;
    }
}