/* style.css — Mobile first */

/* CSS variables for theming */
:root {
    --blue: #041f3d;
    --red: #041f3d;
    --white: #ffffff;
    --bg: #ffffff;
    --surface: #ffffff58;
    --text: #0b2545;
    --muted: #1a327f;
    --accent: #1a327f;
    --accent-2: #1a327f;
    --radius: 12px;
    --container: 1100px;
    --glass: rgba(255, 255, 255, 0.6);
    --card-shadow: 0 6px 22px rgba(6, 20, 41, 0.08);
    --transition: 300ms cubic-bezier(.2, .9, .2, 1);
}

/* Basic reset */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--surface);
    color: var(--text);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Utility container */
.container {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    max-width: calc(var(--container) + 2rem);
}



/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.container {
    max-width: 1600px;
    margin: auto;
    padding: 14px 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img {
    height: 42px;
}

/* MOBILE TOGGLE */
.nav-toggle {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
}

/* ================= MOBILE NAV ================= */

.nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 120;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform .3s ease;

    /* SCROLL FIX */
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav.open {
    transform: translateX(0);
}

/* STICKY CLOSE BAR */
.nav-top {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 16px;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.close-nav {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-weight: 700;
}

/* NAV LIST */
.nav-list {
    list-style: none;
    padding: 16px;
    margin: 0;
}

/* LINKS */
.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    padding: 12px 0;
    text-decoration: none;
}

.arrow {
    transition: transform .25s ease;
}

/* MEGA (ACCORDION) */
.mega-menu {
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.has-mega.open .mega-menu {
    max-height: 3000px;
}

.mega-inner {
    padding-left: 10px;
}

.mega-col h4 {
    color: var(--blue);
    font-size: 14px;
    margin-top: 18px;
}

.mega-col h4 a {
    display: block;
    color: var(--blue);
    font-size: 14px;
    padding: 8px 0;
    text-decoration: none;
}

.mega-col h5 {
    color: var(--blue);
    font-size: 9px;
    margin: 12px 0 6px;
}

.mega-col h5 a {
    display: block;
    color: #000000;
    font-size: 11px;
    padding: 6px 0;
    text-decoration: none;
}

.mt {
    margin-top: 22px;
    color: var(--blue);
    font-size: 14px;
    
}
.mt a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    text-decoration: none;  
}

/* CONTACT */
.contact-btn a {
    display: block;
    margin: 2px;
    background: var(--blue);
    color: var(--white);
    padding: 14px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    border-radius: 13px;
}

.contact-btn span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
}

/* ================= DESKTOP ================= */

@media (min-width: 992px) {

    .nav-toggle,
    .nav-top {
        display: none;
    }

    .nav {
        position: static;
        transform: none;
        height: auto;
        overflow: visible;
        background: none;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .nav-link {
        color: var(--blue);
        font-size: 18px;
        font-weight: 600;
        position: relative;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 4px;
        width: 0;
        background: var(--red);
        transition: width .3s ease;
    }

    .has-mega:hover .nav-link::after,
    .nav-link:hover::after {
        width: 100%;
    }

    /* DESKTOP MEGA */
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: var(--white);
        padding: 50px 0;
        max-height: none;
        display: none;
    }

    .has-mega:hover .mega-menu {
        display: block;
    }

    .mega-inner {
        max-width: 1600px;
        margin: auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
    .contact-btn {
        color: var(--white);
        background: var(--blue);
        border: solid 2px var(--blue);
        border-radius: 18px;
    }

    .contact-btn a {
        background: var(--white);
        box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    }
}

/* 4K */
@media (min-width: 1800px) {
    .mega-inner {
        max-width: 1800px;
    }
}

/* ============================================================
   HERO SECTION (FULLY RESPONSIVE - MOBILE, TABLET, LAPTOP, 4K)
============================================================ */

/* Main container */
.hero-v2 {
    position: relative;
    height: 90vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1a2a;
}

/* Background Carousel */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
}

/* Content Box */
.hero-content-box {
    position: relative;
    z-index: 3;
    max-width: 680px;
    color: #fff;
    padding: 1.6rem;
}

