@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

.products-wrapper{
    display: flex;
    flex-wrap: wrap;
}

/* --------------------------
Default Code 
-----------------------------*/
.image-animation {
    position: relative;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.image-animation:before {
    content: "";
    /* REQUIRED */
    position: absolute;
    /* REQUIRED */

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 555px;
    height: 555px;

    background-image: url("../images/shape1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    animation: circleimagerotate 30s linear infinite;

    z-index: -9;
    /* control layering */
}

/* Optional: keep main image above */
.image-animation img {
    position: relative;
    z-index: 1;
}

@keyframes circleimagerotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

.top {
    width: 98%;
    margin: 0 auto;
    max-width: 1920px;
    overflow: hidden;
}

.top2 {
    width: 90%;
    margin: 0 auto;
    max-width: 1920px;
}


.top-sec4 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-top2 {
    width: 90%;
    margin: 0 auto;
    max-width: 1920px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top3 {
    width: 84%;
    margin: 0 auto;
    overflow: hidden;
}

.top4 {
    width: 87%;
    margin: 0 auto;
    overflow: hidden;
}

.top5 {
    width: 94%;
    margin: 0 auto;
    overflow: hidden;
}


.col_sm1 {
    width: 100%;
}

.col_sm1_1 {
    width: 98%;
    float: left;
    margin: 1%;
}

.col_sm2 {
    width: 48%;
    float: left;
    margin: 1%;
}

.col_sm2-2 {
    width: 50%;
    float: left;
    margin-bottom: -1%;
}

.col_sm3 {
    width: 31%;
    float: left;
    margin: 1%;
}

.col_sm1_1 {
    width: 100%;
    float: left;
    margin: 1%;
}


.col_sm3_3 {
    width: 28%;
    float: left;
    margin: 1%;
}

.col_sm4 {
    width: 23%;
    margin: 1%;
    float: left;
}

.col_sm5 {
    width: 18%;
    margin: 1%;
    float: left;
}

.col_sm6 {
    width: 16%;
    margin: 1% 0;
    float: left;
}

.col_sm44 {
    width: 28%;
    margin: 1%;
    float: left;
}

.col_sm8 {
    width: 58%;
    float: left;
    margin: 1%;
}


.img {
    width: 100%;
    display: block;
}



.map-img {
    width: 80%;
    display: block;
    margin: 0 auto;
}



.logo {
    width: 200px;
}

.fix_nav {
    position: absolute;
    z-index: 9999;
    border-bottom: 1px solid #fffff1;
    background: #000;
}

hr {
    border: 0.5px solid #c7c7c775;
}


/* Image Mapping */
.scene {
    position: relative;
    height: 74vh;
    border-radius: 16px;
    overflow: visible;
}

/* ── BIG CIRCLE ── */
.big-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-46%, -50%);
    width: 600px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.big-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.big-circle:hover img {
    transform: scale(1.04);
}

/* ── LEFT LABEL CARDS ── */
.side-left {
    position: absolute;
left: 12%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.label-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 1px 16px;
    background: rgb(236 236 236);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(220, 215, 205, 0.8);
    border-radius: 9px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
    min-width: 189px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}

.label-card:hover,
.label-card.active {
    border-color: rgb(255 242 0);
    box-shadow: 0 3px 16px rgba(232, 160, 32, 0.2);
    transform: translateX(4px);
}

.label-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-thumb img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.label-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.label-arrow {
    font-size: 9px;
    color: #bbb;
}

.label-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    font-family: "Space Grotesk", sans-serif;
}

/* ── HOTSPOT DOTS ── */
.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 8;
}

.hotspot-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgb(255 242 0);
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.28);
    transition: transform 0.2s;
    animation: hspulse 2.2s ease infinite;
}

@keyframes hspulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.28);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(232, 160, 32, 0.07);
    }
}

.hotspot:hover .hotspot-dot {
    transform: scale(1.4);
    animation: none;
    box-shadow: 0 0 0 6px rgba(232, 160, 32, 0.18);
}

/* ── CONNECTOR LINES ── */
.connector-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 242, 0, 0.4), rgba(200, 188, 168, 0.15));
    transform-origin: left center;
    pointer-events: none;
    z-index: 5;
    opacity: 1; /* always visible */
    transition: all 0.25s ease;
}

