﻿/* ========================================
   Font Family
   ======================================== */

@font-face {
    font-family: 'bebas-neue';
    src: url('../fonts/bebas-neue.ttf') format('truetype');
}

@font-face {
    font-family: 'dm-sans';
    src: url('../fonts/dm-sans.ttf') format('truetype');
}

@font-face {
    font-family: 'dm-mono';
    src: url('../fonts/dm-mono.ttf') format('truetype');
}

/* ========================================
   root
   ======================================== */

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

:root {
    --c-bg: #f4f3f0;
    --c-surface: #ffffff;
    --c-surface-2: #edecea;
    --c-text: #141410;
    --c-text-2: #4a4a45;
    --c-text-muted: #7a7a72;
    --c-accent: #00a0d2;
    --c-accent-dark: #007ba8;
    --c-accent-2: #1a1a16;
    --c-border: rgba(0,0,0,0.10);
    --c-hero-overlay: rgba(10,10,8,0.55);
    --nav-h: 72px;
    --radius: 4px;
    --font-display: 'bebas-neue', sans-serif;
    --font-body: 'dm-sans', sans-serif;
    --font-mono: 'dm-mono', monospace;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --c-bg: #0e0e0c;
    --c-surface: #181816;
    --c-surface-2: #222220;
    --c-text: #f0efe8;
    --c-text-2: #b8b8b0;
    --c-text-muted: #78786e;
    --c-accent: #00c2ff;
    --c-accent-dark: #0099cc;
    --c-accent-2: #f0efe8;
    --c-border: rgba(255,255,255,0.10);
    --c-hero-overlay: rgba(5,5,4,0.65);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

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

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

section {
    overflow: hidden;
}

/* ========================= TYPOGRAPHY ========================= */
.display {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.05;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    color: var(--c-text-2);
    line-height: 1.75;
}

.label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-accent);
}

/* ========================= LAYOUT ========================= */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ========================= NAVBAR ========================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 3px 0px;
    display: flex;
    align-items: center;
    background-color: var(--c-surface);
    transition: background var(--transition), box-shadow var(--transition);
}

    nav.scrolled {
        background: var(--c-surface);
        box-shadow: 0 1px 0 var(--c-border);
    }

.nav-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    width: 165px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--c-text-2);
        transition: color var(--transition);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--c-accent);
            transform: scaleX(0);
            transition: transform var(--transition);
        }

        .nav-links a:hover {
            color: var(--c-text);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 45%;
    top: 100%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background var(--transition);
}

    .dropdown a:hover {
        background: var(--c-surface-2);
    }

/* Theme toggle */
.theme-toggle {
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    width: 50px;
    height: 26px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
}

    .theme-toggle::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--c-accent);
        transition: transform var(--transition);
    }

[data-theme="dark"] .theme-toggle::after {
    transform: translateX(24px);
}

.btn-primary {
    background: var(--c-accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

    .btn-primary:hover {
        background: var(--c-accent-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    border: 1.5px solid currentColor;
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    /* Top bar rotates to form one arm of the X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    /* Middle bar fades out */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    /* Bottom bar rotates to form the other arm of the X */
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ========================= HERO ========================= */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    background: #0a0a08;
}

.hero-video-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1520 35%, #05100d 70%, #0a0a08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .hero-video-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,160,210,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0,90,130,0.10) 0%, transparent 50%);
    }
/* Animated gear-like rings for placeholder ambiance */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,160,210,0.15);
}

    .hero-ring:nth-child(1) {
        width: 600px;
        height: 600px;
        top: 50%;
        left: 60%;
        transform: translate(-50%,-50%);
        will-change: transform;
        animation: spin 60s linear infinite;
    }

    .hero-ring:nth-child(2) {
        width: 900px;
        height: 900px;
        top: 50%;
        left: 60%;
        transform: translate(-50%,-50%);
        border-color: rgba(0,160,210,0.08);
        will-change: transform;
        animation: spin 90s linear infinite reverse;
    }

    .hero-ring:nth-child(3) {
        width: 1200px;
        height: 1200px;
        top: 50%;
        left: 60%;
        transform: translate(-50%,-50%);
        border-color: rgba(0,160,210,0.05);
        will-change: transform;
        animation: spin 130s linear infinite;
    }