/* Hero Heading */
.hero-content h1 {
    font-size: clamp(1.6rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

/* Subheading */
.hero-content .lead {
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 1.4rem;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.btn {
    padding: clamp(0.7rem, 1vw, 1rem) clamp(1rem, 1.6vw, 1.6rem);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    text-decoration: none;
}

.btn.primary {
    background: var(--blue);
    color: white;
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Features Grid */
.hero-features-v2 {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    margin-top: 0.5rem;
}

.feat {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    font-size: clamp(0.82rem, 1vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

/* Dots */
.carousel-dots-v2 {
    position: absolute;
    bottom: -22px;
    left: 1.6rem;
    display: flex;
    gap: 10px;
}

.carousel-dots-v2 .dot {
    width: clamp(10px, 1vw, 14px);
    height: clamp(10px, 1vw, 14px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots-v2 .dot.active {
    background: #fff;
}

/* ============================================================
   TABLET RESPONSIVE (600px–991px)
============================================================ */
@media (min-width: 600px) and (max-width: 991px) {

    .hero-content-box {
        max-width: 700px;
        padding: 2rem 2.5rem;
    }

    .hero-features-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.7rem;
    }

    .feat {
        padding: 0.7rem 1rem;
    }
}

/* ============================================================
   LAPTOP RESPONSIVE (992px–1440px)
============================================================ */
@media (min-width: 992px) {

    .hero-v2 {
        height: 88vh;
    }

    .hero-content-box {
        padding: 3rem;
        max-width: 760px;
    }

    .hero-features-v2 {
        grid-template-columns: repeat(2, 1fr);
        width: 80%;
    }
}

/* ============================================================
   LARGE DESKTOP / 4K (1440px–2560px)
============================================================ */
@media (min-width: 1440px) {

    .hero-v2 {
        height: 92vh;
    }

    .hero-content-box {
        max-width: 900px;
        padding: 4rem;
    }

    .hero-content h1 {
        font-size: 3.4rem;
    }

    .hero-content .lead {
        font-size: 1.25rem;
        max-width: 650px;
    }

    .btn {
        padding: 1.2rem 2rem;
        font-size: 1.15rem;
    }

    .hero-features-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feat {
        padding: 1rem 1.2rem;
        font-size: 1.15rem;
    }

    .carousel-dots-v2 {
        gap: 14px;
    }
}




/* Services grid */
/* Section */
.industries-sec {
    padding: 3rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: 1.7rem;
    margin-bottom: .4rem;
    background: var(--blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Grid */
.industries-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card */
.industry-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(10px);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.industry-card:nth-child(odd) {
    animation-delay: .10s;
}

.industry-card:nth-child(even) {
    animation-delay: .25s;
}

/* Hover animations */
.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1, 76, 99, 0.5);
    box-shadow: 0 8px 30px rgba(2, 128, 163, 0.25);
    transition: 0.35s ease;
}

/* Title */
.industry-card h3 {
    margin: 0 0 .5rem;
    font-size: 1.15rem;
    color: #013e4f;
}

/* Text */
.industry-card p {
    margin: 0 0 .8rem;
    color: #1f1f1f;
    font-size: .9rem;
}

/* Link */
.industry-card .link {
    color: #013e4f;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.industry-card .link:hover {
    text-decoration: underline;
    letter-spacing: .5px;
}

.industry-card {
    opacity: 0;
    transform: translateY(30px);
}

.industry-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: .6s ease;
}

/* Animation */
@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Projects preview */
/* Section Base */
.projects-preview {
    padding: 2rem 0 3rem;
}

.projects-head {
    text-align: center;
    margin-bottom: 2.2rem;
}

.projects-head h2 {
    font-size: 2rem;
    font-weight: 700;
}

.projects-head p {
    color: #7a8b9a;
    max-width: 500px;
    margin: 0.5rem auto 0;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

@media (min-width: 600px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Project Card */
.project-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.project-img {
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/* Text Body */
.project-body {
    padding: 1rem 1.2rem 1.3rem;
}

.project-body h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-body p {
    margin: 0.4rem 0 1rem;
    color: #5c6a78;
}

.project-body .link {
    font-weight: 600;
    color: var(--primary, #0a84ff);
    text-decoration: none;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- WHY CHOOSE SECTION --- */
.why-choose {
    padding: 3.5rem 0;
    background: #f7f9fc;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* Title */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #000000, #01aef3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Choose List */
.choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.choose-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    align-items: flex-start;
}

.choose-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.choose-list i {
    font-size: 1.4rem;
    color: #1d7ded;
    margin-top: 4px;
}

.choose-list strong {
    font-size: 1.05rem;
    color: #0a1a2a;
}

.choose-list p {
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
    color: #555;
}

/* Button */
.btn.primary {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.btn.primary:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

/* Right Image */
.img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.img-wrap img {
    width: 100%;
    display: block;
    border-radius: inherit;
    transition: 0.4s ease;
}

.img-wrap:hover img {
    transform: scale(1.03);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .choose-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 3rem;
    }
}


/* Hero / Breadcrumb */
.hero-breadcrumb {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 28px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    filter: contrast(1.05) saturate(0.95) brightness(.6);
    transition: transform 12s linear;
    will-change: transform;
}

/* animated gradient overlay + noise */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 107, 240, 0.12), rgba(0, 163, 138, 0.06));
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    gap: 20px;
}

.crumb {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: small;
    box-shadow: var(--card-shadow);
    font-weight: 600;
}

.hero-title {
    max-width: 68%;
}

.hero-title h1 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.2vw, 44px);
    letter-spacing: -0.6px;
    font-weight: 800;
}

.hero-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.93);
    font-weight: 600;
    opacity: .95;
}

/* subtle floating accent */
.spark {
    display: inline-block;
    margin-left: 10px;
    transform-origin: center;
    animation: float 3.2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Breadcrumb chip small text */
.crumb i {
    color: var(--accent);
}

/* ===== About section ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: center;
    padding: 48px 0;
}

.about .intro h2 {
    font-size: clamp(20px, 2.4vw, 34px);
    margin: 0 0 12px;
    font-weight: 800;
    line-height: 1.05;
}

.about .intro p.lead {
    color: var(--muted);
    margin: 0 0 18px;
    line-height: 1.7;
    font-size: 15px;
}

.about .card {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

/* visual column */
.visual {
    position: relative;
}

.visual .door {
    background: linear-gradient(180deg, #ffffff, #f7fbfc);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--card-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 360px;
    overflow: hidden;
    position: relative;
}

.badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    background: var(--accent);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 107, 240, 0.12);
}

.visual img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* ===== Values ===== */
.values {
    padding: 48px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.value:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(6, 20, 41, 0.08);
}

.value .icon {
    font-size: 28px;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.value h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.value p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ===== Why choose us ===== */
.why {
    padding: 56px 0;
}

.why .section-head {
    text-align: center;
    margin-bottom: 28px;
}

.why .section-head h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.why-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 20, 41, 0.08);
}

.why-card .icon {
    font-size: 24px;
    color: var(--accent);
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* responsive */
@media (max-width:1100px) {
    .about {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-title {
        max-width: 100%;
    }
}

@media (max-width:640px) {

    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .visual .door {
        height: 260px;
    }

    .hero-breadcrumb {
        min-height: 260px;
    }

    .hero-inner {
        padding: 18px;
    }
}

/* small reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* ========== SERVICES SECTION ========== */

.services {
    padding: 64px 0;
}

.section-head h3 {
    color: var(--text);
}

.services-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(6, 20, 41, 0.08);
}

.service-card .icon {
    font-size: 30px;
    color: var(--accent-2);
}

.service-card h4 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width:900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= CONTACT SECTION ================= */

.contact-map {
    margin-top: 32px;
    margin-bottom: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.contact-form h3 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
}

.contact-form p {
    margin: 0 0 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.input-group input,
.input-group textarea {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #d5dee8;
    font-size: 15px;
    outline: none;
    transition: border var(--transition), box-shadow var(--transition);
    background: #fff;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 107, 240, 0.15);
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button */
.btn-submit {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    background: #084ec0;
    transform: translateY(-3px);
}

/* CONTACT INFO */
.contact-info {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.contact-info h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 800;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.info-item i {
    font-size: 22px;
    color: var(--accent-2);
}

.info-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--muted);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= PRODUCTS SECTION =================*/

.products-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(6, 20, 41, 0.12);
}

/* Image container */
.img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-bottom: 1px solid #e3e7ee;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .img-box img {
    transform: scale(1.08);
}

/* Content area */
.product-info {
    padding: 18px 22px;
    background: #fff;
}

.product-info .category {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.product-info h4 {
    margin: 6px 0 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= PRODUCT DETAILS ================= */

.pd-category {
    color: var(--accent-2);
    font-weight: 600;
    letter-spacing: 0.6px;
}

.pd-title {
    font-size: 34px;
    font-weight: 800;
    margin: 6px 0 24px;
}

/* GRID */
.pd-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* SLIDER */
.pd-slider {
    position: relative;
}

.pd-frame {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.pd-slides {
    display: flex;
    width: 300%;
    transition: transform .5s var(--transition);
}

.pd-slides img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* NAV BUTTONS */
.pd-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: none;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
}

.pd-nav.left {
    left: -10px;
}

.pd-nav.right {
    right: -10px;
}

.pd-nav:hover {
    background: #fff;
}

/* DOTS */
.pd-dots {
    text-align: center;
    margin-top: 12px;
}

.pd-dots span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #d4dce9;
    margin: 0 5px;
    cursor: pointer;
}

.pd-dots span.active {
    background: var(--accent-2);
}

/* INFO */
.pd-info h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.pd-info ul {
    margin: 0 0 16px;
    padding-left: 16px;
}

.pd-info p,
.pd-info li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.pd-btn {
    margin-top: 12px;
    padding: 12px 26px;
    border-radius: 30px;
    border: 2px solid var(--accent-2);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.pd-btn:hover {
    background: var(--accent-2);
    color: #fff;
}

/* TABS */
.pd-tabs {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.pd-tab-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.pd-tab {
    padding: 10px 18px;
    border-radius: var(--radius);
    background: #eff4f9;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.pd-tab.active {
    background: var(--accent-2);
    color: #fff;
}

.pd-tab-content {
    display: none;
    padding-top: 6px;
    color: var(--muted);
}

.pd-tab-content.active {
    display: block;
}

/* BACK BUTTON */
.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    background: var(--accent-2);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
}

.pd-back:hover {
    background: var(--accent);
}

/* Responsive */
@media(max-width: 900px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-frame {
        height: 340px;
    }

    .pd-slides img {
        height: 340px;
    }
}


.footer-cta {
    background: linear-gradient(135deg, #0a1a2a, #153d63);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: -1rem;
    position: relative;
    overflow: hidden;
}

.footer-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-cta .btn.primary.large {
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    background: #fff;
    color: #0a1a2a;
    transition: 0.3s ease;
}

.footer-cta .btn.primary.large:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* -----------------------------------
       MAIN FOOTER SECTION
----------------------------------- */
/* ==============================
   FOOTER BASE
============================== */

.site-footer {
  background: #ffffff;
  color: var(--blue);
  font-size: 15px;
    border-top: 2px solid var(--blue);
}

/* ==============================
   FOOTER TOP
============================== */

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 70px 20px;
}

/* ==============================
   FOOTER COLUMNS
============================== */

.footer-col h4 {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: var(--blue);
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.95;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* ==============================
   CONTACT COLUMN
============================== */

.footer-contact p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-contact strong {
  font-weight: 700;
}

/* ==============================
   SOCIAL ICONS
============================== */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

/* ==============================
   FOOTER BOTTOM
============================== */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
  border: 1px solid var(--blue);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  opacity: 0.95;
}

/* ==============================
   TABLET ≥ 768px
============================== */

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==============================
   DESKTOP ≥ 1200px
============================== */

@media (min-width: 1200px) {
  .footer-inner {
    padding: 90px 0;
  }
}




/* -----------------------------------
       DESKTOP LAYOUT
----------------------------------- */
@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-cta {
        border-radius: 0;
    }
}


/* Tablet */
@media (min-width: 999px) {
    .container {
        padding: 1.4rem;
    }

    .nav {
        background: var(--white);
        position: static;
        display: block;
        top: auto;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.6rem;
        align-items: center;
    }

    .nav-list a {
        background: transparent;
        box-shadow: none;
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
    }

    .nav-toggle {
        display: none;
    }


    .mega-card img {
        height: 140px;
    }

    .hero-inner {
        grid-template-columns: 1fr 480px;
        align-items: center;
        gap: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-media img {
        width: 100%;
        border-radius: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop / laptop: center mega menu under nav and 4-column grid for mega cards */
@media (min-width: 1024px) {
    .container {
        max-width: var(--container);
    }

    .nav-list a {
        font-size: 18px;
        padding: 0.6rem 1rem;
    }

    .mega-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 4rem);
        max-width: 1100px;
        margin-top: 0.6rem;
        pointer-events: none;
        opacity: 0;
        transition: opacity var(--transition), transform var(--transition);
    }

    .has-mega:focus-within .mega-menu,
    .has-mega:hover .mega-menu,
    .has-mega[aria-expanded="true"] .mega-menu {
        pointer-events: auto;
        opacity: 1;
        transform: translateX(-50%) translateY(6px);
    }

    .mega-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr 560px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Wide / 4k scale up nicely */
@media (min-width: 1440px) {
    :root {
        --container: 1400px;
    }

    .hero-inner {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* Ultra wide 4K */
@media (min-width: 2560px) {
    :root {
        --container: 2100px;
    }

    .container {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

/* small accessibility focus */
a:focus {
    outline: 3px solid rgba(11, 107, 240, 0.16);
    outline-offset: 3px;
    border-radius: 6px;
}



/* ==============================
   SECTION
============================== */

.dlns-slider-section {
  width: 100%;
  overflow: hidden;
  padding: 32px 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ==============================
   SLIDER CONTAINER
============================== */

.dlns-slider {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.dlns-slider::-webkit-scrollbar {
  display: none;
}
.dlns-slider {
  scrollbar-width: none;
}

/* ==============================
   CARD BASE
============================== */

.dlns-card {
  flex: 0 0 80%;
  max-width: 80%;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  scroll-snap-align: start;
  position: relative;
  isolation: isolate;

  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px rgba(15, 23, 42, 0.04);

  transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    box-shadow 0.35s ease;
}

/* ==============================
   LINK
============================== */

.dlns-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ==============================
   IMAGE
============================== */

.dlns-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 14px;
  display: block;
  transition: transform 0.35s ease;
}

/* ==============================
   TEXT
============================== */

.dlns-card h3 {
  margin: 16px 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #0b2545;
  letter-spacing: 0.01em;
}

.dlns-card p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

/* ==============================
   COMING SOON
============================== */

.dlns-card.coming-soon {
  opacity: 0.85;
}

.dlns-card.coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0b2545;
  color: #ffffff;
}

/* ==============================
   TABLET ≥ 768px
============================== */

@media (min-width: 768px) {

  .dlns-slider-section {
    padding: 48px 8px;
  }

  .dlns-slider {
    gap: 20px;
    padding: 28px 32px;
  }

  .dlns-card {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 18px;
  }

  .dlns-card h3 {
    font-size: 1.05rem;
  }

  .dlns-card p {
    font-size: 0.78rem;
  }
}

/* ==============================
   LAPTOP ≥ 1024px
============================== */

@media (min-width: 1024px) {

  .dlns-slider-section {
    padding: 64px 8px;
  }

  .dlns-slider {
    gap: 24px;
    padding: 39px 48px;
  }

  .dlns-card {
    flex: 0 0 30%;
    max-width: 30%;
    border-radius: 18px;
  }

  /* Hover only on desktop devices */
  @media (hover: hover) {

    .dlns-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.14),
        inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    }

    .dlns-card:hover img {
      transform: scale(1.04);
    }
  }
}

/* ==============================
   DESKTOP ≥ 1280px
============================== */

@media (min-width: 1280px) {

  .dlns-card {
    flex: 0 0 26%;
    max-width: 26%;
  }

  .dlns-card h3 {
    font-size: 1.15rem;
  }

  .dlns-card p {
    font-size: 0.8rem;
  }
}

/* ==============================
   4K / LARGE DESKTOP ≥ 1600px
============================== */

@media (min-width: 1600px) {

  .dlns-slider-section {
    padding: 80px 8px;
  }

  .dlns-card {
    flex: 0 0 22%;
    max-width: 22%;
  }

  .dlns-card h3 {
    font-size: 1.25rem;
  }

  .dlns-card p {
    font-size: 0.85rem;
  }
}



/* ===============================
   RESOURCE SECTION
================================ */

.resource-section {
  padding: 40px 0 80px;
  background: #ffffff;
}

/* ===============================
   GRID
================================ */

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  justify-items: center;
}

/* ===============================
   CARD
================================ */

.resource-card {
  text-align: center;
  max-width: 320px;
}

/* ===============================
   IMAGE FRAME
================================ */

.resource-image {
  background: #05224a;
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.resource-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
}

/* ===============================
   TEXT
================================ */

.resource-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #05224a;
  margin: 10px 0 4px;
  letter-spacing: 0.04em;
}

.resource-card p {
  font-size: 0.85rem;
  color: #000;
  margin-bottom: 16px;
}

/* ===============================
   BUTTON
================================ */

.resource-btn {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}

.resource-btn:hover {
  background: var(--blue);
  color: #ffffff;
}

/* ===============================
   TABLET ≥ 768px
================================ */

@media (min-width: 768px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

/* ===============================
   LAPTOP ≥ 1024px
================================ */

@media (min-width: 1024px) {
  .resource-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   DESKTOP ≥ 1280px
================================ */

@media (min-width: 1280px) {
  .resource-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===============================
   4K ≥ 1600px
================================ */

@media (min-width: 1600px) {
  .resource-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .resource-card h3 {
    font-size: 1.15rem;
  }

  .resource-btn {
    font-size: 0.85rem;
  }
}


/* ======================================
   PRODUCT DETAIL SECTION
====================================== */

.product-detail-section {
  padding: 40px 0 70px;
  background: #ffffff;
}

/* ======================================
   GRID
====================================== */

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* ======================================
   LEFT CONTENT
====================================== */

.product-info {
  animation: fadeUp 0.6s ease forwards;
}

.product-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b2545;
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 26px;
}

/* ======================================
   SPEC TABLE
====================================== */

.product-specs {
  border-top: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.spec-row span:first-child {
  color: #64748b;
}

.spec-row span:last-child {
  font-weight: 600;
  color: #0b2545;
}

/* ======================================
   CTA BUTTON
====================================== */

.enquiry-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ======================================
   RIGHT IMAGE
====================================== */

.product-image-wrap {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 16px;
  animation: fadeIn 0.7s ease forwards;
}

.product-image-wrap img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
}

/* ======================================
   TABLET ≥ 768px
====================================== */

@media (min-width: 768px) {

  .product-detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }

  .product-title {
    font-size: 1.9rem;
  }
}

/* ======================================
   LAPTOP ≥ 1024px
====================================== */

@media (min-width: 1024px) {

  .product-detail-section {
    padding: 70px 0 90px;
  }

  .product-title {
    font-size: 2.2rem;
  }

  .product-image-wrap img {
    max-width: 480px;
  }
}

/* ======================================
   4K ≥ 1600px
====================================== */

@media (min-width: 1600px) {

  .product-title {
    font-size: 2.6rem;
  }

  .spec-row {
    font-size: 1rem;
  }
}

/* ======================================
   ANIMATIONS
====================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ==============================
   CTA GROUP
============================== */

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

/* Brochure Button */

.brochure-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #0b2545;
  color: #0b2545;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  background: transparent;
}

.brochure-btn:hover {
  background: #0b2545;
  color: #ffffff;
}

/* ==============================
   TABLET & UP
============================== */

@media (min-width: 768px) {
  .product-cta {
    flex-direction: row;
    align-items: center;
  }
}



/* ======================================
   PRODUCT COMING SOON SECTION
====================================== */

.product-coming-soon {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

/* ======================================
   CARD
====================================== */

.coming-soon-card {
  background: var(--blue);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 40px 24px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: fadeUp 0.7s ease forwards;
}

/* ======================================
   BADGE
====================================== */

.coming-badge {
  display: inline-block;
  background: #d40000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* ======================================
   HEADINGS & TEXT
====================================== */

.coming-soon-card h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.coming-soon-card .desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.expert-text {
  margin-top: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.phone {
  display: block;
  margin: 8px 0 28px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

/* ======================================
   CTA BUTTON
====================================== */

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #d40000;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(212,0,0,0.45);
}

/* ======================================
   TABLET ≥ 768px
====================================== */

@media (min-width: 768px) {

  .coming-soon-card {
    padding: 60px 60px;
  }

  .coming-soon-card h1 {
    font-size: 2.6rem;
  }

  .coming-soon-card .desc {
    font-size: 1rem;
  }
}

/* ======================================
   LAPTOP ≥ 1024px
====================================== */

@media (min-width: 1024px) {

  .coming-soon-card {
    padding: 70px 90px;
  }

  .coming-soon-card h1 {
    font-size: 3rem;
  }
}

/* ======================================
   4K ≥ 1600px
====================================== */

@media (min-width: 1600px) {

  .coming-soon-card h1 {
    font-size: 3.6rem;
  }

  .phone {
    font-size: 1.4rem;
  }
}

/* ======================================
   ANIMATION
====================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==============================
   COMING SOON BLINK ANIMATION
============================== */

.coming-badge {
  animation: pulseBlink 1.8s infinite;
}

@keyframes pulseBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* =========================
   SLIDER SECTION
========================= */
.digihydro-slider-section {
  width: 100%;
  padding: 32px 0;
  background: #f5f7fa;
}

/* =========================
   SLIDER CONTAINER
   16:9 for 1920x1080
========================= */
.digihydro-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

/* =========================
   SLIDES (ANIMATABLE)
========================= */
.digihydro-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  z-index: 0;
}

.digihydro-slide.digihydro-active {
  transform: translateX(0);
  z-index: 2;
}

.digihydro-slide.digihydro-exit-left {
  transform: translateX(-100%);
  z-index: 1;
}

.digihydro-slide.digihydro-exit-right {
  transform: translateX(100%);
  z-index: 1;
}

/* =========================
   SLIDE IMAGE
========================= */
.digihydro-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none; /* critical for clicks */
}

/* =========================
   FOOTER BAND
========================= */
.digihydro-slide-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(11, 37, 69, 0.68);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
}

/* =========================
   SLIDE TEXT
========================= */
.digihydro-slide-text {
  max-width: 65%;
}

.digihydro-slide-text a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}

/* =========================
   CTA BUTTON
========================= */
.digihydro-slide-action {
  text-decoration: none;
}

.digihydro-btn {
  background: #0b2545;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.digihydro-slide-action:hover .digihydro-btn {
  background: #ffffff;
  color: #0b2545;
}

/* =========================
   NAVIGATION ARROWS
========================= */
.digihydro-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.digihydro-prev { left: 12px; }
.digihydro-next { right: 12px; }

.digihydro-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* =========================
   TABLET (768px+)
========================= */
@media (min-width: 768px) {
  .digihydro-slider {
    max-width: 100%;
  }

  .digihydro-slide-footer {
    height: 110px;
    padding: 0 32px;
  }

  .digihydro-slide-text a {
    font-size: 26px;
  }
}

/* =========================
   LAPTOP (1024px+)
========================= */
@media (min-width: 1024px) {
  .digihydro-slider {
    max-width: 1200px;
  }

  .digihydro-slide-footer {
    height: 120px;
  }

  .digihydro-slide-text a {
    font-size: 30px;
  }

  .digihydro-btn {
    padding: 14px 34px;
    font-size: 16px;
  }
}

/* =========================
   LARGE / 4K (1440px+)
========================= */
@media (min-width: 1440px) {
  .digihydro-slider {
    max-width: 1400px;
  }

  .digihydro-slide-footer {
    height: 140px;
  }

  .digihydro-slide-text a {
    font-size: 34px;
  }
}

/* =========================
   MOBILE FOOTER STACK
========================= */
@media (max-width: 600px) {
  .digihydro-slide-footer {
    flex-direction: column;
    height: auto;
    gap: 14px;
    padding: 16px;
    text-align: center;
  }

  .digihydro-slide-text {
    max-width: 100%;
  }
}
/* ======================================
   PRODUCT RIGHT SECTION
====================================== */


.prod-right-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.prod-right-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.prod-right-content {
  animation: prodRightFadeLeft 1s ease forwards;
}

.prod-right-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 20px;
}

.prod-right-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

/* WhatsApp Button */
.prod-right-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.prod-right-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* Right Image */
.prod-right-image-wrap {
  position: relative;
  animation: prodRightFadeRight 1.1s ease forwards;
}

.prod-right-image {
  width: 100%;
  max-width: 460px;
  display: block;
  margin-left: auto;
  transform: scale(0.95);
  transition: transform 0.6s ease;
}

.prod-right-image-wrap:hover .prod-right-image {
  transform: scale(1);
}

/* Animations */
@keyframes prodRightFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes prodRightFadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .prod-right-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prod-right-image {
    margin: 40px auto 0;
  }
}


.prod-left-section {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden;
}

.prod-left-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left Image */
.prod-left-image-wrap {
  animation: prodLeftFadeLeft 1.1s ease forwards;
}

.prod-left-image {
  width: 100%;
  max-width: 460px;
  display: block;
  transform: scale(0.95);
  transition: transform 0.6s ease;
}

.prod-left-image-wrap:hover .prod-left-image {
  transform: scale(1);
}

/* Right Content */
.prod-left-content {
  animation: prodLeftFadeRight 1s ease forwards;
}

.prod-left-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 20px;
}

.prod-left-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

/* WhatsApp Button */
.prod-left-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.prod-left-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* Animations */
@keyframes prodLeftFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes prodLeftFadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .prod-left-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prod-left-image {
    margin: 0 auto 40px;
  }
}
