/**************************************************/
/**************** GENERAL / BODY ******************/
/**************************************************/
/* GLOBAL FIX */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

section,
.hero-slider,
.featured-categories,
.testimonials,
.best-selling-b2b,
.why-choose,
.bulk-process,
.industries-section,
.stats-section,
.catalog-section {
    overflow-x: hidden;
    position: relative;
}

* {
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background: radial-gradient(circle at top, #16295f 0%, #0d1b3f 40%, #070f2e 100%);
   
    color: #e5e7eb;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
}

h1 span,
h2 span {
    color: #ff9f1c;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.btn {
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: 0.3s;
}

/**************************************************/
/************ CATEGORY BAR ***********************/
/**************************************************/

.category-bar {
    position: sticky;
    top: 70px;
    background: #232f3e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    z-index: 9998;
}

.category-left {
    font-weight: 600;
    cursor: pointer;
}

.category-links {
    display: flex;
    gap: 30px;
}

/* Hover dropdown */
.category-item {
    position: relative;
}
.category-item a {
    padding: 10px;
    color: #f7f5f5;
}
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    color: #000;
    display: none;
    flex-direction: column;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.category-dropdown a {
    padding: 10px;
    color: #000;
}

.category-dropdown a:hover {
    background: #f3f4f6;
}

.category-item:hover .category-dropdown {
    display: flex;
}

/**************************************************/
/************ SIDE CATEGORY PANEL ****************/
/**************************************************/

.category-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
}

.side-category {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: 0.35s ease;
    overflow-y: auto;
}

.side-category.active {
    left: 0;
}

.category-overlay.active {
    display: block;
}

.side-header {
    background: #0d1b3f;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.side-category ul {
    list-style: none;
    padding: 15px;
    color: red;
}

.side-category li {
    padding: 10px 0;
    cursor: pointer;
}

.sub-cat {
    display: none;
    padding-left: 15px;
}

.has-sub.active .sub-cat {
    display: block;
    color: rgb(12, 11, 11);
}


.side-menu {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.side-menu li {
    margin-bottom: 10px;
}

.side-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 5px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.sub-cat {
    display: none;
    padding-left: 15px;
    margin-top: 8px;
}

.sub-cat li {
    padding: 6px 0;
}

.sub-cat a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.sub-cat a:hover {
    color: #ff9f1c;
}

/* Active State */
.has-sub.active .sub-cat {
    display: block;
}

/**************************************************/
/************ RESPONSIVE *************************/
/**************************************************/

@media (max-width: 991px) {
    .category-links {
        display: none;
    }
}

/********************************/
/******** NAVBAR BASE ***********/
/********************************/

.main-header {
    position: relative;
    z-index: 9999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #0d1b3f;
}

.logo img {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff9f1c;
}
/**************************************************/
/**************** PREMIUM HERO ********************/
/**************************************************/
/**************************************************/
/**************** HERO SPLIT LAYOUT ***************/
/**************************************************/

/**************************************************/
/************** 3D DEPTH HERO BACKGROUND *********/
/**************************************************/

.hero-slider {
    position: relative;
    min-height: 90vh;
    height:auto;
    overflow: hidden;
    padding-top: 120px;
    background: #0b142d;
}

/* Main Depth Layer */
.hero-slider::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -250px;
    left: -200px;
    filter: blur(120px);
    animation: moveLight1 12s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Secondary Orange Glow */
.hero-slider::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -200px;
    right: -150px;
    filter: blur(120px);
    animation: moveLight2 14s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Animation */
@keyframes moveLight1 {
    0% { transform: translate(0,0); }
    100% { transform: translate(80px,60px); }
}

@keyframes moveLight2 {
    0% { transform: translate(0,0); }
    100% { transform: translate(-60px,-40px); }
}

/* SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* CONTAINER */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    height: 100%;
}

/* TEXT */
.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.6s ease;
}

.hero-text p {
    margin-bottom: 25px;
    color: #cbd5e1;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s ease;
}

.hero-slide.active h1,
.hero-slide.active p {
    transform: translateY(0);
    opacity: 1;
}

.hero-btn {
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    padding: 12px 30px;
    border-radius: 30px;
    color: #0d1b3f;
    font-weight: 600;
    text-decoration: none;
}

/* IMAGE */
.hero-image img {
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* BUTTONS */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #ff9f1c;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* RESPONSIVE */
@media (max-width: 991px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }

    .hero-image img {
        max-width: 90%;
        margin-top: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}



/**************************************************/
/******** ULTRA PREMIUM CATEGORY CAROUSEL ********/
/**************************************************/
/**************************************************/
/************* ULTRA PREMIUM 3D SECTION **********/
/**************************************************/

.featured-categories {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    background: #0a1228;
}

/* Depth Grid */
.section-depth {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
}

/* Blue Glow */
.featured-categories::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    animation: moveGlow1 14s ease-in-out infinite alternate;
}

.featured-categories::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -250px;
    right: -150px;
    filter: blur(120px);
    animation: moveGlow2 16s ease-in-out infinite alternate;
}

@keyframes moveGlow1 {
    from { transform: translate(0,0); }
    to { transform: translate(80px,60px); }
}

@keyframes moveGlow2 {
    from { transform: translate(0,0); }
    to { transform: translate(-60px,-50px); }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 42px;
}

.section-title p {
    color: #94a3b8;
}

/* Carousel */
.category-carousel {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
}


.category-carousel:hover {
    animation-play-state: paused;
}

/* Card */
.category-card {
    min-width: 300px;
    height: 350px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Spotlight */
.spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,159,28,0.5), transparent 60%);
    top: -50px;
    left: -50px;
    opacity: 0;
    transition: 0.4s;
}

.category-card:hover .spotlight {
    opacity: 1;
}