/* 🔥 ACTIVE LINE */
.connector-line.active {
    background: linear-gradient(90deg, #fff200, #ff9900, #fff200);
    background-size: 200% 100%;
    animation: flow 1.5s linear infinite;
}

@keyframes flow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* ── TEST BENCH (right) ── */
.bench-card {
    position: absolute;
right: 12%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 10;
}

.bench-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    font-family: "Space Grotesk", sans-serif;
}

.bench-thumb {
    width: 200px;
    height: 300px;
    border-radius: 9px;
    border: 1.5px solid #ddd;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #3a5a78;
    transition: border-color 0.2s, transform 0.15s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.bench-thumb:hover {
    border-color: rgb(255 242 0);
    transform: scale(1.04);
}

.bench-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.22);
}

.play-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon::after {
    content: '';
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #333;
    margin-left: 2px;
}

.bench-sub {
    color: #999;
    text-align: right;
    line-height: 1.6;
        font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: "Space Grotesk", sans-serif;

}

/* ── TOOLTIP ── */
.tooltip-box {
    position: absolute;
    z-index: 30;
    background: #fff;
    border: 1px solid #e0dbd2;
    border-radius: 9px;
    padding: 10px 14px;
    min-width: 190px;
    max-width: 230px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px) scale(0.97);
    transition: opacity 0.18s, transform 0.18s;
}

.tooltip-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tt-title {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.tt-body {
    font-size: 11.5px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 6px;
}

.tt-badge {
    display: inline-block;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #faeeda;
    color: #854f0b;
    font-weight: 600;
}

/* ── DIVIDER LINES (left panel separator) ── */
.divider-line {
    position: absolute;
    left: 24%;
    width: 1px;
    background: rgba(180, 170, 155, 0.3);
    top: 100px;
    bottom: 100px;
    z-index: 1;
}

/* ── TITLE ── */
.scene-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
    z-index: 3;
}

.footer-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #bbb;
    white-space: nowrap;
    z-index: 3;
}