@media (prefers-reduced-motion: reduce) {
    .hero-ring:nth-child(1),
    .hero-ring:nth-child(2),
    .hero-ring:nth-child(3) {
        animation: none;
    }
}

.hero-placeholder-label {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .hero-placeholder-label span {
        display: block;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

@keyframes spin {
    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,4,0.85) 0%, rgba(5,5,4,0.3) 50%, rgba(5,5,4,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 8vh;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    margin-bottom: 1.2rem;
}

.hero h1 {
    color: #fff;
    max-width: 800px;
}

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

.hero-sub {
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 8vh;
    right: 2rem;
    z-index: 2;
    display: flex;
    gap: 2px;
}

.hero-stat {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    text-align: center;
}

    .hero-stat:first-child {
        border-radius: 8px 0 0 8px;
    }

    .hero-stat:last-child {
        border-radius: 0 8px 8px 0;
    }

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

/* ========================= Scroll Top ========================= */
.scroll-top {
    position: fixed;
    bottom: 4rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px);
    }

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

.about-img-block {
    position: relative;
    background: var(--c-surface-2);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--c-text-muted);
}

    .img-placeholder svg {
        opacity: 0.35;
    }

    .img-placeholder span {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

    .img-placeholder small {
        font-size: 0.65rem;
        opacity: 0.6;
    }

.cert-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cert-badge {
    border: 1px solid var(--c-border);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-2);
    background: var(--c-surface-2);
}

.about-text {
    padding-left: 2rem;
}

/* ========================= TLC BANNER ========================= */
.tlc-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1520, #061018);
    color: #f0efe8;
    overflow: hidden;
}

[data-theme="dark"] .tlc-section {
    color: #f0efe8;
    background: linear-gradient(135deg, #0a1520, #061018);
}

.tlc-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.tlc-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.tlc-inner {
    position: relative;
    z-index: 1;
}

.tlc-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.tlc-flag-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.tlc-flag {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 4px;
    width: 60px;
    flex-shrink: 0;
}

    .tlc-flag div {
        height: 14px;
    }

    .tlc-flag .f-blue {
        background: #002395;
    }

    .tlc-flag .f-white {
        background: #fff;
    }

    .tlc-flag .f-red {
        background: #ED2939;
    }

.tlc-logo {
    margin-bottom: 1rem;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 15px 15px 5px 15px;
    text-align: center;
}

    .tlc-logo img {
        width: 70%;
        display: inline;
    }

.tlc-year {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    opacity: 0.12;
    position: absolute;
    right: 0;
    bottom: -1rem;
}

.tlc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2.5rem;
}

.tlc-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--c-accent);
}

.tlc-stat-desc {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.tlc-img-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

    .tlc-img-wrap .img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tlc-img-wrap .img-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

        .tlc-img-wrap .img-logo img {
            max-width: initial;
            object-fit: contain;
        }

.img-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

    .img-card .img-placeholder {
        color: rgba(255,255,255,0.3);
    }

        .img-card .img-placeholder svg {
            opacity: 0.2;
        }

/* ========================= PRODUCTS - UPDATED ========================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--c-border);
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    overflow: hidden;
}

.product-card {
    background: var(--c-surface);
    padding: 0;
    transition: background var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
}

    .product-card:hover {
        background: var(--c-surface-2);
    }

    .product-card .btn-primary {
        margin-top: auto;
        margin-bottom: auto;
    }

/* Product image area */
.product-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--c-surface-2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 15px;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.04);
}

/* Placeholder styling inside image area */
.product-card-img .img-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--c-text-muted);
    background: var(--c-surface-2);
}

    .product-card-img .img-ph svg {
        opacity: 0.3;
    }

    .product-card-img .img-ph span {
        font-family: var(--font-mono);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
    }

    .product-card-img .img-ph small {
        font-size: 0.6rem;
        opacity: 0.55;
    }

/* Label tag overlaid on image */
.product-card-img .img-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--c-accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    z-index: 1;
}

/* Text content below image */
.product-card-body {
    padding: 1.5rem 1.75rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .product-card-body h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .product-card-body p {
        font-size: 0.85rem;
        line-height: 1.65;
        flex: 1;
    }

.product-card-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.product-card:hover .product-card-arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: white;
}