/* Image */
.category-card img {
    width: 200px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    transition: 0.3s;
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card h3 {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-carousel {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 768px) {

    .category-carousel {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .category-carousel::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        min-width: 80%;
    }

}

/**************************************************/
/************ LIGHT REFLECTION EFFECT ************/
/**************************************************/

.category-card {
    position: relative;
    overflow: hidden;
}

/* Reflection layer */
.light-reflection {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.4) 50%,
        transparent 60%
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

/* Animate on hover */
.category-card:hover .light-reflection {
    top: 100%;
    left: 100%;
}

/**************************************************/
/************* B2B BEST SELLING SECTION **********/
/**************************************************/

.best-selling-b2b {
    padding: 140px 8%;
    background: #0e1833;
    overflow: hidden;
}

.best-selling-b2b::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    animation: moveGlow1 14s ease-in-out infinite alternate;
}

.best-selling-b2b::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -250px;
    right: -150px;
    filter: blur(120px);
    animation: moveGlow2 16s ease-in-out infinite alternate;
}

@keyframes moveGlow1 {
    from { transform: translate(0,0); }
    to { transform: translate(80px,60px); }
}

@keyframes moveGlow2 {
    from { transform: translate(0,0); }
    to { transform: translate(-60px,-50px); }
}


/* SECTION TITLE */
.section-title.dark {
    text-align: center;
    margin-bottom: 60px;
}

.section-title.dark h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.section-title.dark h2 span {
    color: #ff9f1c;
}

.section-title.dark p {
    margin-top: 10px;
    color: #b1b8c1;
    font-size: 15px;
}

/* GRID */
.product-grid-b2b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.product-card-b2b {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card-b2b:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* CUSTOM BRANDING BADGE */
.branding-badge {
    position: absolute;
    top: 9px;
    left: 45px;
    background: linear-gradient(135deg, #0ed722, #0f93da);
    color: #a5d21f;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
    pointer-events: none; /* 🔥 VERY IMPORTANT */

}

/* Optional small icon circle */
.branding-badge::before {
    content: "✔";
    font-size: 11px;
    background: #0ea5e9;
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE AREA */
.product-img-b2b {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.product-img-b2b img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

.product-card-b2b:hover .product-img-b2b img {
    transform: scale(1.05);
}

/* QUICK VIEW BUTTON */
.quick-view-btn {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background: #0f172a;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* TITLE */
.product-info-b2b h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

/* PRICE */
.price {
    font-weight: 700;
    color: #ff9f1c;
    font-size: 16px;
}

/* MOQ SELECTOR */
.moq-selector {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.moq-selector label {
    font-size: 13px;
    color: #2d6fcd;
}

.moq-selector input {
    width: 80px;
    padding: 6px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.qty-minus,
.qty-plus {
    padding: 6px 12px;
    border: none;
    background: #0f172a;
    color: #ffffff;
    cursor: pointer;
    border-radius: 6px;
}

/* BUTTON AREA */
.product-buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* REQUEST More Option */
.btn-more {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #eceef4;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,159,28,0.35);
}

.btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,159,28,0.5);
}

/* WHATSAPP BUTTON */
.btn-wa {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg,#25D366,#1da851);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}

.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}


/* RESPONSIVE */
@media (max-width: 1199px) {
    .product-grid-b2b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid-b2b {
        grid-template-columns: 1fr;
    }
}

/*********Quick View Css ******************/
.quick-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quick-modal.active {
    display: flex;
}

.quick-box-premium {
    width: 850px;
    max-width: 95%;
    padding: 45px;
    border-radius: 24px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(18px);

    box-shadow:
        0 50px 100px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.6);

    position: relative;
    animation: quickFloat 0.5s ease;
}

@keyframes quickFloat {
    from { transform: translateY(50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.quick-container {
    display: flex;
    gap: 50px;
}

/* LEFT IMAGE */
/* Quick Image Zoom Container */
.quick-left {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: zoom-in;
}

.quick-left img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.1s ease;
}


/* RIGHT */
.quick-right {
    flex: 1;
}

.quick-right h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.quick-model {
    font-weight: 600;
    background: #6398cd;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Quantity */
.quick-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-qty input {
    width: 90px;
    padding: 6px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.quick-minus,
.quick-plus {
    padding: 6px 12px;
    border: none;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

/* Buttons */
.quick-buttons {
    display: flex;
    gap: 15px;
}

.btn-quick-quote {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    font-weight: 700;
    color: #0f172a;
}

.btn-quick-wa {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(135deg,#25D366,#1da851);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* CLOSE BUTTON */
.quick-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.quick-close:hover {
    transform: rotate(90deg) scale(1.1);
}
/*Mobile View Of Quick View */

@media (max-width: 768px) {

    .quick-container {
        flex-direction: column;
        gap: 25px;
    }

    .quick-left {
        width: 100%;
    }

    .quick-left img {
        max-height: 320px;   /* Pehle 350 desktop tha */
        width: 100%;
        object-fit: contain;
    }

    .quick-box-premium {
        padding: 30px 20px;
    }

    .quick-right h3 {
        font-size: 18px;
    }

    .quick-qty {
        justify-content: center;
    }

    .quick-buttons {
        flex-direction: column;
    }

    .btn-quick-quote,
    .btn-quick-wa {
        width: 100%;
    }

}
@media (max-width: 768px) {

    .quick-left img {
        max-height: 300px;
    }

}


#quoteForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* LABEL STYLE */
#quoteForm label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
    display: block;
}

/* NORMAL INPUT */
#quoteForm input,
#quoteForm textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

/* READONLY STYLE */
.readonly-group input {
    background: #f1f5f9;
    font-weight: 600;
}

/* SUBMIT */
.quote-submit {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    font-weight: 700;
    cursor: pointer;
}

/******************Sales Manager Section*****/
.talk-sales {
    padding: 100px 8%;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    text-align: center;
    color: #fff;
}

.btn-sales {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #ff9f1c;
    border-radius: 8px;
    color: #0f172a;
    font-weight: 600;
}

/* ===== QUOTE MODAL ===== */

.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quote-modal.active {
    display: flex;
}

.quote-box {
    position: relative;
    width: 460px;
    max-width: 95%;
    padding: 10px 45px 40px;
    border-radius: 22px;

    /* Glass Effect */
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    /* 3D Depth Shadow */
    box-shadow:
        0 40px 80px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.6);

    /* Smooth Animation */
    animation: quoteFloat 0.6s ease;
}

/* Gradient Border Glow */
.quote-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg,#ff9f1c,#0d1b3f,#ff7a18);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Floating entry animation */
@keyframes quoteFloat {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
#quoteForm input,
#quoteForm textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.9);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

#quoteForm input:focus,
#quoteForm textarea:focus {
    border-color: #ff9f1c;
    box-shadow: 0 0 0 3px rgba(255,159,28,0.25);
}
#quoteForm button {
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0f172a;
    box-shadow: 0 15px 35px rgba(255,159,28,0.4);
    transition: 0.3s ease;
}

#quoteForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(255,159,28,0.6);
}


.quote-box h3 {
    margin-bottom: 20px;
    color: #0f172a;
}

/* CLOSE BUTTON */
.quote-close {
    position: absolute;
    top: 18px;     /* Pehle 10-15 tha, ab niche */
    right: 20px;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0f172a;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(255,159,28,0.4);

    transition: all 0.3s ease;
}
@keyframes closePulse {
    0% { box-shadow: 0 0 0 0 rgba(255,159,28,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,159,28,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,159,28,0); }
}

.quote-close {
    animation: closePulse 2.5s infinite;
}



/* FORM */
#quoteForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#quoteForm input,
#quoteForm textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

#quoteForm textarea {
    resize: none;
    height: 80px;
}

#quoteForm button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0f172a;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}
.model-no {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}


/**************************************************/
/************* WHY CHOOSE US SECTION *************/
/**************************************************/

.why-choose {
    padding: 140px 8%;
    background: #0e1833;
    position: relative;
    overflow: hidden;
}
.why-choose::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    animation: moveGlow1 14s ease-in-out infinite alternate;
}

.why-choose::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -250px;
    right: -150px;
    filter: blur(120px);
    animation: moveGlow2 16s ease-in-out infinite alternate;
}


.section-title.dark h2 {
    color: #b7bbc6;
    font-size: 42px;
}

.section-title.dark p {
    color: #f5f6f9;
    margin-top: 10px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-top: 60px;
}

/* CARD */
/**************************************************/
/******** PREMIUM ANIMATED WHY CARD **************/
/**************************************************/

.why-card {
    position: relative;
    padding: 50px 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 1;
}

/* Gradient Border */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg,#ff9f1c,#1e3a8a);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.why-card:hover::before {
    opacity: 2;
}

/* Hover lift */
.why-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* Spotlight */
.why-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,159,28,0.3), transparent 70%);
    top: -80px;
    left: -80px;
    opacity: 0;
    transition: 0.4s;
}

.why-card:hover::after {
    opacity: 1;
}


.why-icon {
    font-size: 42px;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
}

/* Floating Animation */
.why-card:hover .why-icon {
    transform: translateY(-8px) scale(1.1);
}


/* TITLE */
.why-card h3 {
    color: #0d1b3f;
    margin-bottom: 15px;
    font-size: 18px;
}

/* TEXT */
.why-card p {
    font-size: 16px;
    color: #0a0b0d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/**************************************************/
/******** CLEAN BULK PROCESS TIMELINE ************/
/**************************************************/

.bulk-process {
    padding: 140px 8%;
    background: #0e1833;
    overflow: hidden;
}
.bulk-process::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    animation: moveGlow1 14s ease-in-out infinite alternate;
}

.bulk-process::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -250px;
    right: -150px;
    filter: blur(120px);
    animation: moveGlow2 16s ease-in-out infinite alternate;
}

.process-head {
    text-align: center;
    margin-bottom: 80px;
}

.process-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #b4bdd1;
}

.process-head span {
    color: #ff9f1c;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding-left: 40px;
}

/* Center Line */
.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,#ff9f1c,#0f172a);
}

/* Step Wrapper */
.timeline-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 50px;
}

/* Icon Circle */
.step-icon {
    position: absolute;
    left: -10px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255,159,28,0.4);
}

/* Glass Card */
.step-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.step-card p {
    font-size: 16px;
    color: #64748b;
}
/**************************************************/
/************ GLASS TRUSTED CLIENTS **************/
/**************************************************/

.trusted-clients {
    padding: 100px 8%;
    background: #0e1833;
    text-align: center;
}

.logo-slider {
    overflow: hidden;
    margin-top: 70px;
    position: relative;
}

/* Track */
.logo-track {
    display: flex;
    gap: 50px;
    animation: scrollLogos 30s linear infinite;
}

/* Glass Logo Card */
.logo-item {
    flex: 0 0 auto;
    width: 170px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    /* Glass effect */
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);

    transition: all 0.4s ease;

    position: relative;
    overflow: hidden;
}

/* Light reflection effect */
.logo-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.2)
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

.logo-item:hover::before {
    left: 120%;
}

/* Logo image */
.logo-item img {
    max-width: 110px;
    max-height: 55px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: 0.3s ease;
}

/* Hover Effects */
.logo-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(2.05);
}

/* Scroll animation */
@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-track {
        gap: 25px;
    }

    .logo-item {
        width: 130px;
        height: 75px;
    }

    .logo-item img {
        max-width: 85px;
    }
}
/**************************************************/
/**************** TESTIMONIALS ********************/
/**************************************************/

/**************************************************/
/******** TESTIMONIALS – DARK 3D BACKGROUND ******/
/**************************************************/

.testimonials {
    position: relative;
    padding: 140px 8%;
    overflow: hidden;
    background: #0a1228;
    text-align: center;
}

/* Depth Grid */
.testimonials .section-depth {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
}

/* Blue Glow */
.testimonials::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.6),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    animation: moveGlow1 14s ease-in-out infinite alternate;
}