.footer-label span {
    color: rgb(255 242 0);
}


  /* ── VIDEO MODAL ── */
  .video-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  .video-overlay.open {
    display: flex;
    animation: fadeInOverlay 0.22s ease;
  }
  @keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .video-modal {
    position: relative;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    width: min(820px, 92vw);
    box-shadow: 0 24px 80px rgba(0,0,0,0.55);
    animation: scaleIn 0.22s ease;
  }
  @keyframes scaleIn {
    from { transform: scale(0.93); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
  }
  .video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .video-modal-title {
    font-size: 13px;
    font-weight: 600;
    color: #e8e0d0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .video-modal-title span {
    color: #e8a020;
    margin-right: 6px;
  }
  .video-close {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #ccc;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
  }
  .video-close:hover { background: rgba(232,160,32,0.25); color: #e8a020; }
  .video-modal video {
    width: 100%;
    display: block;
    max-height: 70vh;
    background: #000;
  }
  .video-modal-footer {
    padding: 10px 18px;
    background: #1a1a1a;
    font-size: 10px;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }


  /* =========================
   RESPONSIVE DESIGN
========================= */

/* ---------- LARGE TABLETS (≤1200px) ---------- */
@media (max-width: 1200px) {

    .big-circle {
        width: 480px;
        height: 480px;
        transform: translate(-50%, -50%);
    }

    .side-left {
        left: 5%;
        gap: 14px;
    }

    .label-card {
        min-width: 150px;
        padding: 6px 10px;
    }

    .label-thumb {
        width: 70px;
        height: 70px;
    }

    .label-name {
        font-size: 14px;
    }

    .bench-thumb {
        width: 160px;
        height: 240px;
    }
}

/* ---------- TABLET (≤992px) ---------- */
@media (max-width: 992px) {

    .scene {
        height: auto;
        padding: 60px 20px;
    }

    .big-circle {
        position: relative;
        height: 380px;
        margin: 0 auto;
        transform: none;
    }

    /* STACK LEFT + RIGHT */
    .side-left{
        position: relative;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .bench-card{
        position: relative;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
                align-items: center;
    }


        .side-left {
        left: 0%;
    }

    .label-card {
        flex: 1 1 45%;
        justify-content: center;
    }

    .divider-line {
        display: none;
    }

    /* hide connector lines (optional) */
    .connector-line {
        display: none;
    }

        .bench-card {
        right: 0 !important;
        align-items: center;
    }

    .bench-sub{
        text-align: center;
    }

        .bench-thumb {
        width: 74%;
        height: 500px;
    }
}





/*-----------------------------
section 1 CSS
-----------------------------*/

.pdg {
    padding: 40px 0px 40px 0px;
}

.pdg-abt {
    padding: 40px 0px 40px 0px;
}

.pdg-cont {
    padding: 40px 0px 40px 0px;
}

.sec1-bg {
    background-image: url("../images/sec1-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* 👈 important */
    background-attachment: scroll;
}

.clear {
    clear: both;
}

.ab-img-pdg {
    padding: 80px;
    position: relative;
}

.abt-img-brd {
    border-radius: 10px;
}

.box-abt-over {
    width: 260px;
    min-height: 260px;
    position: absolute;
    right: 69px;
    bottom: 70px;

    background: #fff200;
    /* orange */
    border: 10px solid #fff;
    border-radius: 35px;

    padding: 25px 20px;
    color: #000;
}

/* Top Row */
.top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Icon circle */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Number */
.top-row h2 {
    font-size: 48px;
    font-weight: 700;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: #c3c3c3;
    margin: 15px 0;
}

/* Text */
.box-abt-over p {
    font-size: 20px;
    line-height: 1.4;
}

.box-abt-over p strong {
    font-weight: 700;
}

.sec1-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec1-text h6 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: transparent;
    /* important */
    -webkit-text-stroke: 1px #000;
    /* outline color */

    /* fallback for non-webkit */
    /*text-stroke: 1px #000;*/
    margin-bottom: 20px;
}

.sec1-text h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.sec1-text h4 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 20px;
}

.sec1-text p {
    font-family: "Space Grotesk", sans-serif;
    text-align: justify;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    line-height: 140%;
}


.ghost-marquee {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 30px 0;
}

/* Track animation */
.marquee-track {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: scroll 50s linear infinite;
}

/* Text style */
.marquee-track h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 80px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: transparent;
    -webkit-text-stroke: 1px #000;
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*-----------------------------
section 1 CSS
-----------------------------*/
.products-banner {
background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: end;
    margin-top: 9%;
}

.products-banner h2 {
font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: #000;
}

.products {
    background: #fafafa;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
}

.products img {
    padding: 10%;
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.products:hover {
    background: #000;
}

.products-content {
    padding: 0 4%;
}

.products-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    color: #000;
    line-height: 140%;
}

.products:hover .products-content h2 {
    color: #fff;
}

.products-content p {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    line-height: 140%;
min-height: 76px;
}

.products:hover .products-content p {
    color: #fff;
}

.number-line {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.number-line span {
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #E4E4E4;
    stroke: #E4E4E4;
    -webkit-text-fill-color: #02010100;
    position: relative;
    z-index: 2;
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    color: #f5f5f6;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    display: block;
}

/* Line */
.number-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.number-line span {
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
    /* faded effect */
}


/* BUTTONS */
.products-buttons {
    display: flex;
    gap: 15px;
    z-index: 0;
    position: relative;
}

.products-buttons .btn {
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.products-buttons .btn.primary {
    background: #fff200;
    color: #000;
}

.products-buttons .btn.primary:hover {
    background: #cac005;
}

.products-buttons .btn.secondary {
    background: #000;
    color: #fff;
}


.products:hover .products-buttons .btn.secondary {
    background: #fff;
    color: #000;
}


/* POPUP BACKGROUND */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* FORM STYLE */
.popup-box h2 {
    margin-bottom: 20px;
}

.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-box button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #333;
}



.box-abt-over2 {
    width: 234px;
    min-height: 24vh;
    position: absolute;
    right: 86px;
    bottom: 85px;
    background: #fff200;
    border-radius: 15%;
    padding: 25px 20px;
    color: #000;
}

.top-row2 h2 {
    font-size: 57px;
    text-align: center;
    font-family: 'Space Grotesk';
    line-height: 140%;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.divider2 {
    width: 100%;
    height: 1px;
    margin: 0 0 15px 0;
    background: #c3c3c34a;
}

.box-abt-over2 p {
    text-align: center;
    font-family: 'Space Grotesk';
    line-height: 140%;
    font-size: 21px;
}


.sec1-text2 h6 {
    font-family: 'Space Grotesk';
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #00000000;
    -webkit-text-stroke: 0.5px #000000;
    margin-bottom: 20px;
    line-height: 140%;
}

.sec1-text2 h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.sec1-text2 h4 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 20px;
}

.sec1-text2 p {
    font-family: "Space Grotesk", sans-serif;
    text-align: justify;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    line-height: 140%;
}



/*-----------------------------
section 2 CSS
-----------------------------*/
/* WRAPPER */
.slider-wrapper {
    width: 90%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}

/* SLIDER */
.slider {
    display: flex;
    transition: 0.4s ease;
}

/* EACH ITEM */
.col_sm44 {
    min-width: 25%;
    padding: 15px;
}

/* ===== CARD DESIGN ===== */
.card-box {
    position: relative;
}


/* Image Container */
.card-img {
    position: relative;
    width: 100%;
    height: 350px;
    /* IMPORTANT */
    border-radius: 20px;
    overflow: hidden;
}

/* Background Layer */
.card-img .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/product-bg.png) center/cover no-repeat;
    border-radius: 20px;
    z-index: 1;
}

/* Product Image */
.card-img img {
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    z-index: 2;
    object-fit: contain;
}

/* CONTENT */
.card-content {
    position: absolute;
    bottom: -26px;
    left: 89px;
    right: 0px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

/* TEXT */
.card-content h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: 'Space Grotesk';
    line-height: 140%;
}

.card-content h2 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Space Grotesk';
    line-height: 140%;
    color: #000;
}