/* 6th card — catalogue CTA */
.product-card-catalogue {
}

    .product-card-catalogue .cat-img-ph {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        overflow: hidden;
        position: relative;
        height: 234px;
        background: #fff;
        border-bottom: 2px solid var(--c-surface-2);
    }

        .product-card-catalogue .cat-img-ph img {
            padding: 5px;
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            animation: imgSlider 12s infinite;
        }

            /* delay each image */

            .product-card-catalogue .cat-img-ph img:nth-child(1) {
                animation-delay: 0s;
            }

            .product-card-catalogue .cat-img-ph img:nth-child(2) {
                animation-delay: 2s;
            }

            .product-card-catalogue .cat-img-ph img:nth-child(3) {
                animation-delay: 4s;
            }

            .product-card-catalogue .cat-img-ph img:nth-child(4) {
                animation-delay: 6s;
            }

            .product-card-catalogue .cat-img-ph img:nth-child(5) {
                animation-delay: 8s;
            }

            .product-card-catalogue .cat-img-ph img:nth-child(6) {
                animation-delay: 10s;
            }

/* animation */

@keyframes imgSlider {

    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.product-card-catalogue .cat-img-ph svg {
    opacity: 0.3;
}

.product-card-catalogue .cat-img-ph span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.product-card-catalogue .cat-img-ph small {
    font-size: 0.6rem;
    opacity: 0.55;
}

.product-card-catalogue a {
    text-align: center;
}

    .product-card-catalogue a:hover {
        /*opacity: 0.75;*/
    }

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .product-card-body {
        padding: 1.25rem 1.25rem 2.5rem;
    }
}

.products-cap-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--c-accent);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 3rem;
}

.cap-item {
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

    .cap-item:last-child {
        border-right: none;
    }

.cap-val {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
}

.cap-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

/* ========================= PARALLAX STRIP ========================= */
.parallax-strip {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -15%;
    background: linear-gradient(135deg, #0a1520, #061018);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

    .parallax-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,160,210,0.15), transparent 70%);
    }

.parallax-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.25);
}

    .parallax-img-placeholder svg {
        opacity: 0.2;
        width: 64px;
        height: 64px;
    }

    .parallax-img-placeholder span {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,4,0.5) 0%, rgba(5,5,4,0.5) 50%, rgba(5,5,4,0.2) 100%);
    display: flex;
    align-items: center;
}

.parallax-content {
    padding: 0 2rem;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

    .parallax-content h2 {
        color: #fff;
        max-width: 600px;
        margin-bottom: 1.5rem;
    }

    .parallax-content p {
        color: rgba(255,255,255,0.72);
        max-width: 500px;
        margin-bottom: 2rem;
    }

.parallax-img img {
    width: 100%;
}

.parallax-bg-01 {
    background-image: linear-gradient(to right, rgba(5,5,4,0.5) 0%, rgba(5,5,4,0.5) 50%, rgba(5,5,4,0.2) 100%), url(../images/general/infra-04.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
}

.parallax-bg-02 {
    background-image: linear-gradient(to right, rgba(5,5,4,0.5) 0%, rgba(5,5,4,0.5) 50%, rgba(5,5,4,0.2) 100%), url(../images/general/workshop-07.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 160px 0px;
}

.parallax-bg-03 {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/general/workshop-08.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
}

.parallax-bg-04 {
    background-image: linear-gradient(to right, rgba(5,5,4,0.5) 0%, rgba(5,5,4,0.5) 50%, rgba(5,5,4,0.2) 100%), url(../images/general/infra-03.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 160px 0px;
}
/* ========================= INFRASTRUCTURE ========================= */
.infra {
    background: var(--c-surface);
}

.infra-masonry {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

    .infra-masonry .img-card {
        background: var(--c-surface-2);
    }

        .infra-masonry .img-card:first-child {
            grid-row: 1 / 3;
        }

.infra-facts {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.infra-fact {
    padding: 1.5rem;
    border: 1px solid var(--c-border);
    border-radius: 8px;
}

.infra-fact-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--c-accent);
}

.infra-fact-desc {
    font-size: 0.825rem;
    color: var(--c-text-2);
    margin-top: 0.25rem;
}

/* ========================= SUSTAINABILITY ========================= */
.sustainability {
    background: var(--c-bg);
    position: relative;
}

.sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sustain-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.sustain-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,200,100,0.15), rgba(0,200,100,0.05));
    border: 1px solid rgba(0,200,100,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sustain-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sustain-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.sustain-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.orbis-block {
    position: relative;
}

.orbis-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,200,100,0.1);
    border: 1px solid rgba(0,200,100,0.25);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00c864;
}

/* ========================= SOLAR RING - UPDATED ========================= */
.solar-ring-wrap {
    position: relative;
    width: 260px;
    height: 260px;
}

.solar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 200, 100, 0.2);
    will-change: transform, opacity;
    animation: solarPulse 3s ease-in-out infinite;
}

    .solar-ring:nth-child(2) {
        inset: 22px;
        border-color: rgba(0, 200, 100, 0.3);
        animation-delay: 0.6s;
    }

    .solar-ring:nth-child(3) {
        inset: 44px;
        border-color: rgba(0, 200, 100, 0.45);
        animation-delay: 1.2s;
    }

