﻿

:root {
    --container: 1200px;
    --ink: #111827;
    --muted: #9F9FA9;
    --line: #e5e7eb;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --brand: #1877f2;
    --accent: #1e824c;
    --radius: 14px;
    --h1: 42px;
    --h1-lh: 52px;
    --h2: 28px;
    --h2-lh: 36px;
    --h3: 20px;
    --h3-lh: 28px;
    --body: 16px;
    --body-lh: 26px;
    --small: 14px;
    --small-lh: 22px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    font-family: 'opensans-regular';
    color: var(--ink);
    background: #fff
}

@font-face {
    font-family: 'opensans-regular';
    src: url('../fonts/opensans-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'segmdl2';
    src: url('../fonts/segmdl2.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-regular';
    src: url('../fonts/poppins-regular.ttf') format('truetype');
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 24px;
}

    .container h2 {
        text-align: center;
        color: deepskyblue;
    }

.section {
    padding: 56px 0;
}

.grid {
    display: grid;
    gap: 24px
}

h1 {
    font-size: var(--h1);
    line-height: var(--h1-lh);
    margin: 0 0 12px
}

h2 {
    font-size: var(--h2);
    line-height: var(--h2-lh);
    margin: 0 0 12px
}

h3 {
    font-size: var(--h3);
    line-height: var(--h3-lh);
    margin: 0 0 8px
}

p {
    font-size: var(--body);
    line-height: var(--body-lh);
    margin: 0
}

.muted {
    color: var(--muted)
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container_form {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

    .container_form h2 {
        text-align: left;
        color: deepskyblue;
    }


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 160px;
    height: auto;
    margin-left: -26px;
}


.nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: color 0.3s;
}

    .nav a:hover {
        color: #0098e2;
    }

    .nav a.active {
        color: #0098e2;
        font-weight: 600;
    }

.mega {
    position: static;
}

.product-popup {
    gap: 20px;
    z-index: 100;
    position: absolute;
    top: 70px;
    left: 42%;
    right:0px;
    width: 50%;
    background: #fff;
    padding: 15px 15px 15px 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-radius: 4px;
    display: none;
    height: 320px;
}

    .product-popup::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 6%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #fff;
        filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.08));
    }

.menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

    .menu-link .arrow {
        width: 7px;
        height: 7px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .menu-link:hover .arrow {
        transform: rotate(225deg);
    }


.mega:hover .product-popup {
    display: flex;
}

.left-item {
    font-size: 15px;
    cursor: pointer;
    font-weight: 700;
}

    .left-item.active,
    .left-item:hover {
        color: #0098e2;
    }

.popup-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 120px;
}

    .popup-left ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 250px;
        align-items: flex-start;
    }

    .popup-left li {
        padding: 5px 0;
        font-size: 15px;
        cursor: pointer;
        color: #333;
        width: fit-content;
        font-weight: 600;
    }

        .popup-left li.active,
        .popup-left li:hover {
            color: #0098e2 !important;
        }

.popup-divider {
    width: 1px;
    background: #e5e5e5;
}