/* ===== BUTTONS ===== */
.nav-btn {
    position: absolute;
    top: 50%;
    /*transform:translateY(-50%);*/
    background: rgb(255 242 0);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 4px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}



.sec2-text h6 {
    font-family: 'Space Grotesk';
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #00000000;
    -webkit-text-stroke: 0.5px #000000;
    margin-bottom: 20px;
    line-height: 140%;
    text-align: center;
}

.sec2-text h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: center;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.sec2-bg {
    background: #f1f1f1;
}

.sec2-bg2 {
    background: url(../images/bg1.webp);
}

.padding {
    padding: 3%;
}

.sec2-txt h2 {
    font-family: "Poppins", sans-serif;
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.sec2-txt p {
    font-family: "Poppins", sans-serif;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    line-height: 140%;
}


/* Container */
/* Container (important for overflow) */
.img-min-height {
    overflow: hidden;
}

/* Image default */
.img-min-height img {
    height: 90vh;
    width: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* Hover zoom */
.img-min-height:hover img {
    transform: scale(1.1);
}

/* Inner wrapper (NEW) */
.img-3d {
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Image */
.img-3d img {
    height: 90vh;
    width: 100%;
    object-fit: cover;

    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover 3D */
.img-min-height:hover .img-3d img {
    transform: scale(1.1) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/*-----------------------------
section 2
-----------------------------*/

/*-----------------------------
mouse cursor
-----------------------------*/
/* Keep default arrow */
body {
    cursor: default;
}

/* Custom circle */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #bbb;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Inner dot */
.cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff200;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/*-----------------------------
mouse cursor
-----------------------------*/

/*-----------------------------
section 4 CSS
-----------------------------*/
.sec4-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gear-wrap {
    position: relative;
    /* width: 234px; */
    /* height: 200px; */
    left: 42%;
    /* float: right; */
    top: -314px;
}

/* Common gear style */
.gear {
    position: absolute;
    width: 95px;
}

/* Left gear */
.gear1 {
    left: 0;
    top: 40px;
    animation: rotateClock 6s linear infinite;
}

/* Right gear */
.gear2 {
    right: 0;
    top: 0;
    animation: rotateAnti 6s linear infinite;
}

/* Clockwise */
@keyframes rotateClock {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Anti-clockwise */
@keyframes rotateAnti {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.sec4-text h6 {
    font-family: 'Space Grotesk';
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #00000000;
    -webkit-text-stroke: 0.5px #000000;
    margin-bottom: 20px;
    line-height: 140%;
    margin-top: 3%;
}

.sec4-text h3{
        font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 25px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
}

.sec4-text h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.sec4-text h4 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 20px;
}

.sec4-text p {
    font-family: "Space Grotesk", sans-serif;
    text-align: justify;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.3s ease;
}



/* ROW */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

/* ICON */
.feature-icon {
    width: 60px;
    height: 60px;
    /*border:2px solid #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 28px;
}

/* TEXT */
.feature-text h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.feature-text p {
    font-family: "Space Grotesk", sans-serif;

    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.sec4-bg {
    background: #e6e6e5;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
}

.driver{
    background: url(../images/blog-pattern-bg-robo.webp);
}

.driver h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: center;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.driver h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    line-height: 140%;
    color: #000;
}

.rs-carousel {
    overflow: hidden;
    position: relative;
}

.rs-track {
    display: flex;
    transition: transform 0.5s ease;
}

.rs-grid {
    min-width: 23%;
    /* 3 items visible */
    padding: 10px;
    box-sizing: border-box;
}

.rs-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    background-color: #fff;
    position: relative;
    border-radius: 20px 0 0 0;
    margin-left: 15px;
    flex-direction: column;
    margin-right: 15px;
}

.rs-grid:before {
    position: absolute;
    content: "";
    top: -12px;
    right: 0;
    background-color: #fff;
    width: 125px;
    height: 12px;
    border-radius: 15px 20px 0 0;
}

.rs-grid:after {
    position: absolute;
    content: "";
    bottom: -12px;
    right: 0;
    background-color: #fff;
    width: 100px;
    height: 12px;
    border-radius: 0 0 20px 15px;
}

.left-shape {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 12px;
    background-color: #fff;
    border-radius: 0 0 15px 20px;
}

.rs-grid img {
    padding: 20px 0 0;
    width: 350px;
    height: 350px;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.5s ease-in-out;

}

.rs-grid:hover img {
    transform: scale(1.2);
}

/*-----------------------------
footer 
-----------------------------*/
.foter-bg {
    background: #000;
}

.ftr-head h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    /*margin-bottom: 10px;*/
}

.ftr-head p {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.ftr-head p a {
    text-decoration: none;
    color: #fff;
}

.ftr-head h6 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: transparent;
    /* important */
    -webkit-text-stroke: 1px #fff;
    /* outline color */

    /* fallback for non-webkit */
    /*text-stroke: 1px #000;*/
    margin-bottom: 20px;
}


/* List */
.ftr-head ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Items */
.ftr-head ul li {
    margin-bottom: 18px;
}

/* Links */
.ftr-head ul li a {
    font-family: "Space Grotesk", sans-serif;

    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover Effect */
.ftr-head ul li a:hover {
    color: #fff200;
    /* yellow */
    transform: translateX(6px) scale(1.05);
}

/* Icons container */
.social-icons {
    display: flex;
    gap: 15px;
}

/* Icon style */
.social-icons a {
    font-family: "Space Grotesk", sans-serif;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfbfbf;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover */
.social-icons a:hover {
    background: #fff200;
    color: #000;
    transform: scale(1.1);
}

.mar-right {
    margin-left: 63px;
}

.footer-bottom {
    font-family: "Space Grotesk", sans-serif;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0b0b0b;
    color: #bfbfbf;
    font-size: 14px;
    flex-wrap: wrap;
}

/* Left & Right */
.footer-bottom .left,
.footer-bottom .right {
    flex: 1;
}

/* Align text */
.footer-bottom .right {
    text-align: right;
}

/* Paragraph reset */
.footer-bottom p {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    margin: 0;
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom .right {
        text-align: center;
    }
}

/*-----------------------------
footer
-----------------------------*/
.slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

#slider {
    display: flex;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .products {
        flex: 0 0 50%;
        /* 2 items */
    }
}

@media (max-width: 576px) {
    .products {
        flex: 0 0 100%;
        /* 1 item */
    }
}



/*-----------------------------
Whatsapp up
-----------------------------*/

.whatsapp_float {
    text-decoration: none;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon {
    margin-top: 16px;
}


/* SECTION */
.rd-section {
    padding: 80px 20px;
}

/* CONTAINER */
.rd-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.rd-content {
    flex: 1;
}

.rd-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITLE */
.rd-content h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 52px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}

.rd-content h2 span {
    color: #fff200;
}

/* TEXT */
.rd-content p {
    font-family: "Space Grotesk", sans-serif;
    text-align: justify;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.3s ease;
}

/* BUTTON */
.rd-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #fff200;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.rd-btn:hover {
    background: #000;
    color: #fff;
}

/* RIGHT IMAGE */
.rd-image {
    flex: 1;
    position: relative;
}

.img-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: 0.4s;
}

.img-box img {
width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.img-box:hover {
    transform: rotate(0deg) scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rd-container {
        flex-direction: column;
        text-align: center;
    }

    .rd-content h2 {
        font-size: 30px;
        text-align: center;
    }

    .rd-content p {
    text-align: center;
}

}



/* SECTION */
.proj-section {
    padding: 60px;
}

/* HEADER */
.proj-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proj-subtitle {
    color: #fff200;
    letter-spacing: 3px;
    font-size: 12px;
}

.proj-title {
    font-size: 36px;
}

/* NAV */
.proj-nav button {
    background: #eee;
    border: none;
    padding: 10px 14px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.proj-nav button:hover {
    background: #fff200;
    color: #000;
}

/* CAROUSEL */
.proj-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    margin-top: 40px;
    scroll-behavior: smooth;
}

/* CARD */
.proj-card {
    min-width: 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.proj-card h3{
font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

/* IMAGE */
.proj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 100px 0 0 0;
}

/* HOVER */
.proj-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.proj-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* BADGE */
.proj-badge {
    background: #fff200;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    color: #000;
}


.contact{
    border: 1px solid #cccccc87;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.contact-icon{
    width: 45px;
    background: #eeebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    margin: 4% 1% 6% 1%;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
}

.contact h2{
        font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 25px;
    color: #000;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
}


.contact p{
    font-family: "Space Grotesk", sans-serif;
    text-align: left;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    line-height: 140%;
    transition: 0.3s;
}

.contact p a{
    font-family: "Space Grotesk", sans-serif;
    text-align: justify;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    line-height: 140%;
    transition: 0.3s;
}

.contact:hover p a{
    color: #f9ec03;
}

.contact:hover .contact-icon {
    background: #f9ec03;
}


/* SECTION */
.contact-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* BOX */
.contact-box {
    background: #f2f2f2;
    width: 100%;
    max-width: 1300px;
    padding: 60px 40px;
    border-radius: 6px;
    border-top: 4px solid #f9ec03;
    text-align: center;
}

/* TITLE */
.contact-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-box p {
    color: #777;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* FORM */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.3s;
}

/* FOCUS EFFECT */
input:focus, textarea:focus {
    border-color: #f9ec03;
    box-shadow: 0 0 5px rgba(255, 90, 0, 0.2);
}

/* TEXTAREA */
textarea {
    height: 150px;
    resize: none;
    margin-bottom: 25px;
}

/* BUTTON */
.btn {
    background: #f9ec03;
    color: #000;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}

.btn:hover {
    background: #f9ec03;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/*------------------------------------------
Responsive Code 
------------------------------------------*/
@media only screen and (max-width :1600px) {
    .ab-img-pdg {
    padding: 22px;
    }

    .box-abt-over2 {
    right: 22px;
    bottom: 30px;
    }
}

@media only screen and (max-width :1500px) {
        .box-abt-over2 {
        right: 11px;
        bottom: 21px;
    }
    .side-left {
    left: 3%;
    }

 .bench-card {
    right: 3%;
    }

}

@media only screen and (max-width :1580px) {

.pdg-abt {
    padding: 90px 0px 40px 0px;
}

.pdg-cont {
    padding: 90px 0px 40px 0px;
}

}

@media only screen and (max-width :1400px) {
            .box-abt-over2 {
    width: 213px;

        padding: 19px 21px;
    }
}

@media only screen and (max-width :1300px) {
        .ab-img-pdg {
        padding: 0px;
    }

            .box-abt-over2 {
        width: 192px;
        bottom: -4px;
        
        }
}



@media only screen and (max-width :1200px) {

}

@media screen and (max-width: 1100px) {}

@media only screen and (max-width :1000px) {
    .rs-grid {
    min-width: 48%;
    }

    .col_sm44 {
min-width: 48%;
    }

    .about-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col_sm2-2 {
    width: 100%;
}

.sec1-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.col_sm2 {
    width: 98%;
}

        .box-abt-over2 {
        display: none;
    }
}


@media only screen and (max-width:960px) {
    .big-circle {
        left:0;
    }

    .col_sm4 {
    width: 48%;
    }

    .hotspot {
    display: none;
    }

}

@media only screen and (max-width:800px) {}


@media only screen and (max-width : 700px) {}

@media only screen and (max-width:600px) {
        .label-card {
        flex: 1 1 50%;
        }

            .big-circle {
        width: 358px;

            }
        .rs-grid {
    min-width: 98%;
    }

    .col_sm44 {
    min-width: 98%;
    }

    .col_sm4 {
    width: 98%;
}

.mar-right {
    margin-left: 0;
}



}

@media only screen and (max-width:500px) {
    .proj-section {
    padding: 14px;
}
}




@media only screen and (max-width:400px) {
        .big-circle {
        width: 314px;
    }

}

@media only screen and (max-width:360px) {}