.testimonials::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.5),
        transparent 70%);
    bottom: -250px;
    right: -150px;
    filter: blur(120px);
    animation: moveGlow2 16s ease-in-out infinite alternate;
}

.test-head h2 {
    font-size: 34px;
    font-weight: 700;
    color: #9da5b6;
}

.test-head span {
    color: #ff9f1c;
}

.test-head p {
    margin-top: 12px;
    color: #f0f2f4;
}

/* Slider Container */
.testimonial-slider {
    overflow: hidden;
    margin-top: 70px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 25s linear infinite;
}

/* Glass Card */
.testimonial-card {
    flex: 0 0 350px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.stars {
    color: #ff9f1c;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 13px;
    color: #64748b;
}

/* Auto Scroll Animation */
@keyframes scrollTestimonials {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width:768px){
    .testimonial-track {
        animation-duration: 40s;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }
}


/**************************************************/
/************** DARK LUXURY CTA *******************/
/**************************************************/

.corporate-cta {
    position: relative;
    padding: 160px 8%;
    background: #0a1228;
    overflow: hidden;
    text-align: center;
}

/* Glow Background */
.cta-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.4),
        transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
    animation: glowMove 14s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from { transform: translateX(-50%) translateY(0); }
    to { transform: translateX(-50%) translateY(60px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.corporate-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.corporate-cta h2 span {
    color: #ff9f1c;
}

.corporate-cta p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    font-size: 14px;
    color: #e2e8f0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* WhatsApp Button */
.btn-whatsapp {
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg,#25D366,#1da851);
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37,211,102,0.6);
}

/* Quote Button */
.btn-quote-cta {
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    border: none;
    color: #0a1228;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(255,159,28,0.4);
}

.btn-quote-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255,159,28,0.6);
}

/* Responsive */
@media (max-width:768px){
    .corporate-cta h2 {
        font-size: 28px;
    }
}
/**************************************************/
/**************** BULK QUOTE MODAL ****************/
/**************************************************/

.bulk-quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    top: 50px;
}

.bulk-quote-modal.active {
    display: flex;
}

.bulk-quote-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 450px;
    max-width: 95%;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.bulk-quote-box h3 {
    margin-bottom: 25px;
    color: #0f172a;
}

.bulk-quote-box input,
.bulk-quote-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #080808;
    font-size: 14px;
}

.bulk-quote-box textarea {
    min-height: 20px;
    resize: none;
}

.submit-quote-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.bulk-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: #ff9f1c;
    color: #0f172a;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
/**************************************************/
/************** INDUSTRIES SECTION ***************/
/**************************************************/

.industries-section {
    position: relative;
    padding: 140px 8%;
    background: #0a1228;
    overflow: hidden;
    text-align: center;
}

/* Glow */
.industries-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.35),
        transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
}

.industries-head h2 {
    font-size: 34px;
    color: #ffffff;
}

.industries-head span {
    color: #ff9f1c;
}

.industries-head p {
    margin-top: 12px;
    color: #cbd5e1;
    margin-bottom: 70px;
}

/* Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

/* Glass Card */
.industry-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255,159,28,0.25);
}

/* Icon */
.industry-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/**************************************************/
/**************** STATS COUNTER *******************/
/**************************************************/

.stats-section {
    position: relative;
    padding: 140px 8%;
    background: #0a1228;
    overflow: hidden;
    text-align: center;
}

/* Glow */
.stats-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.4),
        transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Glass Card */
.stat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255,159,28,0.25);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ff9f1c;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-container {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
/**************************************************/
/************** DOWNLOAD CATALOG *****************/
/**************************************************/

.catalog-section {
    position: relative;
    padding: 160px 8%;
    background: #0a1228;
    overflow: hidden;
}

.catalog-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.4),
        transparent 70%);
    top: -250px;
    right: -200px;
    filter: blur(120px);
}

.catalog-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left PDF Mock */
.pdf-mock {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.pdf-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.pdf-mock h4 {
    color: #ffffff;
}

.pdf-mock p {
    color: #cbd5e1;
    font-size: 14px;
}

/* Right Content */
.catalog-right h2 {
    font-size: 38px;
    color: #ffffff;
}

.catalog-right span {
    color: #ff9f1c;
}

.catalog-right p {
    color: #cbd5e1;
    margin: 20px 0 30px;
}

.catalog-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    color: #e2e8f0;
    font-size: 14px;
}

.catalog-actions {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-download {
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0a1228;
    font-weight: 700;
    transition: 0.3s;
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255,159,28,0.5);
}

.btn-whatsapp-catalog {
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg,#25D366,#1da851);
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp-catalog:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37,211,102,0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .catalog-container {
        flex-direction: column;
        text-align: center;
    }
}
/**************************************************/
/******************** FAQ *************************/
/**************************************************/

.faq-section {
    position: relative;
    padding: 140px 8%;
    background: #0a1228;
    color: #ffffff;
}

.faq-head {
    text-align: center;
    margin-bottom: 70px;
}

.faq-head h2 {
    font-size: 34px;
}

.faq-head span {
    color: #ff9f1c;
}

.faq-head p {
    color: #cbd5e1;
    margin-top: 10px;
}

/* Container */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* Item */
.faq-item {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

/* Question */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question span {
    font-size: 22px;
    color: #ff9f1c;
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 14px;
    color: #cbd5e1;
    transition: all 0.4s ease;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 25px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}
/**************************************************/
/**************** PREMIUM FOOTER ******************/
/**************************************************/

.premium-footer {
    position: relative;
    background: #0a1228;
    padding: 90px 8% 30px;
    overflow: hidden;
    color: #cbd5e1;
}

/* Glow Background */
.footer-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(30,58,138,0.5),
        transparent 70%);
    top: -300px;
    left: -200px;
    filter: blur(120px);
    pointer-events: none;
}

/* Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9f1c;
    padding-left: 6px;
}

/* Social */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ff9f1c;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter form {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 25px 0 0 25px;
    border: none;
    outline: none;
}