@keyframes solarPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
        box-shadow: 0 0 18px rgba(0, 200, 100, 0.2);
    }

    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.solar-core {
    position: absolute;
    inset: 66px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(0, 220, 120, 0.18), rgba(0, 160, 210, 0.12));
    border: 1px solid rgba(0, 200, 100, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: box-shadow;
    animation: coreGlow 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .solar-ring,
    .solar-ring:nth-child(2),
    .solar-ring:nth-child(3),
    .solar-core {
        animation: none;
    }
}

@keyframes coreGlow {
    0% {
        box-shadow: 0 0 0px rgba(0, 200, 100, 0);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 200, 100, 0.25), inset 0 0 20px rgba(0, 200, 100, 0.08);
    }

    100% {
        box-shadow: 0 0 0px rgba(0, 200, 100, 0);
    }
}

.solar-core img {
    width: 110%;
    height: 110%;
    object-fit: contain;
    padding: 5px;
    filter: drop-shadow(0 4px 16px rgba(0, 200, 100, 0.35));
    transition: transform 0.4s ease;
}

.solar-core:hover img {
    transform: scale(1.06) rotate(-2deg);
}
/* ========================= INDUSTRIES ========================= */
.industries {
    background: var(--c-surface);
}

.industries-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.industry-card {
    border: 1px solid var(--c-border);
    background: var(--c-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

    .industry-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }

.industry-card-img {
    background: var(--c-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--c-text-muted);
}

    .industry-card-img .ind-icon {
        font-size: 2.5rem;
    }

    .industry-card-img small {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

.industry-card-body {
    padding: 1.25rem;
}

    .industry-card-body h4 {
        font-size: 0.875rem;
        margin-bottom: 0.4rem;
    }

    .industry-card-body p {
        font-size: 0.8rem;
    }

/* ========================= INNOVATION ========================= */
.innovation {
    background: linear-gradient(135deg, #060a12 0%, #0a1018 50%, #050e0a 100%);
    padding: 120px 0;
    color: #f0efe8;
    position: relative;
    overflow: hidden;
}

    .innovation::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 800px;
        height: 800px;
        border-radius: 50%;
        border: 1px solid rgba(0,160,210,0.08);
    }

.innov-inner {
    position: relative;
    z-index: 1;
}

.innov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.innov-feat {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

    .innov-feat:last-child {
        border-bottom: none;
    }

.innov-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-accent);
    opacity: 0.5;
    width: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.innov-feat h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.innov-feat p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.innov-visual {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0,160,210,0.2);
    background: rgba(0,160,210,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.innov-visual-inner {
    text-align: center;
    color: rgba(255,255,255,0.25);
}

    .innov-visual-inner svg {
        opacity: 0.2;
    }

    .innov-visual-inner span {
        display: block;
        font-family: var(--font-mono);
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        margin-top: 0.75rem;
    }

/* ========================= CTA ========================= */
.cta-section {
    background: var(--c-accent);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
    }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .cta-inner h2 {
        color: #fff;
        margin-bottom: 1.2rem;
    }

    .cta-inner p {
        color: rgba(255,255,255,0.8);
        max-width: 560px;
        margin: 0 auto 2.5rem;
        font-size: 1.05rem;
    }

.cta-form {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .cta-form input {
        flex: 0 0 70%;
        background: transparent;
        border: none;
        outline: none;
        padding: 1rem 1.5rem;
        color: #fff;
        font-size: 0.9rem;
        font-family: var(--font-body);
    }

        .cta-form input::placeholder {
            color: rgba(255,255,255,0.6);
        }

    .cta-form button {
        background: #fff;
        color: var(--c-accent);
        border: none;
        border-radius: 100px;
        padding: 0.75rem 1.75rem;
        font-weight: 700;
        font-size: 0.85rem;
        cursor: pointer;
        margin: 4px;
        transition: opacity 0.2s;
        font-family: var(--font-body);
        letter-spacing: 0.04em;
    }

        .cta-form button:hover {
            opacity: 0.9;
        }

.btn-enquiry {
    flex: 0 0 28% !important;
    background: #fff !important;
    color: var(--c-accent) !important;
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    margin: 4px;
    transition: opacity 0.2s;
}

    .btn-enquiry:hover {
        opacity: 0.9;
    }

.cta-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-links a i {
        color: aqua;
    }

.cta-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: color var(--transition);
}

    .cta-link:hover {
        color: #fff;
        border-color: #fff;
    }

footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
}

.footer-top {
    padding: 50px 0 35px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

/* Brand column */
.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--c-text-2);
    max-width: 220px;
    margin-top: 1rem;
}

.footer-logo img {
    width: 140px;
    display: block;
}

/* Column headings — unified via h5 */
.footer-col h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--c-text); /* inherits your heading colour */
    white-space: nowrap;
}

    .footer-col h5 a {
        transition: all 0.5s;
    }

        .footer-col h5 a:hover {
            color: var(--c-accent);
        }

.footer-col h4 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--c-text);
}

/* Link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .footer-links a {
        font-size: 0.82rem;
        color: var(--c-text-2);
        transition: color var(--transition);
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

        .footer-links a:hover,
        .nav-footer-contact:hover {
            color: var(--c-accent);
        }

    .footer-links li i {
        color: var(--c-accent);
        font-size: 0.65rem;
        flex-shrink: 0;
    }

.footer-col-top {
    margin-top: 1rem;
}

/* Contact info block */
.footer-contact-info {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-contact-info p {
        font-size: 0.78rem;
        color: var(--c-text-2);
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin: 0;
    }

    .footer-contact-info i {
        color: var(--c-accent);
        font-size: 0.7rem;
        flex-shrink: 0;
        margin-right: 5px;
    }

.nav-footer-contact {
    color: var(--c-text-2);
    transition: color var(--transition);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-bottom p {
        font-size: 0.75rem;
        color: var(--c-text-muted);
    }

        .footer-bottom p a {
            color: var(--c-accent);
            transition: opacity var(--transition);
        }

            .footer-bottom p a:hover {
                opacity: 0.8;
            }

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--c-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-text-2);
        font-size: 0.78rem;
        transition: all var(--transition);
    }

        .footer-social a:hover {
            background: var(--c-accent);
            border-color: var(--c-accent);
            color: #fff;
        }

/* ── Responsive ──────────────────────────────── */

/* Large laptop — tighten gap slightly */
@media (max-width: 1280px) {
    .footer-top {
        gap: 2rem;
    }
}

/* Tablet landscape — 4 cols, brand full-width */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1; /* spans full width */
        display: flex;
        align-items: center;
        gap: 2rem;
    }

        .footer-brand p {
            margin-top: 0;
        }
}

/* Tablet portrait — 3 cols */
@media (max-width: 820px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Mobile — 2 cols */
@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.25rem;
        padding: 40px 0 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Small mobile — 1 col */
@media (max-width: 360px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ========================= MOBILE MENU ========================= */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--c-surface);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    overflow-y: auto;
    height: 100vh;
}

    .mobile-menu.open {
        display: flex;
    }

.mobile-links {
    list-style: none;
}

    .mobile-links li {
        border-bottom: 1px solid var(--c-border);
    }

    .mobile-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
        font-weight: 500;
    }

.mobile-links-sub {
    padding-left: 1.5rem;
}

    .mobile-links-sub a {
        font-size: 0.95rem;
        color: var(--c-text-2);
    }

/* ========================= SECTION HEADER ========================= */
.section-header {
    margin-bottom: 4rem;
}

    .section-header.centered {
        text-align: center;
    }

    .section-header h2 {
        margin-top: 0.5rem;
    }

    .section-header p {
        margin-top: 1rem;
        max-width: 560px;
    }

    .section-header.centered p {
        margin-left: auto;
        margin-right: auto;
    }

