* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 25px;
}

/* NAVBAR */

.navbar {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

/* LOGO */

.logo img {
    width: 170px;
    display: block;
}

/* DESKTOP MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu li a {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #7d5aa9;
}

/* BUTTON */

.quote-btn {
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #7d5aa9;
}

/* TOGGLE */

.menu-toggle {
    width: 45px;
    height: 45px;
    background: #7d5aa9;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle i {
    color: #fff;
    font-size: 20px;
}

/* =========================
        MOBILE SIDEBAR
========================= */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    padding: 25px;
    transition: 0.4s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

/* OVERLAY */

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR TOP */

.sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sidebar-logo img {
    width: 150px;
}

/* CLOSE */

.close-sidebar {
    width: 42px;
    height: 42px;
    background: #7d5aa9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close-sidebar i {
    color: #fff;
    font-size: 20px;
}

/* SIDEBAR MENU */

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f7f7f7;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.sidebar-menu li a:hover {
    background: #7d5aa9;
    color: #fff;
    transform: translateX(5px);
}

/* SIDEBAR BUTTON */

.sidebar-btn {
    width: 100%;
    margin-top: 35px;
    background: #000;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.sidebar-btn:hover {
    background: #7d5aa9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px) {

    .nav-menu {
        display: none;
    }

    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}

@media(max-width:768px) {

    .navbar-flex {
        min-height: 75px;
    }

    .logo img {
        width: 130px;
    }

    .mobile-sidebar {
        width: 280px;
    }

}

/* ===================================
            HERO SECTION
=================================== */






/* form section  */

/* =========================
   FOOTER
========================= */
.cryptic-footer {
    width: 100%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 55px 60px 45px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 70px;
}

/* =========================
   LOGO
========================= */
.footer-logo {
    width: 165px;
    background: #f5f5f5;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

/* =========================
   LINE
========================= */
.footer-line {
    width: 125px;
    height: 3px;
    background: #000;
    margin-bottom: 26px;
    border-radius: 10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 320px;
    color: #333;
}

/* =========================
   LISTS
========================= */
.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s ease;
    position: relative;
}

.footer-col ul li a::before {
    content: "›";
    margin-right: 8px;
    font-size: 18px;
    color: #000;
}

.footer-col ul li a:hover {
    color: #000;
    padding-left: 4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i {
    margin-right: 10px;
    font-size: 16px;
    color: #000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p,
.footer-bottom span {
    font-size: 16px;
    margin: 0;
    color: #333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 45px 25px;
    }

    .footer-about p {
        max-width: 100%;
        font-size: 15px;
    }

    .footer-about h2,
    .footer-col h3 {
        font-size: 21px;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-bottom {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p,
    .footer-bottom span {
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

}




/* about us  */
/* ===== BANNER ===== */

.vintage-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* IMAGE */

.banner-car {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* full banner fill */
    object-position: center;
    display: block;
}

/* MOBILE */

@media(max-width:768px) {

    .vintage-banner {
        height: 25vh;
    }

    .banner-car {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        height: 150px;
    }

}

/*  */




/* new section  */




/* =========================
   FOOTER
========================= */
.cryptic-footer {
    width: 100%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 55px 60px 45px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 70px;
}

/* =========================
   LOGO
========================= */
.footer-logo {
    width: 165px;
    background: #f5f5f5;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

/* =========================
   LINE
========================= */
.footer-line {
    width: 125px;
    height: 3px;
    background: #000;
    margin-bottom: 26px;
    border-radius: 10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 320px;
    color: #333;
}

/* =========================
   LISTS
========================= */
.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s ease;
    position: relative;
}

.footer-col ul li a::before {
    content: "›";
    margin-right: 8px;
    font-size: 18px;
    color: #000;
}

.footer-col ul li a:hover {
    color: #000;
    padding-left: 4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i {
    margin-right: 10px;
    font-size: 16px;
    color: #000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p,
.footer-bottom span {
    font-size: 16px;
    margin: 0;
    color: #333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 45px 25px;
    }

    .footer-about p {
        max-width: 100%;
        font-size: 15px;
    }

    .footer-about h2,
    .footer-col h3 {
        font-size: 21px;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-bottom {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p,
    .footer-bottom span {
        font-size: 14px;
    }

    .footer-logo {
        width: 150px;
    }

}

/*  */

/*==============================
PRODUCT DETAILS SECTION
==============================*/

/*====================================
PRODUCT DETAILS SECTION
====================================*/

.cm-product-details {
    width: 100%;
    padding: 30px 70px;
    background-color: #f9f9f9 !important;
}

.cm-product-wrapper {
    width: 100%;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/*====================================
LEFT SIDE
====================================*/

.cm-left {
    width: 48%;
}

/*====================================
MAIN IMAGE
====================================*/

.cm-main-image {
    width: 100%;
    height: 470px;
    border: 1px solid #000;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
    cursor: zoom-in;
}

.cm-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.15s ease;
    transform-origin: center center;
}

/*====================================
THUMBNAILS
====================================*/

.cm-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.cm-thumb {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    transition: 0.3s;
}

.cm-thumb.active {
    opacity: 1;
    border: 2px solid #8b5cf6;
}

.cm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*====================================
RIGHT SIDE
====================================*/

.cm-right {
    width: 52%;
    padding-top: 25px;
    position: relative;
}

/*====================================
HEADING DESIGN
====================================*/

.cm-right h2 {
    font-size: 46px;
    line-height: 1.25;
    color: #111;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 18px;
}

/* UNDERLINE EFFECT */

.cm-right h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #000, #8b5cf6);
    border-radius: 20px;
}

/*====================================
PARAGRAPH DESIGN
====================================*/

.cm-right p {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
    font-weight: 400;
    position: relative;
    padding-left: 22px;
}

/* LEFT LINE EFFECT */

.cm-right p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 75%;
    background: #000;
    border-radius: 20px;
}

/* HIGHLIGHT TEXT */

.cm-right p strong {
    color: #000;
    font-weight: 600;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px) {

    .cm-right {
        width: 100%;
    }

    .cm-right h2 {
        font-size: 34px;
    }

}

@media(max-width:600px) {

    .cm-right h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .cm-right p {
        font-size: 15px;
        line-height: 1.9;
        padding-left: 16px;
    }

}

/*====================================
BUTTON ROW
====================================*/

.cm-btn-row {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
}

.cm-btn {
    width: 50%;
    height: 68px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cm-btn:hover {
    background: #111;
}

.cm-or {
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 18px;
    font-weight: 600;
    margin-left: -29px;
    margin-right: -29px;
    z-index: 2;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

/*====================================
BOTTOM BUTTON
====================================*/

.cm-connect-btn {
    width: 100%;
    height: 68px;
    background: #000;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 18px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cm-connect-btn:hover {
    background: #111;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px) {

    .cm-product-wrapper {
        flex-direction: column;
    }

    .cm-left,
    .cm-right {
        width: 100%;
    }

    .cm-right h2 {
        font-size: 32px;
    }

}

@media(max-width:600px) {

    .cm-product-details {
        padding: 30px 18px;
    }

    .cm-main-image {
        height: 320px;
    }

    .cm-thumb {
        width: 65px;
        height: 65px;
    }

    .cm-right h2 {
        font-size: 24px;
    }

    .cm-right p {
        font-size: 15px;
        line-height: 1.9;
    }

    .cm-btn,
    .cm-connect-btn {
        font-size: 13px;
    }

}

/*  */


/* new section  */
/* ====================================
DESCRIPTION SECTION
==================================== */
/* ====================================
DESCRIPTION SECTION
==================================== */

.cm-description-sec {
    width: 100%;
    padding: 20px 70px 30px;
    background: #fff;
    position: relative;
}

/*====================================
DESCRIPTION BOX
====================================*/

.cm-description-box {
    width: 100%;
    background: linear-gradient(145deg, #f4f4f4, #ececec);
    border-radius: 32px;
    padding: 55px 55px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: 0.4s ease;
}

/*====================================
TOP GLOW EFFECT
====================================*/

.cm-description-box::before {
    content: '';
    position: absolute;
    top: -130px;
    right: -130px;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

/*====================================
BOTTOM GLOW
====================================*/

.cm-description-box::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 280px;
    height: 280px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
}

/*====================================
HEADING
====================================*/

.cm-description-box h2 {
    font-size: 40px;
    color: #000;
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.5px;
    z-index: 2;
}

/*====================================
HEADING LINE
====================================*/

.cm-description-box h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 5px;
    background: linear-gradient(to right, #000, #444, #000);
    border-radius: 30px;
}

/*====================================
PARAGRAPH DESIGN
====================================*/

.cm-description-box p {
    font-size: 18px;
    line-height: 2.1;
    color: #3a3a3a;
    margin-bottom: 28px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    padding-left: 28px;
    transition: 0.3s ease;
}

/* LEFT BORDER EFFECT */

.cm-description-box p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 78%;
    background: #000;
    border-radius: 30px;
    opacity: 0.12;
    transition: 0.3s ease;
}

/* HOVER EFFECT ON PARAGRAPH */

.cm-description-box p:hover {
    color: #000;
    transform: translateX(5px);
}

.cm-description-box p:hover::before {
    opacity: 1;
    height: 85%;
}

/*====================================
STRONG TEXT
====================================*/

.cm-description-box p strong {
    color: #000;
    font-weight: 700;
    position: relative;
}

/* TEXT HIGHLIGHT */

.cm-description-box p strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    z-index: -1;
    border-radius: 20px;
}

/*====================================
BOX HOVER EFFECT
====================================*/

.cm-description-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px) {

    .cm-description-sec {
        padding: 20px 30px 60px;
    }

    .cm-description-box {
        padding: 40px 35px;
    }

    .cm-description-box h2 {
        font-size: 30px;
    }

    .cm-description-box p {
        font-size: 16px;
        line-height: 2;
    }

}

@media(max-width:600px) {

    .cm-description-sec {
        padding: 15px 15px 40px;
    }

    .cm-description-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .cm-description-box h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .cm-description-box h2::after {
        width: 90px;
        height: 4px;
    }

    .cm-description-box p {
        font-size: 15px;
        line-height: 1.95;
        padding-left: 18px;
        margin-bottom: 22px;
    }

    .cm-description-box p::before {
        width: 4px;
    }

}



/* =========================================
TECHNICAL SPECIFICATION SECTION
========================================= */

.cm-tech-spec-sec {
    width: 100%;
    padding: 30px 30px;
    background: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}

/*=========================================
WRAPPER
=========================================*/

.cm-tech-wrapper {
    width: 100%;
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

/*=========================================
LEFT SIDE
=========================================*/

.cm-tech-left {
    width: 50%;
}

.cm-tech-left h2 {
    font-size: 38px;
    color: #000;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.cm-tech-left h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 20px;
}

/*=========================================
TABLE
=========================================*/

.cm-tech-table {
    width: 100%;
    border: 1px solid #444;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.cm-tech-row {
    display: flex;
    border-bottom: 1px solid #555;
}

.cm-tech-row:last-child {
    border-bottom: none;
}

.cm-tech-title {
    width: 35%;
    padding: 16px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    border-right: 1px solid #555;
    background: #f9f9f9;
    line-height: 1.7;
}

.cm-tech-value {
    width: 65%;
    padding: 16px 14px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

/*=========================================
RIGHT SIDE
=========================================*/

.cm-tech-right {
    width: 50%;
}

.cm-tech-right h2 {
    font-size: 34px;
    line-height: 1.4;
    color: #000;
    font-weight: 700;
    margin-bottom: 28px;
}

/*=========================================
CONTENT BLOCK
=========================================*/

.cm-tech-content {
    margin-bottom: 28px;
}

.cm-tech-content h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}

.cm-tech-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 24px;
    background: #000;
    border-radius: 20px;
}

.cm-tech-content ul {
    padding-left: 0;
}

.cm-tech-content ul li {
    list-style: none;
    font-size: 16px;
    color: #333;
    line-height: 2;
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.cm-tech-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

/*=========================================
BUTTON AREA
=========================================*/

.cm-tech-btn-area {
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid #777;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cm-tech-btn-area span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    border: 1px solid #000;
    padding: 10px 18px;
    margin-bottom: 18px;
    background: #fff;
}

.cm-tech-btn-area button {
    width: 180px;
    height: 52px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.cm-tech-btn-area button:hover {
    background: #000;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .cm-tech-wrapper {
        flex-direction: column;
    }

    .cm-tech-left,
    .cm-tech-right {
        width: 100%;
    }

    .cm-tech-left h2,
    .cm-tech-right h2 {
        font-size: 28px;
    }

}

@media(max-width:600px) {

    .cm-tech-spec-sec {
        padding: 40px 15px;
    }

    .cm-tech-left h2,
    .cm-tech-right h2 {
        font-size: 22px;
    }

    .cm-tech-row {
        flex-direction: column;
    }

    .cm-tech-title,
    .cm-tech-value {
        width: 100%;
        border-right: none;
    }

    .cm-tech-content h3 {
        font-size: 18px;
    }

    .cm-tech-content ul li {
        font-size: 14px;
        line-height: 1.8;
    }

}


/* =========================================
PRODUCT SLIDER SECTION
========================================= */

.cm-product-slider-sec {
    width: 100%;
    padding: 30px 0 30px;
    background: #fff;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/*=========================================
SLIDER WRAPPER
=========================================*/

.cm-slider-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: 0.5s linear;
    padding-left: 40px;
}

/*=========================================
CARD
=========================================*/

.cm-product-card {
    width: 420px;
    background: #f9f9f9;
    border: 1px solid #000;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.4s ease;
}

/* HOVER */

.cm-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/*=========================================
IMAGE
=========================================*/

.cm-product-img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #fff;
}

.cm-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s ease;
}

/* IMAGE HOVER */

.cm-product-card:hover .cm-product-img img {
    transform: scale(1.08);
}

/*=========================================
CONTENT
=========================================*/

.cm-product-content {
    padding: 22px 26px 28px;
}

/* CATEGORY */

.cm-product-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
}

.cm-product-content span::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #000;
}

/* TITLE */

.cm-product-content h3 {
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    font-weight: 700;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .cm-product-card {
        width: 300px;
    }

    .cm-product-img {
        height: 280px;
    }

    .cm-product-content h3 {
        font-size: 18px;
    }

    .cm-product-content span {
        font-size: 14px;
    }

}



/*=========================================
SECTION HEADING
=========================================*/

.cm-related-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

/* MAIN HEADING */

.cm-related-heading h2 {
    font-size: 42px;
    color: #000;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* UNDERLINE */

.cm-related-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 20px;
}

/* SMALL TOP TEXT EFFECT */

.cm-related-heading h2::before {
    content: 'Explore More';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #777;
    text-transform: uppercase;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px) {

    .cm-related-heading h2 {
        font-size: 30px;
    }

}



.cm-btn {
    width: 50%;
    height: 68px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cm-btn:hover {
    background: #111;
    color: #fff;
}