.newsletter button {
    padding: 10px 18px;
    border-radius: 0 25px 25px 0;
    border: none;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0a1228;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    transform: translateY(-2px);
}

/* Bottom Strip */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/**************************************************/
/*************** SOCIAL ICONS ********************/
/**************************************************/

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #cbd5e1;
    transition: 0.3s ease;
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-4px);
}

/* Facebook */
.social-icon.facebook:hover {
    background: #1877f2;
}
.social-icon.facebook:hover svg {
    fill: #ffffff;
}

/* Instagram */
.social-icon.instagram:hover {
    background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}
.social-icon.instagram:hover svg {
    fill: #ffffff;
}

/* LinkedIn */
.social-icon.linkedin:hover {
    background: #0a66c2;
}
.social-icon.linkedin:hover svg {
    fill: #ffffff;
}
/**************************************************/
/*************** TRUST BADGES ********************/
/**************************************************/

.footer-trust {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
    text-align: center;
    color: #cbd5e1;
    font-size: 13px;
    transition: 0.3s;
}

.trust-item img {
    height: 50px;
    margin-bottom: 8px;
    filter: brightness(0.9);
    transition: 0.3s;
}

.trust-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/**************************************************/
/*************** PAYMENT ICONS ********************/
/**************************************************/

.footer-payments {
    margin-top: 25px;
    text-align: center;
}

.footer-payments img {
    height: 28px;
    margin: 0 10px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-payments img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/**************************************************/
/*************** FOOTER BOTTOM LINK **************/
/**************************************************/

.footer-bottom a {
    color: #ff9f1c;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
}
/**************************************************/
/************* RIGHT FLOATING CTA ***************/
/**************************************************/

.side-cta {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}
/* SVG Base */
.svg-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Quote icon dark */
.side-btn.quote .svg-icon {
    fill: #0a1228;
}

/* ================= PHONE RING ANIMATION ================= */
.phone {
    transform-origin: center;
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* ================= WHATSAPP PULSE ================= */
.whatsapp {
    animation: wpPulse 2.5s infinite;
}

@keyframes wpPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ================= QUOTE BOUNCE ================= */
.file {
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
/* Button Base */
.side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    font-weight: 600;
    
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hide text initially */
.side-btn .label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.3s ease;
}

/* On Hover expand */
.side-btn:hover {
    padding-right: 25px;
}

.side-btn:hover .label {
    max-width: 120px;
}

/* Call */

/* WhatsApp */
.side-btn.whatsapp {
    color: #d5cece;
}

/* Quote */
.side-btn.quote {  
    color: #0a1228;
}

/* Hover lift */
.side-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Subtle WhatsApp pulse */
.side-btn.whatsapp {
    animation: sidePulse 2.5s infinite;
}

@keyframes sidePulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile adjust */
@media (max-width: 768px) {

    .side-cta {
        right: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .side-btn {
        border-radius: 30px;
    }

    .side-btn .label {
        display: none;
    }
}
/**************************************************/
/************* 3D NEON ICON STYLE ****************/
/**************************************************/

.neon-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.3s ease;
}

/* ===== CALL BLUE NEON ===== */
.side-btn.call .neon-icon {
    stroke: #3b82f6;
    filter:
        drop-shadow(0 0 4px #3b82f6)
        drop-shadow(0 0 8px #2563eb)
        drop-shadow(0 0 14px #1e40af);
}

/* ===== WHATSAPP GREEN NEON ===== */
.side-btn.whatsapp .neon-icon {
    stroke: #25D366;
    filter:
        drop-shadow(0 0 4px #25D366)
        drop-shadow(0 0 8px #1da851)
        drop-shadow(0 0 14px #15803d);
}

/* ===== QUOTE ORANGE NEON ===== */
.side-btn.quote .neon-icon {
    stroke: #ff9f1c;
    filter:
        drop-shadow(0 0 4px #ff9f1c)
        drop-shadow(0 0 8px #ff7a18)
        drop-shadow(0 0 14px #ea580c);
}

/* Hover – Stronger Glow */
.side-btn:hover .neon-icon {
    transform: scale(1.15);
    filter:
        drop-shadow(0 0 6px currentColor)
        drop-shadow(0 0 12px currentColor)
        drop-shadow(0 0 20px currentColor);
}
/**************************************************/
/**************** RESPONSIVE **********************/
/**************************************************/

@media (max-width:1199px){
    .product-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width:991px){
    .product-grid { grid-template-columns: repeat(2,1fr); }
    .hero-slide { flex-direction: column; text-align: center; }
}

@media (max-width:576px){
    .product-grid { grid-template-columns: 1fr; }
}
/**************************************************/
/************* PREMIUM AMAZON HEADER **************/
/**************************************************/

.premium-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #131921;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* LEFT */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 55px;
}

.location-box {
    cursor: pointer;
}

.loc-small {
    font-size: 12px;
    color: #cbd5e1;
}

.loc-big {
    font-size: 14px;
    font-weight: 600;
}

/* SEARCH */
.header-search {
    flex: 1;
    display: flex;
    max-width: 750px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.header-search select {
    border: none;
    padding: 8px;
    background: #f3f4f6;
}

.header-search input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.header-search button {
    border: none;
    background: #febd69;
    padding: 0 20px;
    cursor: pointer;
}

/* RIGHT */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.small {
    font-size: 12px;
}

.big {
    font-size: 14px;
    font-weight: 600;
}

/* ACCOUNT DROPDOWN */
.account-box {
    position: relative;
    cursor: pointer;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    color: #000;
    padding: 15px;
    width: 180px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.account-dropdown a {
    padding: 8px 0;
    color: #000;
}

.account-dropdown a:hover {
    color: #ff9f1c;
}

.account-box:hover .account-dropdown {
    display: flex;
}

/* CART */
.cart-box {
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff9f1c;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* HOVER EFFECT */
.header-right div:hover .big {
    color: #ff9f1c;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .premium-header {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .orders-box,
    .account-box {
        display: none;
    }

}


/**************************************************/
/************ PREMIUM CATEGORY PAGE **************/
/**************************************************/
/* ================= CATEGORY PAGE ================= */

.category-page {
    padding:  20px;
    background: linear-gradient(135deg,#0a1228,#111827);
    min-height: 100vh;
    
}

/* HERO STRIP */

.category-hero {
    height:fit-content;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 70px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.category-hero::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(255,159,28,0.3),transparent 70%);
    top:-200px;
    right:-200px;
    filter:blur(80px);
}

.cat-hero-content h1 {
    font-size: 48px;
    color:#fff;
    font-weight:700;
}

.cat-hero-content span{
    color:#ff9f1c;
}

.cat-hero-content p {
    margin-top: 12px;
    color: #cbd5e1;
    font-size:16px;
}

/* LAYOUT */

.category-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ================= SIDEBAR ================= */

.filter-sidebar {
    width: 280px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 120px;
    transition: 0.4s ease;
}

.filter-title h3{
    color:#fff;
    margin-bottom:25px;
}

.filter-group {
    margin-bottom:30px;
}

.filter-group h4{
    color:#ff9f1c;
    font-size:15px;
    margin-bottom:12px;
}

.filter-group label{
    display:block;
    color:#e2e8f0;
    margin-bottom:8px;
    cursor:pointer;
    font-size:14px;
}

.filter-group input{
    margin-right:8px;
}

/* ================= ACTIVE FILTER CHIPS ================= */

.active-filters {
    margin-bottom: 15px;
}

.filter-chip {
    display: inline-block;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: #0a1228;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
    font-weight:600;
    cursor: pointer;
    transition:0.3s;
}

.filter-chip:hover{
    transform:scale(1.05);
}

/* ================= PRODUCT AREA ================= */

.product-area {
    flex:1;
}

/* TOPBAR */

.category-topbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.results-count{
    color:#fff;
    font-weight:600;
}

.category-topbar select{
    padding:8px 14px;
    border-radius:8px;
    border:none;
}

/* ================= PRODUCT GRID ================= */

.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

/* PRODUCT CARD */
/* PRODUCT CARD IMPROVED */

.cat-product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cat-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.25);
}

/* Branding Badge */
.branding-badge {
    top: 2px;
    left: 25px;
    background: linear-gradient(135deg,#e0f2fe,#bae6fd);
    color: #1648d3;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none; /* 🔥 VERY IMPORTANT */
}

/* Image */
.product-img {
    text-align: center;
    top: 20px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 20px;
}

.product-img img {
    height: 170px;
    object-fit: contain;
    transition: 0.3s;
    border-radius: 20px;
}

.cat-product-card:hover img {
    transform: scale(1.08);
}
.video-wrapper{
height:260px;
overflow:hidden;
border-radius:12px;
}

.video-wrapper video,
.video-wrapper iframe{
width:100%;
height:100%;
object-fit:cover;
}

/* Quick Button */
.quick-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
}

.cat-product-card:hover .quick-btn {
    opacity: 1;
}
.check-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
}
.cat-product-card:hover .check-btn {
    opacity: 1;
}

/* Product Info */
.product-info h3 {
    font-size: 30px;
    margin-bottom: 6px;
    color: black;
    text-align: center;
}

.product-info{
    text-align:center;
}

.model-no{
    font-size:14px;
    color:#2350d9;
    font-weight:600;
    margin-top:4px;
}

.moq {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: red;
}

/* Quantity Box */
.qty-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.qty-box input {
    width: 70px;
    text-align: center;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.qty-minus,
.qty-plus {
    padding: 6px 12px;
    border: none;
    background: #0f172a;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* Buttons */
.product-actions {
    display: flex;
    gap: 10px;
}

.cat-btn-quote {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    font-weight: 600;
    cursor: pointer;
}

.cat-btn-wa {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
}
/* ================= MOBILE RESPONSIVE ================= */

.mobile-filter-toggle {
    display: none;
}

.mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9998;
}

.mobile-filter-overlay.active {
    display: block;
}

/* Tablet */

@media(max-width:991px){

    .category-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        width: 300px;
        background: #ffffff;
        z-index: 9999;
        transition: 0.4s ease;
        overflow-y: auto;
        padding: 30px;
        border-radius:0;
    }

    .filter-sidebar.active {
        left: 0;
    }

    .mobile-filter-toggle {
        display: block;
        margin-bottom: 30px;
        padding: 12px 20px;
        border-radius: 30px;
        border: none;
        background: linear-gradient(135deg,#ff9f1c,#ff7a18);
        font-weight:600;
        color:#fff;
        cursor:pointer;
    }

    .cat-product-grid {
        grid-template-columns: repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:576px){

    .cat-product-grid {
        grid-template-columns: 1fr;
    }

    .cat-hero-content h1 {
        font-size: 28px;
    }

}

/* FULL SCREEN IMAGE VIEWER */

.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: zoom-out;
}

.image-viewer.active {
    display: flex;
}

.image-viewer img {
    max-width: 90%;
    max-height: 85%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

/* Zoom effect */
.image-viewer img.zoomed {
    transform: scale(1.6);
    cursor: zoom-out;
}

/* Close Button */
.viewer-close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.viewer-close:hover {
    color: #ff9f1c;
}
/* Viewer Container */
.viewer-container {
    position: relative;
    display: inline-block;
}

/* Main Image */
.viewer-container img#viewerImg {
    max-width: 90%;
    max-height: 85vh;
    transition: transform 0.3s ease;
}

/* Watermark */
.viewer-watermark {
    position: absolute;
    bottom: 20px;       /* bottom right corner */
    right: 20px;
    width: 150px;
    opacity: 0.10;      /* transparency */
    pointer-events: none;
    user-select: none;
}

/* If you want center watermark instead use this: */
.viewer-watermark {
    top: 80%;
    left: 60%;
    transform: translate(-30%, -30%);
    width: 250px;
    opacity: 0.50;
}
/* ================= SPLIT LEFT 3D PANEL ================= */

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 3D Glass Card */
.summary-card {
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg,#111827,#1f2937);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
    color: #fff;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: 0.4s;
}

/* Glow Background */
.summary-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.3),
        transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
    animation: glowMove 6s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from { transform: translate(0,0); }
    to { transform: translate(40px,30px); }
}

/* Divider */
.summary-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#ff9f1c,#ff7a18);
    margin: 15px 0 20px;
    border-radius: 3px;
}

/* Model & MOQ */
.model-display,
.qty-display {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* Corporate Badge */
.corporate-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,159,28,0.15);
    color: #ff9f1c;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,159,28,0.3);
}

/* Hover 3D Tilt */
.summary-card:hover {
    transform: translateY(-5px);
}


/* ================= 3D FORM BOX ================= */
/* ===== HORIZONTAL FORM ===== */

.horizontal-form {
    margin-top: 20px;
}

/* Each Row */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* Left Label */
.form-label {
    width: 35%;
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

/* Right Field */
.form-field {
    width: 65%;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: 0.3s;
}

/* Focus Effect */
.form-field input:focus,
.form-field textarea:focus {
    border-color: #ff9f1c;
    box-shadow: 0 0 0 3px rgba(255,159,28,0.2);
    outline: none;
}

/* Locked Product Rows */
.locked-row {
    background: linear-gradient(135deg,#111827,#1f2937);
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.locked-row .form-label {
    color: #ff9f1c;
}

.locked-row input {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #ffffff;
}

/* Submit Button */
.submit-quote-btn {
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    border: none;
    font-weight: 700;
    cursor: pointer;
    color: #0f172a;
    margin-top: 20px;
    box-shadow: 0 20px 50px rgba(255,159,28,0.4);
    transition: 0.3s;
}

.submit-quote-btn:hover {
    transform: translateY(-3px);
}
/* ================= MOBILE FIX ================= */
@media(max-width:768px){

    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-label,
    .form-field {
        width: 100%;
    }

    .form-label {
        margin-bottom: 5px;
    }

}
/*Option For Inquirey Through Whatsap Ya Email Id */

/* OVERLAY */
.send-option-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.send-option-modal.active {
    display: flex;
}

/* BOX */
.send-option-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.send-option-box h3 {
    margin-bottom: 30px;
    color: #0f172a;
}

/* BUTTONS */
.send-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* WhatsApp */
.send-btn.whatsapp {
    background: linear-gradient(135deg,#25D366,#1da851);
    color: white;
}

.send-btn.whatsapp:hover {
    transform: translateY(-3px);
}

/* Email */
.send-btn.email {
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    color: white;
}

.send-btn.email:hover {
    transform: translateY(-3px);
}

/* SUCCESS OVERLAY */
.success-message {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
}

.success-message.active {
    display: flex;
}

/* SUCCESS BOX */
.success-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 50px 120px rgba(0,0,0,0.4);
    animation: successPop 0.5s ease;
}

.success-box h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.success-box p {
    font-size: 15px;
    font-weight: 600;
    color: #ff9f1c;
}

/* Animation */
@keyframes successPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ===== VIDEO CARD STYLE ===== */

.video-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.4s ease;
}

.video-card:hover video {
    transform: scale(1.05);
}

/* Quantity Box */
.qty-box {
    margin: 10px 0;
}

.qty-box input {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}
.video-card .product-img::after {
    content: "▶";
    position: absolute;
    font-size: 30px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    pointer-events: none;
}
/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* VIDEO */
.video-wrapper video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

/* WATERMARK */
.video-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 90px;
    opacity: 1.18;
    z-index: 3;
    pointer-events: none;
}

/* FULLSCREEN BUTTON */
.fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    z-index: 4;
    transition: 0.3s;
}

.fullscreen-btn:hover {
    background: #ff9f1c;
}
.video-wrapper:fullscreen video,
.video-wrapper:-webkit-full-screen video {
    height: 100vh;
    width: 100vw;
    object-fit: contain;
    border-radius: 0;
}
.video-wrapper:fullscreen,
.video-wrapper:-webkit-full-screen {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-wrapper:fullscreen .video-watermark,
.video-wrapper:-webkit-full-screen .video-watermark {
    width: 180px;
    top: 30px;
    right: 30px;
    opacity: 0.25;
}
/* Hide by default */
.exit-fullscreen-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* Show only in fullscreen */
.video-wrapper:fullscreen .exit-fullscreen-btn,
.video-wrapper:-webkit-full-screen .exit-fullscreen-btn {
    display: block;
}

/* ================= PRODUCT DETAIL SECTION ================= */

.product-detail-section {
    padding: 120px 8%;
    background: #0a1228;
}

.product-detail-container {
    display: flex;
    gap: 60px;
    align-items: center;
}


/* VIDEO BOX */
.product-video-box {
    flex: 1;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

/* Animated Glow */
.video-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(255,159,28,0.4),
        transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(120px);
    animation: videoGlowMove 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes videoGlowMove {
    from { transform: translate(0,0); }
    to { transform: translate(60px,40px); }
}

/* VIDEO */
.product-video-box video {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}

/* RIGHT INFO */
.product-info-box {
    flex: 1;
    color: white;
}

.product-info-box h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.model-number {
    font-weight: 600;
    color: #ff9f1c;
    margin-bottom: 15px;
}

.product-desc {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.moq-box {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

.detail-quote-btn {
    padding: 14px 30px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg,#ff9f1c,#ff7a18);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(255,159,28,0.4);
    transition: 0.3s;
}

.detail-quote-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(255,159,28,0.6);
}
@media (max-width: 768px) {

    .product-detail-container {
        flex-direction: column;
        gap: 40px;
    }

    .product-info-box h1 {
        font-size: 24px;
        text-align: center;
    }

    .product-info-box {
        text-align: center;
    }

}

/*Video TTHUMBNAIL */

.product-video-box {
    flex: 1;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

/* MAIN VIDEO */
.product-video-box video#mainVideo {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.4);
}

/* WATERMARK */
.video-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    opacity: 1.0;
    z-index: 5;
    pointer-events: none;
}

/* THUMBNAILS */
.video-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.video-thumbnails video {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.video-thumbnails video:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width:768px) {

    .video-thumbnails {
        justify-content: center;
        flex-wrap: wrap;
    }

    .video-thumbnails video {
        width: 80px;
        height: 60px;
    }

    .video-watermark {
        width: 80px;
    }

}

/**Details Pop Model Css**/

.details-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.65);
backdrop-filter:blur(6px);

display:flex;
align-items:center;
justify-content:center;

opacity:0;
visibility:hidden;
transition:0.4s;
}

.details-modal.active{
opacity:1;
visibility:visible;
}
.details-box{

width:90%;
max-width:1000px;

background:linear-gradient(145deg,#ffffff,#f2f4f8);

border-radius:12px;

box-shadow:
0 20px 60px rgba(0,0,0,0.35),
0 5px 15px rgba(0,0,0,0.1);

padding:25px;
position:relative;

animation:popupScale 0.35s ease;

}
.details-close{

position:absolute;
top:15px;
right:18px;

font-size:22px;
cursor:pointer;

background:#d02424;
width:32px;
height:32px;

border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

transition:0.3s;

}

.details-close:hover{

background:#ff4d4d;
color:#fff;

}
.details-container{
display:flex;
gap:30px;
}

.details-left{
flex:1;
}
.media-content{

background:#000;
border-radius:10px;

overflow:hidden;

box-shadow:
0 8px 25px rgba(0,0,0,0.25);
}
.media-tabs{
display:flex;
gap:10px;
margin-bottom:15px;
}

.media-tabs button{

padding:10px 22px;
font-size:14px;
font-weight:600;

border:none;
border-radius:30px;

background:#86a7e9;
color:#333;

cursor:pointer;

transition:all 0.3s ease;

box-shadow:0 2px 6px rgba(0,0,0,0.08);

}

.media-tabs button:hover{

background:#e9edf6;

transform:translateY(-2px);

box-shadow:0 5px 15px rgba(0,0,0,0.15);

}
.media-content{
width:100%;
height:320px;
overflow:hidden;
position:relative;
}
#detailsImg{
width:100%;
height:320px;
object-fit:contain;
}

#detailsVideo{
width:100%;
height:320px;
border:none;
object-fit:cover;
}

.details-right{
flex:1;
}
.details-model{
    display:inline-block;
    background:linear-gradient(135deg,#fff7ec,#ffe8cc);
    border:1px solid #ffd6a3;
    padding:6px 12px;
    border-radius:6px;

    font-size:14px;
    font-weight:600;

    color:#444;

    margin:8px 0 12px 0;

    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.details-model span{

    color:#ff6a00;
    font-weight:700;
    margin-left:4px;
}

.option-box{
    margin-top:18px;
    display:flex;
    flex-direction:column;
}

.option-box label{
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
    color:#333;
    letter-spacing:0.3px;
}
#detailsDesc{

    font-size:16px;
    line-height:1.7;

    color:#555;

    margin-top:10px;
    margin-bottom:15px;

    padding:12px 14px;

    background:#fafafa;

    border-left:4px solid #ff7a18;

    border-radius:6px;

    box-shadow:0 2px 6px rgba(0,0,0,0.05);

}

/* Stylish Select Box */

.option-box select{

    padding:10px 14px;
    border-radius:8px;
    border:1px solid #ddd;
    background:#fafafa;

    font-size:14px;
    font-weight:500;

    outline:none;

    transition:all 0.3s ease;
}

/* Hover Effect */

.option-box select:hover{

    border-color:#ff7a18;

    box-shadow:0 4px 10px rgba(0,0,0,0.08);

}

/* Focus Effect */

.option-box select:focus{

    border-color:#ff7a18;

    box-shadow:0 0 0 2px rgba(255,122,24,0.15);

}

/* Arrow Styling */

.option-box select{
    appearance:none;
    background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='%23666' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:14px;
}
.details-actions{
margin-top:20px;
display:flex;
gap:15px;
border-color: #0ea5e9;
}

.quote-btn{
padding:12px 20px;
background:linear-gradient(135deg,#ff9f1c,#ff7a18);
border:none;
border-radius:6px;
font-weight:700;
}

.wa-btn{
display:block;
width:100%;
text-align:center;
background:#25D366;
color:#fff;
padding:14px;
border-radius:6px;
font-size:16px;
font-weight:600;
text-decoration:none;
cursor:pointer;

animation: waPulse 1.2s infinite;
}

/* Pulse Animation */

@keyframes waPulse{

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
transform:scale(1.05);
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

.details-close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.details-container{
flex-direction:column;
}

.details-actions{
flex-direction:column;
}

.quote-btn,
.wa-btn{
width:100%;
text-align:center;
}

}
.option-box{
margin-top:15px;
}

.option-box label{
display:block;
font-weight:600;
margin-bottom:5px;
}

.option-box select{
width:100%;
padding:8px;
border-radius:6px;
border:1px solid #ccc;
}
/********Product Filter***********/
.diary-filter{

display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
justify-content:center;

}

.filter-btn{

padding:8px 18px;
border:none;
background:#f2f2f2;
border-radius:25px;
font-size:14px;
cursor:pointer;
transition:0.3s;

}

.filter-btn:hover{

background:#ff7a18;
color:white;

}

.filter-btn.active{

background:#ff7a18;
color:white;

}
.wa-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    margin-top: 10px;
    padding: 10px 12px;
    
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;
    font-size: 14px;
    font-weight: 600;
    
    border-radius: 8px;
    text-decoration: none;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* ICON */
.wa-card-btn i {
    font-size: 16px;
}

/* HOVER EFFECT */
.wa-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* CLICK EFFECT */
.wa-card-btn:active {
    transform: scale(0.95);
}