.popup-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.right-list {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

    .right-list.active {
        display: flex;
    }

.col {
    width: 100%;
    height: fit-content;
}

.toggle-head.active {
    color: #0098e2;
}

.inline-list {
    display: none;
    position: absolute;
    left: 290px;
    top: 0px;
    padding: 0 20px 0 20px;
    min-width: 220px;
    z-index: 99;
}

    .inline-list a {
        font-size: 14px;
    }

.row-box:hover .inline-list {
    display: block;
    top: -6px;
}

.mega:hover .product-popup {
    display: flex;
}

.toggle-head {
    width: 290px;
    margin: 10px 0px -15px 0px !important;
    padding: 0px 0px 0px 0px !important;
    font-size: 15px;
    font-weight: 600;
    border-right: 1px solid #ccc;
    padding-right: 15px;
    cursor: pointer;
}

/* SUB-ITEMS */
.A_tag {
    display: block;
    margin: 5px 0;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

    .A_tag:hover {
        color: #0098e2;
    }

.row-box {
    position: relative;top:-4px;
}

@media (max-width: 768px) {
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .logo img {
        width: 100px;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('../images/banner_1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 0px;
    }

.hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 32px;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
}

.hero p {
    color: var(--ink);
    font-size: 1rem;
    max-width: 550px;
}

.btns {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 23px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 14px;
}

    .btn.primary {
        background: #00A5E6;
        color: #fff;
    }

@media (max-width: 1024px) {
    .hero {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

        .hero .container {
            padding: 0 30px;
        }
}


.company-section {
    background: #fff;
    padding: 80px 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.company-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    padding: 0 0px;
}

.company-image img {
    width: 1000px;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    align-items: flex-start;
}

.company-content {
    max-width: 550px;
}

    .company-content h2 {
        color: #0099e6;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .company-content p {
        color: #79716B;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }

/* ================================
      MOBILE & TABLET RESPONSIVE
================================ */
@media (max-width: 992px) {

    .company-section {
        padding: 50px 0;
        width: 100%;
    }

    .company-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .company-image img {
        width: 100%;
        max-width: 450px;
        opacity: 1;
    }

    .company-content {
        max-width: 100%;
        text-align: left;
    }

        .company-content h2 {
            font-size: 24px;
            text-align: left;
        }

        .company-content p {
            font-size: 15px;
            line-height: 1.7;
            text-align: justify;
        }
}

/* ================================
      SMALL MOBILE (Below 576px)
================================ */
@media (max-width: 576px) {

    .company-section {
        padding: 40px 0;
    }

    .company-container {
        padding: 0 15px;
    }

    .company-image img {
        max-width: 520px;
    }

    .company-content h2 {
        font-size: 22px;
    }

    .company-content p {
        font-size: 14.5px;
        line-height: 1.6;
    }
}


.about-section {
    margin-bottom:100px;
}

.about-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}


.bg-blue {
    position: absolute;
    width: 490px;
    left: 0;
    top: -0.5px;
    z-index: 1;
}

.bg-fingerprint {
    position: absolute;
    width: 265px;
    left: 40px;
    top:270px;
    z-index: 2;
}

.abt-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

    .abt-content ul li {
        font-size: 15.5px;
        line-height: 1.1;
        margin-bottom: 12px;
        text-align: justify;
        color: #79716B;
    }

.abt-content h5 {
    font-size: 16px;
    color: #79716B;
    margin-bottom: 12px;
    font-weight: 500;
}

.main-photo {
    position: relative;
    width: 515px;
    border-radius: 14px;
    z-index: 5;
    margin-left: 143px;
    margin-top: 75px;
}

.about-content {
    margin-left: 620px;
    max-width: 550px;
    z-index: 10;margin-top:80px;
}

    .about-content h5 {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 0px;
    }

    .about-content h2 {
        color: #0098e2;
        font-size: 24px;
        font-weight: 1000;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 15.5px;
        line-height: 1.5;
        margin-bottom: 12px;
        text-align: justify;
        color: #79716B;
    }

    .about-content .sub-text {
        font-size: 14.5px;
        text-align: justify;
        line-height: 1.7;
        color: #79716B;
    }


@media (max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .bg-blue {
        position: relative;
        width: 100%;
        max-width: 350px;
        left: 0;
        top: 0;
        margin-bottom: 20px;display:none;
    }

    .about-content {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        z-index: 10;
    }

        .about-content h2 {
            font-size: 22px;
        }

        .about-content p {
            font-size: 15px;
            line-height: 1.6;
            text-align: justify;
        }

        .about-content .sub-text {
            font-size: 14.5px;
            line-height: 1.6;
        }

    .about-section {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {

    .bg-blue {
        max-width: 260px;
        margin: 0 auto 20px auto;
        display: none;
    }

    .about-wrapper {
        padding: 0 15px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-content p,
    .about-content .sub-text {
        font-size: 14.5px;
    }
}


.about-section1 {
    background: #E8F6FC;
    padding: 80px 0px 130px 0px;
}

.container-block {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.abt-row {
    position: relative;
    margin-bottom: 25px;
    height: 330px;
}

    .abt-row.reverse .img-box.big {
        left: auto;
        right: 0;
    }

    .abt-row.reverse .img-box.small {
        left: auto;
        right: 250px;
        top: 110px;
    }

.img-box {
    position: absolute;
    border-radius: 25px;
    overflow: hidden;
}

    .img-box.big {
        width: 340px;
        height: auto;
        top: 20px;
        left: 0;
    }

    .img-box.small {
        width: 200px;
        height: auto;
        left: 250px;
        top: 100px;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.abt-content {
    position: absolute;
    width: 57%;
    top: 62%;
    left: 520px;
    transform: translateY(-50%);
}

.abt-row.reverse .abt-content {
    left: 0px;
    
}

.abt-content h2 {
    color: #0099e6;
    font-size: 26px;
    margin-bottom: 12px;
}

.abt-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #79716B;
    text-align: justify;
}

.view-more {
    font-size: 15px;
    color: #0099e6;
    margin-left: 6px;
    text-decoration: none;
    font-weight: 600;
}


@media (max-width: 992px) {

    .about-section1 {
        padding: 40px 0px 60px 0px;
    }

    .abt-row {
        position: relative;
        height: auto;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-box {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        margin-bottom: 15px;
    }

        .img-box.big {
            width: 60%;
            max-width: 330px;
            height: auto;
        }

        .img-box.small {
            width: 55%;
            max-width: 200px;
            height: auto;
            margin-top: -60px;
            z-index: 5;
        }

    .abt-content {
        position: relative;
        width: 100%;
        left: 0 !important;
        top: 0 !important;
        transform: none;
        margin-top: 20px;
        text-align: left;
    }

        .abt-content h2 {
            font-size: 22px;
        }

        .abt-content p,
        .abt-content ul li {
            font-size: 15px;
            line-height: 1.6;
            text-align: justify;
        }

    .view-more {
        display: inline-block;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {

    .img-box.big {
        width: 60%;
    }

    .img-box.small {
        width: 60%;
        margin-top: -50px;display:none;
    }

    .abt-content h2 {
        font-size: 20px;
    }

    .abt-content p,
    .abt-content ul li {
        font-size: 14.5px;
    }
}


.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    min-height: 180px
}

.twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.products-section {
    padding: 60px 20px 370px 20px;
    background: #e6f7ff;
}

    .products-section h2 {
        text-align: center;
        color: #0099e6;
        font-size: 26px;
        padding: 0px 0px 40px 0px;
        transition: all 0.4s ease;
    }

.product-card:hover {
    background: #34A6F4;
    transform: translateY(-6px);
}

    .product-card:hover h3,
    .product-card:hover ul li,
    .product-card:hover ul li::before {
        color: #fff !important;
    }

    .product-card:hover .icon img {
        filter: brightness(0) invert(1);
    }

    .product-card:hover button {
        background: #fff;
        color: #00A5E6;
    }

    .products-section p {
        color: #555;
        font-size: 15px;
        text-align: center;
        margin-bottom: 40px;
    }

.cards-row {
    display: flex;
    gap: 24px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 480px;
    padding: 35px 25px 5px 25px;
    transition: 0.3s;
}


    .product-card .icon img {
        width: 60px;
        margin-bottom: 10px;
    }

    .product-card h3 {
        margin: 6px 0;
    }

    .product-card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        color: #858688;
        font-size: 15px;
        line-height: 30px;
    }

        .product-card ul li::before {
            content: "→ ";
            color: #858688;
        }

    .product-card button {
        position: absolute;
        bottom: 20px;
        right: 24px;
        background: #00A5E6;
        border: none;
        color: #fff;
        padding: 10px 22px;
        border-radius: 30px;
        cursor: pointer;
        font-size: 14px;
    }


@media (max-width: 992px) {

    .products-section {
        padding: 40px 15px 400px 15px;
    }

    .cards-row {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .product-card {
        width: 100%;
        padding: 22px 18px 70px 18px;
        border-radius: 16px;
        background: #fff;
        position: relative;
    }

        .product-card .top-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .product-card .icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .product-card h3 {
            margin: 0;
            font-size: 17px;
            color: #333;
        }

        .product-card ul {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 25px;
        }

            .product-card ul li::before {
                content: "→ ";
                font-weight: bold;
                color: #0099e6;
            }

        .product-card button {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 9px 20px;
            font-size: 13px;
            border-radius: 25px;
            background: #0099e6;
            border: none;
            color: #fff;
        }
}

@media (max-width: 576px) {

    .product-card {
        padding: 20px 16px 65px 16px;
    }

        .product-card h3 {
            font-size: 16px;
        }

        .product-card ul {
            font-size: 13.5px;
        }

        .product-card button {
            padding: 8px 18px;
            font-size: 12.5px;
        }
}



.innovation-section {
    margin-top: -390px;
    text-align: center;
    padding: 60px 20px;
}

.title {
    color: #0099e6;
    font-size: 33px;
    margin-bottom: 10px;
    font-weight: 900;
}

.subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 300px;
    transition: all 0.3s ease;
}

.card-top {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-top img {
        width: 160px;
        height: auto;
    }

.card-bottom {
    padding: 20px;
    text-align: left;
}

    .card-bottom h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .card-bottom p {
        font-size: 13px;
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
    }

.read-btn {
    background: #00aaff;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .read-btn:hover {
        background: #0077cc;
    }

.fingerprint {
    background: #C9F9F2;
}

.dna {
    background: #D0F5FC;
}

.lab {
    background: #DEE6FC;
}

.logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.logo-box {
    padding: 5px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.logo-box1 {
    padding: 22px 5px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

    .logo-box img,
    .logo-box1 img {
        width: 150px;
        filter: grayscale(1%) brightness(0.01%) contrast(0.01%);
        transition: all 0.3s ease;
    }

    .logo-box:hover,
    .logo-box1:hover {
        background: #ffffff;
    }

        .logo-box:hover img,
        .logo-box1:hover img {
            filter: grayscale(0%) brightness(115%) contrast(110%);
            transform: scale(1.05);
        }

    .logo-box1 img {
        width: 200px;
    }


@media (max-width: 992px) {

    .logos {
        grid-template-columns: repeat(3, 1fr); /* 3 per row (tablet) */
        gap: 16px;
    }

    .logo-box,
    .logo-box1 {
        height: 110px; /* equal height */
        padding: 10px;
    }

        .logo-box img,
        .logo-box1 img {
            width: 120px; /* same width */
            height: auto;
            object-fit: contain;
        }
}


@media (max-width: 576px) {

    .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .logo-box,
    .logo-box1 {
        height: 100px;
        padding: 10px;
    }

        .logo-box img,
        .logo-box1 img {
            width: 110px;
            object-fit: contain;
        }
}



.clients-section {
    background: #e9f7fd;
    text-align: center;
    padding: 80px 20px 320px 20px;
}

.title {
    color: #0099e6;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 600;
}

.clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.client {
    background: #fff;
    border-radius: 22px;
    padding: 40px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

    .client:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    .client img {
        width: 65px;
        height: 65px;
        margin-bottom: 16px;
        display: inline-block;
        transition: transform 0.4s ease;
    }

    .client:hover img {
        transform: scale(1.12);
    }

    .client p {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        font-weight: 500;
    }



@media (max-width: 992px) {

    .clients-section {
        padding: 60px 20px 30px 20px;
    }

    .clients {
        grid-template-columns: repeat(2, 2fr) !important;
        gap: 18px;
        padding: 35px 18px;
        border-radius: 20px;
        min-width: 220px;
    }

    .client {
        padding: 28px 15px;
        border-radius: 18px;
    }

        .client img {
            width: 55px;
            height: 55px;
            margin-bottom: 12px;
        }

        .client p {
            font-size: 13.5px;
            line-height: 1.4;
        }
}


@media (max-width: 576px) {

    .clients {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }

    .client {
        min-width: 165px;
        padding: 22px 12px;
    }

        .client img {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }

        .client p {
            font-size: 13px;
            line-height: 1.35;
        }
}



/*.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }*/


.vmo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

    .vmo .box {
        background: #fff;
        border-radius: 30px;
        padding: 20px 30px;
        box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    }

.box p {
    color: #858688;
    font-size: 15px;
    text-align: justify;
}


.contact-section {
    padding: 60px 8%;
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-left {
    margin-top: 60px;
}


    .contact-left h2 {
        font-size: 28px;
        color: #0095ff;
        margin-bottom: 12px;
    }

    .contact-left p {
        font-size: 16px;
        color: #333;
        margin-bottom: 28px;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .info-item img {
        width: 22px;
        height: 22px;
        margin-top: 2px;
        filter: brightness(0) saturate(100%) invert(38%) sepia(94%) saturate(2334%) hue-rotate(191deg) brightness(101%) contrast(101%);
    }

    .info-item p {
        margin: 0;
        color: #333;
        line-height: 1.6;
    }


.video-section {
    background: white;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    width: 90%;
    max-width: 1250px;
    margin-top: -240px;
}

.video-thumb {
    position: relative;
    width: 380px;
    min-height: 50vh;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.play-btn {
    background: #414652;
    width: 75px;
    height: 50px;
    border-radius: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {

    .video-section {
        padding: 50px 0 0 0;
    }

    .video-container {
        flex-wrap: wrap;
        gap: 25px;
        margin-top: -100px;
        justify-content: center;
    }

    .video-thumb {
        width: 45%;
        min-height: 280px;
        border-radius: 16px;
    }

        .video-thumb img {
            border-radius: 16px;
        }

    .play-btn {
        width: 60px;
        height: 40px;
    }
}

@media (max-width: 576px) {

    .video-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        width: 100%;
    }

    .video-thumb {
        width: 90%;
        min-height: 220px;
        border-radius: 16px;margin:0px auto;
    }

        .video-thumb img {
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

    .play-btn {
        width: 55px;
        height: 38px;
    }
}


.contact-form {
    background: #F7F8F9;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    padding: 50px 45px 100px 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-field label {
        font-size: 13px;
        color: var(--muted);
    }

input,
textarea {
    font: inherit;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 14px;
    background: #fff;
    width: 100%;
}

textarea {
    resize: none;
    min-height: 120px;
}

.submit-btn {
    margin-top: 8px;
}

    .submit-btn button {
        width: 100%;
        background: #007ad6;
        border: none;
        color: #fff;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s;
    }

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

.footer {
    border-top: 1px solid var(--line);
    background: #121524;
    padding-top: 50px;
}

    .footer .cols {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 24px;
        padding: 28px 0
    }

.foot-note {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }

    .twocol {
        grid-template-columns: 1fr
    }

    .cards-3 {
        grid-template-columns: 1fr 1fr
    }

    .vmo {
        grid-template-columns: 1fr
    }

    .logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .clients {
        grid-template-columns: 1fr 1fr
    }

    .footer .cols {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .nav ul {
        gap: 16px
    }

    .cards-3 {
        grid-template-columns: 1fr
    }

    .logos {
        grid-template-columns: repeat(2, 1fr)
    }

    .clients {
        grid-template-columns: 1fr
    }

    .form {
        grid-template-columns: 1fr
    }

    .footer .cols {
        grid-template-columns: 1fr
    }

    :root {
        --h1: 34px;
        --h1-lh: 44px
    }
}