/* ========================= UTILITIES ========================= */
.text-accent {
    color: var(--c-accent);
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.overflow-hidden {
    overflow: hidden;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
    .grid-2, .grid-3, .about-text {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-left: 0;
    }

    .tlc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .infra-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

        .infra-masonry .img-card:first-child {
            grid-row: auto;
            grid-column: 1 / 3;
            aspect-ratio: 16/9;
        }

    .infra-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-scroll {
        grid-template-columns: repeat(2, 1fr);
    }

    .innov-grid {
        grid-template-columns: 1fr;
    }

    .innov-visual {
        max-width: 280px;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-cap-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    h3 {
        font-size: 1.1rem;
    }

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

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

    .nav-links, .nav-right .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .products-cap-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-scroll {
        grid-template-columns: repeat(2, 1fr);
    }

    .infra-masonry {
        grid-template-columns: 1fr;
    }

        .infra-masonry .img-card:first-child {
            grid-column: auto;
        }

    .infra-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .tlc-grid {
        grid-template-columns: 1fr;
    }

    .tlc-img-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

        .tlc-img-wrap .img-card:first-child {
            grid-row: auto;
        }

    .sustain-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
        border-radius: 12px;
    }

        .cta-form input {
            text-align: center;
        }

        .cta-form button {
            margin: 0;
            border-radius: 0 0 10px 10px;
        }
}

.fixed-ht {
    height: 70px;
}

.team-desktop {
    display: block;
}

.team-mobile {
    display: none;
}

/* Hriday Drishyam slide */
/* Wrapper */
.orb-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.10);
    user-select: none;
    border-radius:16px;
}

/* Track — one slide visible at a time */
.orb-carousel-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Each slide */
.orb-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Fixed height — all images fill this, regardless of aspect ratio */
    height: 480px;
}

    /* Image — covers the fixed height, centres on the subject */
    .orb-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        transition: transform .6s ease;
    }

    .orb-slide.active img {
        transform: scale(1.02);
    }

/* Caption overlay */
.orb-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(to top, rgba(5,8,20,.92) 0%, rgba(5,8,20,.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: .35rem;
    z-index: 2;
}

.orb-slide-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: .04em;
    color: #fff;
    line-height: 1.15;
}

.orb-slide-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #00c2ff;
}

/* Prev / Next buttons */
.orb-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,160,210,.15);
    border: 1px solid rgba(0,160,210,.35);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s;
    /* Keep above caption gradient */
    margin-top: -24px; /* shift above caption area */
}

    .orb-carousel-btn:hover {
        background: rgba(0,160,210,.5);
        border-color: #00a0d2;
    }

.orb-carousel-prev {
    left: 16px;
}

.orb-carousel-next {
    right: 16px;
}

/* Dots */
.orb-carousel-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .45rem;
    z-index: 10;
}

.orb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}

    .orb-dot.active {
        background: #00a0d2;
        transform: scale(1.3);
    }

/* Slide counter (top-right) */
.orb-carousel-counter {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: .2rem;
    font-family: 'DM Mono', monospace;
    font-size: .65rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    z-index: 10;
    background: rgba(0,0,0,.35);
    padding: .3rem .7rem;
}

.orb-counter-cur {
    color: #00c2ff;
    font-size: .75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .orb-slide {
        height: 320px;
    }

    .orb-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .orb-slide {
        height: 240px;
    }

    .orb-slide-caption {
        padding: 2rem 1rem 1rem;
    }

    .orb-carousel-btn {
        width: 32px;
        height: 32px;
    }
}
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-links {
        gap: 1.5rem;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .nav-links {
        gap: 0.8rem;
    }

    .btn-primary {
        padding: 0.3rem;
    }

    .nav-right {
        gap: 0.5rem;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .nav-logo img {
        width: 135px;
    }

    .fixed-ht {
        height: 60px;
    }

    .parallax-bg-01 {
        padding: 3rem 0;
    }

    .footer-top {
        padding: 30px 0 20px;
    }

    .parallax-bg-02, .parallax-bg-04 {
        padding: 80px 0px;
    }

    .parallax-bg-03 {
        height: 50vh;
    }

    .team-desktop {
        display: none;
    }

    .team-mobile {
        display: block;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
