@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');


/* ── PROTECTION: disable text selection & drag across all elements ── */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Re-enable selection only inside form inputs so users can still type/paste */
input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Hide images from being drag-saved */
img {
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events on links and buttons so they stay clickable */
a,
button {
    pointer-events: auto;
}

/* ── COPYRIGHT watermark (invisible but present in source) ── */
body::after {
    content: "© Obaire Devworks Solution. All rights reserved. Unauthorised copying is prohibited.";
    display: none;
}



:root {
    --primary-blue: #003B5C;
    --dark-bg: #1a1a1a;
    --dark-card: #2d2d2d;
    --dark-text: #ffffff;
    --light-text: #6c757d;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --sky: #e8f0f5;
    --sky-mid: #b8d0e0;
    --blue: #003B5C;
    --blue-dark: #002a42;
    --blue-hover: #004f7c;
    --white: #ffffff;
    --slate: #1e3a5f;
    --slate-light: #6c757d;
    --card-shadow: 0 4px 24px rgba(0, 59, 92, 0.10);
    --radius: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--primary-blue);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.ods-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(0, 59, 92, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding 0.3s, background 0.3s;
}

.ods-nav.scrolled {
    padding: 10px 0;
    background: rgba(0, 42, 66, 0.99);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--sky-mid);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--sky-mid);
    color: var(--primary-blue) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--blue-dark);
    padding: 16px 24px 24px;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ─── HERO ─────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--primary-blue) 55%, #005a8a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(184, 208, 224, 0.15);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 79, 124, 0.4);
    bottom: -50px;
    left: 10%;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 208, 224, 0.15);
    border: 1px solid rgba(184, 208, 224, 0.3);
    color: var(--sky-mid);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0.1)
    }
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeSlideUp 0.6s 0.1s ease both;
}

.hero-title .accent {
    color: var(--sky-mid);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    font-weight: 300;
    animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.6s 0.3s ease both;
}

.btn-primary-ods {
    background: var(--sky-mid);
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Syne', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 59, 92, 0.4);
}

.btn-primary-ods:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 59, 92, 0.5);
}

.btn-ghost-ods {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost-ods:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.hero-visual {
    animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.hero-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky-mid);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.tech-tag:hover {
    background: rgba(184, 208, 224, 0.2);
    color: var(--white);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SECTION LAYOUT ─────────────────────────────── */
.section {
    padding: 96px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    opacity: 0.5;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title .accent {
    color: var(--blue-hover);
}

.section-desc {
    color: var(--slate-light);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ─── EXPERTISE SECTION ──────────────────────────── */
.expertise-section {
    background: var(--sky);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(0, 59, 92, 0.07);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 59, 92, 0.15);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.expertise-card h3 {
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── TECH STACK ─────────────────────────────────── */
.techstack-section {
    background: var(--primary-blue);
}

.techstack-section .section-title {
    color: var(--white);
}

.techstack-section .section-label {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.techstack-section .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stack-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.stack-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(184, 208, 224, 0.3);
    transform: translateY(-3px);
}

.stack-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sky-mid);
    font-weight: 700;
    margin-bottom: 10px;
}

.stack-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-pill {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.process-section {
    background: var(--sky);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.6% + 20px);
    right: calc(16.6% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-mid), var(--primary-blue));
    opacity: 0.2;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 59, 92, 0.25);
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── CLIENTS ────────────────────────────────────── */
.clients-section {
    background: var(--white);
}

.clients-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.clients-scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-scroll-wrapper::before,
.clients-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 80px;
}

.clients-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, white, transparent);
}

.clients-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, white, transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-card {
    background: var(--sky);
    border-radius: 12px;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 59, 92, 0.07);
    flex-shrink: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.client-card:hover {
    box-shadow: var(--card-shadow);
}

.client-card img {
    /* max-width: 80%;
    max-height: 80%; */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.2s;
}

.client-card:hover img {
    filter: grayscale(0);
}

.client-card-placeholder {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-blue);
    opacity: 0.4;
    text-align: center;
    padding: 10px;
}

/* ─── CTA ────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--slate) 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 32px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 12px;
    font-weight: 300;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stat-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .stack-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .clients-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stack-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary-ods,
    .btn-ghost-ods {
        justify-content: center;
    }
}