/* === CSS VARIABLES (DARK & LIGHT MODE) === */
        :root {
            --bg-color: #f5f5f5;
            --text-main: #1a1a1a;
            --text-muted: #666666;
            --accent-gold: #cba153;
            --card-bg: #ffffff;
            --border-color: #dddddd;
        }

        [data-theme="dark"] {
            --bg-color: #0f0f0f;
            --text-main: #ffffff;
            --text-muted: #aaaaaa;
            --accent-gold: #cba153;
            --card-bg: #1a1a1a;
            --border-color: #333333;
        }

        /* === GLOBAL RESET & TYPOGRAPHY === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.4s ease, color 0.4s ease;
        }
        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* === FLEXBOX UTILITIES === */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-1 { gap: 1rem; }
        .gap-2 { gap: 2rem; }

        /* === ANIMATIONS === */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* === HEADER === */
        /* --- Header Background Changes --- */
        /* Default (Light Mode) */
        header {
            padding: 14px 0px;
            background-color: color-mix(in oklab, #f8f4f5 70%, transparent);
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(24px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 4525;
            transition: background-color 0.4s ease; /* Smooth change ke liye */
        }

        /* Dark Mode Header Background */
        [data-theme="dark"] body {
            background-color: var(--bg-color);
        }

        [data-theme="dark"] header {
            background-color: color-mix(in oklab, #090707 70%, transparent);
        }

        /* --- SVG Icons Toggle Logic --- */
        /* Default: Night icon dikhao, Day icon chhupao */
        .night_mode { display: block; }
        .day_mode { display: none; }

        /* Jab Dark theme ho: Day icon dikhao, Night icon chhupao */
        [data-theme="dark"] .night_mode { display: none; }
        [data-theme="dark"] .day_mode { display: block; opacity: 1; }
        nav ul {
            list-style: none;
            gap: 30px;
        }
        
        .logo h3 {
            font-family: Molle, cursive;
            font-weight: 400;
            font-style: italic;
            font-size: 30px;
            letter-spacing: 1px;
            text-align: center;
            margin-bottom: -10px;
            margin-left: -8px;
        }
        
        
        nav ul li a {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: "Space Grotesk", sans-serif;
            color: oklch(62% .01 260);
        }
        button#theme-toggle {
            height: 40px;
            width: 40px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            cursor: pointer;
            font-family: inherit;
            background: none;
            border: 1px solid var(--accent-gold);
            border-radius: 20px;
        }
        button#theme-toggle img {
            margin: 0;
        }
        img.day_mode {
            display: none;
            opacity: 0;
        }
        img.mob-close-btn, .nax-mob {
            display: none;
        }
        /* === HERO SECTION === */
        .hero {
            background: radial-gradient(ellipse at 30% 0%, oklch(100% 0 0) 0%, transparent 60%);
            padding: 165px 0;
        }
            
        [data-theme="dark"] .hero {
            background: radial-gradient(ellipse at 30% 0%, oklch(22% .01 270) 0%, transparent 60%);
        }
        
        .hero-mjx-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to right, oklch(15% .005 270 / .1) 1px, transparent 1px), linear-gradient(to bottom, oklch(15% .005 270 / .1) 1px, transparent 1px);
            background-size: 80px 80px;
            top: 0px;
            opacity: .3;
        }
        [data-theme="dark"] .hero-mjx-layer {
            background-image: linear-gradient(to right, oklch(95% 0 0 / .08) 1px, transparent 1px), linear-gradient(to bottom, oklch(95% 0 0 / .08) 1px, transparent 1px);
        }
        .hero-main-cont {
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .hero-content h1 i {
            color: var(--text-muted);
        }
        .col-img-border-wrap {
            position: relative;
            border: 1px solid;
            border-color: oklch(95% 0 0 / .08);
            padding: 20px;
        }
        .col-img-border-wrap:before, .col-img-border-wrap:after{
            position: absolute;
            display: block;
            content: "";
            width: 15px;
            height: 15px;
            background: #bc964e;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            z-index: 4;
        }
        .col-img-border-wrap:before {
            top: -8px;
        }
        .col-img-border-wrap:after {
            bottom: -7px;
        }
        .csl-gen-line {
            position: absolute;
            border-color: #bc964e;
            transition: all 0.4s;
            width: 3%;
            height: 3%;
        }
        .col-img-top-block {
            top: 0;
            border-top: 1px solid #bc964e;
            left: 0;
            border-left: 1px solid #bc964e;
        }
        .col-img-lef-block {
            bottom: 0;
            left: 0px;
            z-index: 452;
            border-left: 1px solid #bc964e;
            border-bottom: 1px solid #bc964e;
        }
        .col-img-right-block {
            top: 0;
            right: 0;
            border-top: 1px solid #bc964e;
            border-right: 1px solid #bc964e;
        }
        .col-img-bottom-block {
            bottom: 0;
            right: 0;
            border-bottom: 1px solid #bc964e;
            border-right: 1px solid #bc964e;
        }
        .hero-image {
            flex: 1;
            min-width: 300px;
        }
        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 5px;
            transition: all 0.4s;
            transform: scale(0.96);
        }
        .col-img-border-wrap:hover img {
            transform: scale(1);
        }
        .col-img-border-wrap:hover .csl-gen-line {
            width: 50%;
            height: 50%;
        }

        /* === MARQUEE SECTION === */
        section.marquee {
            background-color: color-mix(in oklab, oklch(94% .005 80) 30%, transparent);
            border-bottom: 1px solid var(--border-color);
            border-top: 1px solid var(--border-color);
            padding: 60px 0;
            overflow: hidden; /* Bahar ka text hide karne ke liye */
            display: flex;
        }
        [data-theme="dark"] section.marquee {
            background-color: color-mix(in oklab, oklch(18% .005 270) 30%, transparent);
        }
        .marquee-content {
            display: flex;
            align-items: center;
            gap: 31px; /* Divider aur text ke darmiyan gap */
            width: max-content;
            animation: scroll-loop 20s linear infinite; /* Loop animation */
        }

        /* Jab mouse upar jaye to ruk jaye (Optional) */
        .marquee-content:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 31px;
        }

        .marquee h2 {
            font-size: 7rem;
            color: transparent;
            -webkit-text-stroke: 1px var(--text-muted);
            opacity: 0.3;
            white-space: nowrap;
        }

        .mar_divider {
            display: block;
            width: 3rem;
            height: 3rem;
            background: #cba16d;
            transform: rotate(45deg);
            flex-shrink: 0; /* Divider ko chota hone se rokne ke liye */
        }

        /* === KEYFRAMES FOR CONTINUOUS LOOP === */
        @keyframes scroll-loop {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Content ko aadha peeche move karein */
                transform: translateX(-50%); 
            }
        }

        /* === EXCELLENCE SECTION === */
        .excellence {
            padding: 80px 0;
        }
        .excellence .card {
            background-color: var(--card-bg);
            padding: 50px;
            flex: 1;
            min-width: 300px;
            z-index: 2;
            margin-right: -50px; /* Overlap effect */
            margin-top: 50px;
            border: 1px solid var(--border-color);
        }
        p.slider-card-tg {
            color: var(--accent-gold);
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
        }
        .excellence h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .cpr-para{
            color: var(--text-muted);
            line-height: 1.3;
            font-family: "Space Grotesk", sans-serif;
            font-weight: 300;
            font-size: 18px;
        }
        .excellence-img {
            flex: 1;
            min-width: 300px;
        }
        .excellence-img img {
            height: 600px;
            width: 100%;
            object-fit: cover;
        }

        .swiper {
        margin: 40px auto;
        width: 100%;
        height: 100%;
        }

        .cont-slides {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: bold;
        background-color: var(--bg-color);
        }

        [data-theme="dark"] .cont-slides {
            background-color: #0f0f0f;
        }

        .swiper-button-prev,  .swiper-button-next{
            top: auto !important;
            bottom: 18px;
            width: 80px !important;
        }
        .swiper-button-next {
            right: auto !important;
            left: 120px !important;
        }

        /* === GALLERY SECTION === */
        .gallery {
            padding: 80px 0;
            text-align: center;
        }
        .gallery h3 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        .gallery-grid {
            gap: 15px;
        }
        .gallery-image-block {
            flex: 1;
        }
        [data-theme="light"] .gallery-image-block {
            border-color: oklch(0.91 0 0);
        }
        .gallery-grid img {
            flex: 1;
            min-width: 200px;
            width: 100%;
            /*height: 300px;*/
            height: auto;
            object-fit: cover;
            border-radius: 5px;
            transition: all 0.5s;
            transform: scale(0.98);
        }
        .gallery-image-block:hover .gallery-grid img {
            transform: scale(1);
        }
        /* === TESTIMONIAL SECTION === */
        .testimonial {
            padding: 80px 0;
        }
        .test-img {
            flex: 1;
            min-width: 300px;
        }
        .test-img img {
            height: 500px;
            width: 100%;
            object-fit: cover;
        }
        .test-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            justify-content: center;
        }
        .test-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .test-content p {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-family: 'Space Grotesk';
        }
        h5.review-q-name {
            font-family: 'Space Grotesk';
            font-size: 18px;
            letter-spacing: 1px;
            margin: 0 !important;
        }

        .autoplay-progress {
            position: absolute;
            right: 16px;
            bottom: 16px;
            z-index: 10;
            width: 75px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #cba153;
            }

            .autoplay-progress svg {
            --progress: 0;
            position: absolute;
            left: 0;
            top: 0px;
            z-index: 10;
            width: 100%;
            height: 100%;
            stroke-width: 4px;
            stroke: #cba153;
            fill: none;
            stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
            stroke-dasharray: 125.6;
            transform: rotate(-90deg);
            }
            span.swiper-pagination-bullet {
                background: #cba153;
                width: 10px;
                height: 10px;
                border-radius: 3px;
            }
            .swiper-pagination {
                position: absolute;
                top: auto !important;
                bottom: 29px !important;
                left: 0 !important;
                right: auto !important;
                align-items: center;
                display: flex;
            }
        
        /* === STATS SECTION === */
        .stats {
            padding: 60px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .stat-item {
            flex: 1;
            text-align: center;
            min-width: 150px;
        }
        .counter-item-bx {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .counter-item-bx span {
            font-size: 3rem;
            display: block;
            color: #ffffff00;
            -webkit-text-stroke: 0.7px #be974e;
            margin: 0;
            font-family: 'Space Grotesk';
            margin-top: 17px;
            margin-left: 3px;
        }
        .stat-item h4 {
            font-size: 3.5rem;
            color: var(--accent-gold);
        }
        .stat-item p {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* === NEWSLETTER SECTION === */
        .newsletter {
            padding: 100px 0;
            text-align: center;
        }
        .news-box {
            background-color: var(--card-bg);
            padding: 60px 40px;
            border: 1px solid var(--border-color);
            max-width: 700px;
            margin: 0 auto;
        }
        .news-box h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        .input-group {
            max-width: 400px;
            margin: 0 auto;
            border-bottom: 1px solid var(--text-main);
            padding-bottom: 10px;
        }
        .input-group input {
            border: none;
            background: transparent;
            color: var(--text-main);
            outline: none;
            width: 100%;
        }
        .input-group button {
            background: var(--accent-gold);
            border: none;
            color: #000;
            padding: 5px 15px;
            cursor: pointer;
            border-radius: 15px;
        }
        
        /*=======================*/
        /*popup sections css*/
        .thumbnial-popup {
            position: fixed;
            z-index: 45283;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            background: #000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .35s ease;
        }
        
        /* Popup Open */
        section#thum-pop_01.show, section#thum-pop_02.show, section#thum-pop_03.show {
            display: flex;
        }

        section#thum-pop_01.active, section#thum-pop_02.active, section#thum-pop_03.active{
            opacity: 1;
        }
        
        span.pop-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ffffff;
            color: #000000;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            font-family: 'Poppins';
            font-weight: 500;
            font-size: 18px;
        }
        
        
        .pop-wrap-is{
            width: 80%;
        }
        .tm01 img {
            width: 58%;
            height: 60vh;
            object-fit: contain;
            margin: 0 auto;
        }
        .thunpop1mg {
            max-width: 48%;
        }
        .tm2 img {
            width: 98%;
            border: 1px solid #bc964e;
            box-sizing: border-box;
            margin: 0 auto;
        }
        /* === FOOTER === */
        footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* === RESPONSIVE DESIGN (MOBILE) === */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            .excellence .flex { flex-direction: column; }
            .excellence .card { margin-right: 0; margin-top: 0; margin-bottom: -50px; }
            .testimonial .flex { flex-direction: column; }
            nav ul { display: none; /* simple mobile hide for nav */ }
            .marquee h2 { font-size: 3rem; }
        }
        @media (max-width: 600px) {
            .tm01 img {
                width: 100%;
                height: 50vh;
            }
            .thunpop1mg {
                max-width: 100%;
            }
        }


        /* --- Contact Hero Section --- */
        .contact-hero {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        [data-theme="dark"] .contact-hero {
            background: radial-gradient(ellipse at 30% 0%, oklch(22% .01 270) 0%, transparent 60%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            margin-top: 60px;
        }

        /* --- Info Side --- */
        .info-card h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            line-height: 1;
            margin-bottom: 30px;
        }

        .info-card h1 i { font-weight: 400; font-style: italic; color: #666; }

        .contact-item { margin-bottom: 40px; }
        .contact-item span {
            color: var(--accent-gold);
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }
        .contact-item p, .contact-item a {
            font-size: 1.2rem;
            display: block;
        }

        /* --- Form Side --- */
        .form-container {
            background: color-mix(in oklab, var(--bg-color) 95%, white);
            padding: 50px;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        [data-theme="dark"] .form-container {
            background: rgba(255, 255, 255, 0.03);
        }

        .form-group { margin-bottom: 25px; }
        .form-group label {
            display: block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 10px 0;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--accent-gold);
        }

        .submit-btn {
            background: var(--accent-gold);
            color: #000;
            border: none;
            padding: 15px 40px;
            font-family: 'Space Grotesk';
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 20px;
            transition: 0.3s;
        }

        .submit-btn:hover {
            letter-spacing: 4px;
            background: #fff;
        }

        .map-wrap {
            margin-top: 58px;
            border-top: 1px solid var(--border-color);
            padding-top: 40px;
        }
        .map-title-wrap h4 {
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 3px;
            color: #cba153;
        }
        .map-title-wrap h3 {
            margin-bottom: 20px;
            letter-spacing: 1px;
            font-size: 28px;
            font-weight: 300;
        }
        
        .map-title-wrap h3 span {
            color: #999191;
        }          
        
        .contact-number-wrap {
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
        }
        .num_header {
            display: flex;
            column-gap: 1px;
            align-items: center;
            margin-bottom: 4px;
        }
        .num_header h5 {
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .contact-grid { grid-template-columns: 1fr; gap: 50px; }
            .info-card h1 { font-size: 3rem; }
        }
       
       
       
     /*======================================   */
     /*Verify Page CSS   */
        
        
        
/* Fix header overlay and set page background */
    .verify-page-wrapper {
        padding-top: 140px; /* Header ke piche chupne se bachane ke liye safe padding */
        padding-bottom: 80px;
        background-color: #fcfbfa; /* Soft off-white to match screenshot */
        font-family: 'Playfair Display', 'Segoe UI', serif;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
[data-theme="dark"] .verify-page-wrapper {
    background-color: var(--bg-color);
}
    .verify-container {
        width: 100%;
        max-width: 650px;
        background: #ffffff;
        padding: 40px;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        border: 1px solid #eae6e1;
        text-align: center;
    }

    .verify-title {
        font-size: 28px;
        color: #1a1a1a;
        margin-bottom: 8px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .verify-subtitle {
        font-size: 14px;
        color: #8a8a8a;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Elegant Search Input Bar */
    .verify-search-box {
        display: flex;
        gap: 0;
        margin-bottom: 20px;
        border: 1px solid #c5a880; /* Elegant gold boundary */
        border-radius: 2px;
        overflow: hidden;
    }

    .verify-input {
        flex: 1;
        padding: 16px 20px;
        border: none;
        outline: none;
        font-size: 15px;
        letter-spacing: 1px;
        color: #1a1a1a;
        background: #ffffff;
    }

    .verify-input::placeholder {
        color: #b3b3b3;
    }

    .verify-button {
        background: #1e2530; /* Dark charcoal color from your theme */
        color: #ffffff;
        border: none;
        padding: 0 30px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.2s ease;
    }

    .verify-button:hover {
        background: #c5a880; /* Gold hover from your home page */
    }

    /* Dynamic Product Card Display */
    .product-verified-card {
        margin-top: 35px;
        border-top: 2px double #c5a880;
        padding-top: 35px;
        text-align: left;
    }

    .success-status-badge {
        display: inline-block;
        background: #f4fbf7;
        color: #14532d;
        border: 1px solid #bbf7d0;
        padding: 6px 16px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        margin-bottom: 20px;
        border-radius: 2px;
    }

    .verified-product-title {
        font-size: 24px;
        color: #1a1a1a;
        margin: 0 0 20px 0;
        font-weight: 500;
        line-height: 1.3;
    }

    .verified-grid-layout {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 30px;
        align-items: start;
    }
    .data-resource-mj {
        position: relative;
    }
    img.bmw-watermark-data-source {
        position: absolute;
        display: block;
        width: 90%;
        opacity: 0.12;
        bottom: -69px;
        left: 50%;
        transform: translateX(-50%);
        filter: grayscale(1);
    }
    .vari-des, table.specs-table {
        position: relative;
        z-index: 45;
    }
    .pr-da-row-cj h5, .pr-da-row-cj p {
        color: #000;
        font-family: 'Poppins';
        letter-spacing: 0.3px;
        font-size: 18px;
    }
    
    
h3.product-is-detail-title {
    color: #000 !important;
    text-align: center;
    font-size: 24px;
    font-family: 'Poppins';
    margin-bottom: 45px;
    font-weight: 500;
}

.Product-data-visible-bmw {
    position: relative;
}
.pr-da-row-cj {
    position: relative;
    z-index: 45;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #00000061;
}
h5.pro-vb-lable {
    width: 28%;
}
p.pro-vb-vlaue {
    width: 72%;
}

.pr-da-row-cj:last-child {
    border: none;
    margin: 0;
}
    
    
    @media (max-width: 560px) {
        .verified-grid-layout {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .verified-product-title {
            text-align: center;
        }
        .verify-container {
            padding: 17px;
        }
        h3.product-is-detail-title {
            font-size: 22px;
        }
        .pr-da-row-cj h5, .pr-da-row-cj p {
            font-size: 14px;
        }
        h5.pro-vb-lable {
            width: 44%;
        }
        p.pro-vb-vlaue {
            width: 73%;
        }
        img.bmw-watermark-data-source {
            bottom: 10px;
        }
    }

    .verified-image-box {
        border: 1px solid #f0ede9;
        background: #faf9f6;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
    }

    .verified-image-box img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Specifications Table Style */
    .specs-table {
        width: 100%;
        border-collapse: collapse;
    }

    .specs-row {
        border-bottom: 1px solid #f0ede9;
    }

    .specs-row:last-child {
        border-bottom: none;
    }

    .specs-label {
        padding: 10px 0;
        font-size: 13px;
        color: #8a8a8a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: 35%;
        font-weight: 700;
    }

    .specs-value {
        padding: 10px 0;
        font-size: 15px;
        color: #1a1a1a;
        font-weight: 500;
        font-family: "Space Grotesk", sans-serif;
    }

    .description-text {
        font-size: 14px;
        color: #555555;
        line-height: 1.6;
        margin-bottom: 15px;
        font-style: italic;
    }

    /* Error Handling Alert */
    .error-alert-box {
        margin-top: 30px;
        background: #fff5f5;
        border: 1px solid #fed7d7;
        color: #c53030;
        padding: 15px;
        border-radius: 2px;
        font-size: 14px;
        font-weight: 500;
    }
    .vari-des p {
    font-family: "Space Grotesk", sans-serif;
}        




/* Base HTML aur Interactive Elements par custom cursor logic */
html, body, a, button, input, select, textarea {
    cursor: none !important; /* Default browser cursor ko gayab karne ke liye */
}

/* Center Core Dot Setup */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #c5a880; /* Basharat Group gold */
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    /* Sirf scaling aur color change ke liye transition, movement JS handle karegi */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Outer Tracking Circle Setup */
.custom-cursor-circle {
    width: 60px;
    height: 60px;
    border: 1.5px solid #c5a880;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    /* Outer ring scale logic */
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease;
}

/* HOVER STATE: Jab user kisi link ya button par cursor le jaye */
.custom-cursor-hover-dot {
    width: 0px;
    height: 0px; /* Dot center mein merge ho jayegi */
}

.custom-cursor-hover-circle {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 168, 128, 0.12); /* Subtle luxurious fill */
}

#about, #collection {
    /* 80px ki jagah aap apne header ki height ke mutabiq adjustment kar sakte hain */
    scroll-margin-top: 90px; 
}
.vari-des{
    color: #1a1a3f;
}



@media only screen and (max-width: 600px) {
    
    .custom-cursor-dot, .custom-cursor-circle {
        display: none;
    }
    img.mob-close-btn, .nax-mob {
        display: block;
    }
    /* Base Navigation setup */
    nav {
        position: fixed;
        top: -100vh; /* Shuru me menu screen se upar chupa hoga */
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 4525;
        background: #1e2530;
        transition: top 0.5s ease-in-out; /* Slide down animation */
    }

    /* Jab JavaScript 'open' class lagaye gi to menu niche slide ho jaye ga */
    nav.open {
        top: 0;
    }

    nav ul.flex {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none; /* Bullets hatane k liye */
        padding: 0;
    }

    /* Shuru me sare links chupe honge or thora niche honge */
    nav ul.flex li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Jab menu open hoga to links smoothly apni jagah par ayen gy */
    nav.open ul.flex li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Delay: Har link thori der baad show hoga (One-by-One effect) */
    nav.open ul.flex li:nth-child(1) { transition-delay: 0.5s; }
    nav.open ul.flex li:nth-child(2) { transition-delay: 0.65s; }
    nav.open ul.flex li:nth-child(3) { transition-delay: 0.8s; }
    nav.open ul.flex li:nth-child(4) { transition-delay: 0.95s; }
    nav.open ul.flex li:nth-child(5) { transition-delay: 1.1s; }

    /* Close Button Setup */
    .mob-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 0;
        transition: opacity 0.5s ease;
        width: 30px;
    }

    /* Menu open hone k sub se aakhir me close button fade-in hoga */
    nav.open .mob-close-btn {
        opacity: 1;
        transition-delay: 1.3s; /* Sab se aakhir me chalega */
    }
    
    
    .header-right-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
    }
    .nax-mob {
        width: 40px;
    }
    
    .mySwiper6 {
        padding-top: 90px !important;
    }
    .swiper-button-prev, .swiper-button-next {
        top: 50px !important;
        bottom: auto;
        width: 80px !important;
    }
    .excellence {
        padding: 0px;
    }
    .excellence .card {
        padding: 26px;
        margin-bottom: 0;
    }
    .excellence h3 {
        font-size: 2rem;
    }
    .excellence-img {
        flex: 1;
        min-width: 100%;
    }
    .excellence .flex {
        padding: 1px;
    }
        .excellence-img img {
        height: 300px;
    }
    .gallery {
        padding: 20px 0;
    }
    .gallery h3 {
        font-size: 2rem;
    }
    .gallery-grid {
        gap: 50px;
    }
    .test-img img {
        height: auto;
    }
    .test-content {
        padding: 0px;
    }
    .test-content h3 {
        font-size: 2rem;
        margin-bottom: 0px;
    }
    .testimonial {
        padding: 40px 0;
    }
    .news-box {
        padding: 40px 15px;
    }
    .newsletter {
        padding: 70px 0;
    }
    button.verify-button {
        font-size: 0;
        padding: 0;
        width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    button.verify-button span {
        font-size: 20px;
    }
    .verify-container {
        width: 95%;
    }
}
        