body{
    background: #eaf0ea;
}
.banner-img {
    height: 450px;
    object-fit: cover;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

/* Hide all Google branding/footer */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-spinner-pos,
#google_translate_element {
  display: none !important;
}

/* Hide the close (X) button inside the translate bar iframe */
iframe.goog-te-banner-frame {
  display: none !important;
}

/* Prevent any spacing shift */
.goog-te-banner-frame {
  height: 0 !important;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.display-3 {
    font-size: 4.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.lead {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Premium Indicators */
.banner-slider .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    margin: 0 8px;
    transition: all 0.4s ease;
}

.banner-slider .carousel-indicators button.active {
    width: 50px;
    border-radius: 30px;
    background: white;
    border-color: white;
}

/* Glassmorphism Controls (Shopify Prestige Style) */
.carousel-control-prev,
.carousel-control-next {
    width: 55px !important;
    height: 36px;
    border-radius: 4.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: all 0.4s 
ease;
    top: 56%;
    transform: translateY(-50%);
}

.banner-slider:hover .carousel-control-prev,
.banner-slider:hover .carousel-control-next {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 992px) {
    .banner-slider .carousel-item { height: 70vh; }
    .display-3 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .banner-slider .carousel-item { height: 60vh; min-height: 400px; }
    .display-3 { font-size: 2.8rem; }
    .lead { font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .display-3 { font-size: 2.2rem; }
    .btn-lg { padding: 12px 30px !important; font-size: 1rem; }
    .carousel-control-prev,
    .carousel-control-next { width: 50px; height: 50px; }
}
/* ------------------------------------
   NAVBAR
------------------------------------ */

/* ==================== TOP BAR - STICKY ==================== */
.top-bar {
    background: #f6f6f6;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discount-link {
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #007bff;
}

.top-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.top-bar i {
    margin-right: 6px;
    font-size: 14px;
}

.language-select {
    width: 120px;
    font-size: 13px;
    padding: 2px 6px;
    line-height: 1.2;
}

/* ==================== NAVBAR - STICKY BELOW TOP BAR ==================== */
.navbar {
    padding: 10px 0 !important;
    background: #fff;
    position: sticky;
    left: 0;
    right: 0;
    top: 37px; /* Top bar height */
    z-index: 1030;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.navbar .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar-brand img {
    height: 32px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ==================== NAV LINKS ==================== */
.nav-link {
    color: #4b5563 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FC602B;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active,
.nav-link:hover {
    color: #FC602B !important;
}

/* ==================== DROPDOWN ==================== */
.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.1em;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ==================== MEGA MENU ==================== */
.mega-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    padding: 2rem 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu h6 {
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-menu h6:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.mega-menu a {
    text-decoration: none;
    color: inherit;
}

/* ==================== CATEGORY SIDEBAR ==================== */
.category-sidebar {
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.category-section {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd !important;
}

.category-header {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
}

.category-header:hover {
    background: white;
}

.category-header.collapsed .chevron {
    transform: rotate(-90deg);
}

.category-header .chevron {
    transition: transform 0.3s ease;
}

.category-collapse {
    padding-left: 1rem;
}

.category-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.25rem 0;
}

.category-item:hover {
    background: white;
    transform: translateX(5px);
}

.category-item img {
    border-radius: 4px;
}

/* ==================== MEGA MENU CONTENT ==================== */
.mega-menu-content {
    padding: 1.5rem 2rem;
}

.mega-menu-content h5 {
    color: #1f2937;
    font-weight: 700;
    padding-bottom: 0.75rem;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: #f6f6f6 !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    width: 97%;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 14px;
}

.product-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* ==================== VIEW ALL CARD ==================== */
.view-all-card {
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-all-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.view-all-content {
    text-align: center;
    color: white;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.arrow-icon svg {
    stroke: white;
}

.view-all-text {
    font-size: 18px;
    font-weight: 700;
}

/* ==================== RIGHT CORNER ICONS ==================== */
.right-cor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px !important;
}

.right-cor a {
    color: #4b5563 !important;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.right-cor a:hover {
    transform: scale(1.1);
    color: #FC602B !important;
}

.right-cor i {
    font-size: 20px;
    color: #4b5563;
    cursor: pointer;
}

#cart-count {
    font-size: 9px !important;
    position: absolute;
    top: 8px !important;
    right: -17px !important;
    background: #FC602B;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
}

/* ==================== MOBILE CATEGORY SELECTOR ==================== */
.mobile-category-selector {
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-category-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.mobile-subcategories {
    display: none;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.mobile-subcategories.show {
    display: block;
}

.mobile-subcategory-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.mobile-subcategory-item:last-child {
    border-bottom: none;
}

.mobile-subcategory-item:hover {
    background: #f9fafb;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 991px) {
    .top-bar {
        padding: 6px 12px;
        font-size: 12px;
    }

    .navbar {
        padding: 8px 0 !important;
        top: 30px; /* Reduced top bar height on mobile */
    }

    .navbar-brand img {
        height: 28px !important;
    }

    .right-cor {
        gap: 12px;
        margin-left: 10px !important;
    }

    .mega-menu {
        position: relative !important;
        transform: none !important;
        padding: 1rem;
    }

    .category-sidebar {
        display: none;
    }

    .mobile-category-selector {
        display: block;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mega-menu-content {
        padding: 1rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container-fluid {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        text-align: center;
        flex-direction: column;
        gap: 5px;
        padding: 8px 10px;
    }

    .product-image {
        height: 150px;
    }

    .navbar {
        padding: 6px 0 !important;
    }
}
/* Center text */
.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
.about-section {
    padding: 60px 5%;
    background: #eaf0ea;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE VIDEO */
.about-video {
    width: 100%;
    max-width: 500px; 
    aspect-ratio: 1/1;      /* PERFECT SQUARE */
    overflow: hidden;
    border-radius: 12px;
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Crop perfectly */
    border-radius: 12px;
}
/* RIGHT SIDE CONTENT */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h4 {
    color: #444;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h1 span {
    color: #ff5b2e;
}

.about-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-content ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}
.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    padding-bottom: 8px;
}

.point-item.with-line {
    border-bottom: 1px solid #181818;
    max-width: max-content;
}

@media (max-width: 768px) {

    .point-item,
    .point-item.with-line {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
    }

    /* FIX: Remove max-width in mobile */
    .point-item.with-line {
        max-width: 100% !important;
    }
}


.point-number {
    color: #ff5b2e;
    font-weight: 600;
    font-size: 18px;
}

.point-text {
    font-size: 18px;
    color: #222;
}
/* BUTTON */
.about-btn {
    display: inline-block;
    background: #ff5b2e;
    padding: 12px 28px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-video video {
        max-width: 100%;
    }

    .about-content h1 {
        font-size: 36px;
    }
}
.stats-section {
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    text-align: center;
    color: #fff;
    background: url('https://www.yqtechdev.com/wp-content/uploads/2025/07/banner-3.1-1.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Optional blur layer */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.yqtechdev.com/wp-content/uploads/2025/07/banner-3.1-1.jpg') center / cover no-repeat;
    /* transform: scale(1.08); */
    z-index: 0;
}

/* Dark overlay */
.stats-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #0dcff059;
    opacity: 0.8;
    z-index: 1;
}

/* Content above overlay */
.stats-section > * {
    position: relative;
    z-index: 2;
}

.stat-box {
    width: 23%;
    min-width: 250px;
    position: relative;
    z-index: 10;
}


.circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.circle svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

circle {
    fill: none;
    stroke-width: 10;
    stroke: #ffffff33;
}
.text-title-counter{
  font-size:21px;
}
.text-description-counter{
  font-size: 16px;
    font-weight: 300;
}
.progress {
    stroke: #ff6a00; /* ORANGE COLOR */
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s linear;
}

.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: bold;
}
.category-tabs {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.cat-tab {
    padding: 12px 25px;
    background: #dedede;
    border-radius: 25px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.cat-tab.active {
    background: #ff6a00;
    color: #fff;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-top: 30px;
}
/* 
.product-box {
   width: 25%;
    min-width: 250px;
    border: 2px solid #eaeaea;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    display: none;
} */

.product-box img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.product-btn {
    display: inline-block;
    margin-top: 15px;
    background: #ff6a00;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
}
.product-img {
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.owl-nav button {
    position: absolute;
    top: 40%;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.owl-nav .owl-prev {
    left: -40px;
}

.owl-nav .owl-next {
    right: -40px;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: orange !important;
}

.owl-dots .owl-dot.active span {
    background: black !important;
}

.item{
    border:1px solid #ddd;
    padding:20px;
}

/* FAQ Section Styling */
#accordionFlushExample .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: 1px solid;
}

#accordionFlushExample .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 17px;
    padding: 15px 20px;
    border: none;
    color: #333;
    transition: all 0.3s ease;
}

#accordionFlushExample .accordion-button:not(.collapsed) {
    background: #ff6e00;
    color: #fff;
    box-shadow: none;
}

#accordionFlushExample .accordion-button:focus {
    box-shadow: none;
}

#accordionFlushExample .accordion-body {
    background: #fff;
    padding: 15px 20px;
    color: #444;
    font-size: 15px;
    border-top: 1px solid #eee;
}

/* Smooth icon rotation */
#accordionFlushExample .accordion-button::after {
    transition: transform 0.3s ease;
}

#accordionFlushExample .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Heading Styling */
.faq-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}
.testimonial-section {
    padding: 50px 0;
    background: #eef5ec;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 10px;
    min-height: 350px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 10px;
}

.review {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.profile {
    display: flex;
    align-items: center;
}

.profile img {
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.profile h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.profile p {
    margin: 0;
    font-size: 13px;
    color: #777;
}
.brands-section {
    background: #e9f1ea;
    padding: 60px 0;
}

.brands-section .title {
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: #333;
}

.brands-section .subtitle {
    max-width: 800px;
    margin: 10px auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.brands-carousel .brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    height: 140px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);

    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-card img {
    max-width: 150px;
    max-height: 125px;
    object-fit: contain;
}

.tech-advantages {
    background: #eaf1eb;
}

.adv-title {
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: #333;
}

.adv-subtitle {
    max-width: 850px;
    margin: 10px auto;
    font-size: 16px;
    color: #444;
    font-style: italic;
}
.adv-item1 {
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.adv-icon1 img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.adv-box {
    gap: 18px;
}

.adv-icon {
    width: 70px;
    height: 75px;
    margin-right: 10px;
}

.adv-heading {
    font-size: 20px;
    font-weight: 600;
}

.adv-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.center-machine {
    width: 100%;
}


.contact-small-title {
    font-size: 18px;
    color: #555;
    margin-bottom: 5px;
}

.contact-main-title {
    font-size: 28px;
    color: #000;
}

.contact-input,
.contact-textarea {
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 10px;
    font-size: 15px;
}

.contact-textarea {
    height: 250px;
}

.contact-btn {
    background: #e56c28;
    border: none;
    padding: 10px 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}
.new-arrivals-section {
    background: #e1eadf;
}

.arrivals-title {
    font-size: 34px;
    font-weight: 500;
    color: #1a1a1a;
}

.arrival-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0;
    text-align: center;
    padding-bottom: 30px;
}

.arrival-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.arrival-body {
    padding-top: 15px;
}

.arrival-name {
    font-size: 16px;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.arrival-btn {
    background: #f57c33;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

                    .contact-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
        color: #3074ff;
        font-weight: 600;
    }

    .contact-input, 
    .contact-textarea {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        border: 1px solid #d9d9d9;
        outline: none;
        transition: 0.3s;
        font-size: 15px;
        color: #333;
        background: #fafafa;
    }

    .contact-input:focus,
    .contact-textarea:focus {
        border-color: #3074ff;
        background: #fff;
        box-shadow: 0 0 8px rgba(48,116,255,0.2);
    }

    .contact-textarea {
        height: 150px;
        resize: none;
    }

    .contact-btn {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 8px;
        background: #3074ff;
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-btn:hover {
        background: #1e56cc;
        box-shadow: 0 6px 15px rgba(30,86,204,0.3);
        transform: translateY(-2px);
    }

     /* Category Tabs - Horizontal Scroll on Mobile */
    .category-tabs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 10px 0;
        margin-bottom: 30px;
        scrollbar-width: none; /* Firefox */
    }

    .category-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .cat-tab {
        padding: 12px 24px;
        background: #dedede;
        color: #333;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .cat-tab.active {
        background: #ff6a00;
        color: white;
    }

    .cat-tab:hover {
        background: #ff8533;
        color: white;
    }

    /* Products Grid */
    .products-container {
        display: grid;
        
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .product-box {
        display: none; /* Hidden by default */
        width:100% !important;
    }

    .product-box.show {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .product-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: contain;
        /* background: #f9f9f9; */
        padding: 15px;
    }

    .product-info {
        padding: 15px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-info h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #333;
    }

    .product-btn {
        display: inline-block;
        background: #ff6a00;
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
        margin-top: auto;
    }

    .product-btn:hover {
        background: #e55a00;
    }
    /* Country Dropdown */
.country-dropdown,
.phone-dropdown {
    position: relative;
    display: inline-block;
}

/* Trigger (Top Section) */
.cd-trigger,
.pd-trigger {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Menu (Dropdown Box) */
.cd-menu,
.pd-menu {
position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    min-width: 200px;
    background: #fff;
    padding: 11px 18px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}
.country-dropdown {
    position: relative;
    display: inline-block;
}

.cd-trigger {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.cd-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-66%);   /* Center align */
    min-width: 180px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 8px 0;
    display: none;
    z-index: 999;
    white-space: nowrap;
}

.csccall{
    font-size: 18px;
    line-height: 0.9;
}
/* Hover to open */
.country-dropdown:hover .cd-menu,
.phone-dropdown:hover .pd-menu {
    display: block;
}

/* Items */
.cd-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.cd-item:hover {
    background: #f5f5f5;
}

.advantages-section1 {
    padding: 40px 0;
    text-align: center;
    background: #eef6ef;
}
 
.adv-title1 {
    font-size: 32px;
    margin-bottom: 30px;
}
 
.adv-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 1px; */
}
.adv-item1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(202, 179, 179, 0); /* start transparent */
    transition: background 0.1s ease;
    pointer-events: none;
}
.adv-item1:hover::after {
    background: rgba(185, 151, 151, 0.2); /* light shading */
}
 
.adv-icon1 {
    position: relative;
    top: 40%;
    transform: translateY(-50%);
}
 
.adv-icon1 img {
    width: 100px;
    opacity: 0.95;
}
    /* Responsive Grid */
    @media (max-width: 1200px) {
        .products-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .product-box{
            width:100% !important;
        }
        .products-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .product-card img {
            height: 180px;
        }
    }

    @media (max-width: 576px) {
        .products-container {
            grid-template-columns: 1fr;
        }
        .section-title {
            font-size: 1.6rem;
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }