

/* =========================================
  
    MODERN CATEGORY SECTION (2026 UI)
========================================= */

/* --- Base Section Styling --- */
.arg-category-section {
    background: #f8fafc; /* Premium light grey-blue background */
    padding: 40px 0;
}

.section-header {
    padding: 0 15px 20px;
    text-align: left;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.slider-wrapper {
    position: relative;
    padding: 0 5px;
}

/* --- Slider Core --- */
.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-behavior: smooth;
    padding: 15px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.category-slider::-webkit-scrollbar { display: none; }

/* --- Modern Card Design --- */
.cat-slide {
    min-width: 240px; /* Desktop Size */
    height: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.cat-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

/* --- Image Box (Full Cover) --- */
.img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज पूरे डि़व को कवर करेगी */
    transition: transform 0.6s ease;
}

.cat-slide:hover .img-box img {
    transform: scale(1.1);
}

/* --- Discount Badge --- */
.cat-discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444; /* Premium Red */
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

/* --- Text Details Box (Bottom) --- */
.cat-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.cat-details h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cat-price {
    font-size: 12px;
    color: #cbd5e1;
    margin-top: 4px;
}

.cat-price span {
    color: #22c55e; /* Premium Green for price */
    font-weight: 800;
    font-size: 15px;
    margin-left: 5px;
}

/* --- Navigation Buttons --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #1e293b;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover { background: #008080; color: #fff; }
.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }

/* --- View All Special Card --- */
.view-all-card {
    background: #008080 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-all-content { text-align: center; }
.icon-circle {
    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 15px;
    font-size: 24px;
}

/* --- Mobile Responsive (iPhone/Android Optimized) --- */
@media (max-width: 768px) {
    .section-title { font-size: 20px; }
    .cat-slide {
        min-width: 180px; /* Mobile width */
        height: 250px;
        border-radius: 16px;
    }
    .slider-btn { display: none; } /* Touch devices use swipe */
    .cat-details h4 { font-size: 15px; }
    .cat-discount-badge { font-size: 9px; padding: 3px 10px; }
}
/* This is use belowthe baaner txt css end =========*/
/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 640px) {
    .arg-category-section {
        margin: 6px;
        border-radius: 14px;
    }
    .arg-category-grid {
        gap: 10px;
        padding: 10px 12px;
    }

    .arg-cat-item {
        flex: 0 0 calc(100% / 3 - 8px);
        padding: 10px;
        border-radius: 14px;
    }

    .arg-cat-item .img-box {
        height: 90px;
    }

    /* arrows smaller on mobile */
    .arg-nav button {
        width: 40px;
        height: 55px;
        font-size: 20px;
        display: none !important;
    }

    .arg-prev { left: 2px; }
    .arg-next { right: 2px; }
}
 /* ==========This is the our best selling product section ============ */
/* ===============================
   2026 PROFESSIONAL ECOM UI (STABLE GRID)
   =============================== */


.ecommerce-products .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 items */
    gap: 12px;
    padding: 10px;
}

@media(min-width: 992px) {
    .ecommerce-products .product-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 items */
        gap: 20px;
    }
}

/* CARD MAIN STRUCTURE */
.ecommerce-products .ecom-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    height: 100%; /* Important for equal height */
    transition: all 0.3s ease;
}

.ecommerce-products .ecom-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* IMAGE BOX - FIXING THE HEIGHT ISSUE */
.ecommerce-products .ecom-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square Aspect Ratio (1:1) */
    background: #f8fafc;
    overflow: hidden;
}

.ecommerce-products .ecom-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.ecommerce-products .ecom-img-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* CONTENT BODY */
.ecommerce-products .ecom-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Push price to bottom */
}

/* TITLE - FIXED 2 LINES ONLY */
.ecommerce-products .ecom-title {
    font-size: 14px;
    font-weight: 700;
    /* font-weight: 600; */
    color: #008a7b;
    margin-bottom: 4px;
    line-height: 1.4;
    height: 20px; /* Force height so all cards align */
    /* height: 40px; Force height so all cards align */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* VARIANT */
.ecommerce-products .ecom-variant {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RATING - COMPACT */
.ecommerce-products .ecom-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fdf2f2; /* Light Star background */
    color: #f59e0b; /* Golden Yellow */
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0; /
}
/* Variant/Weight Style */
.ecommerce-products .ecom-variant {
    font-size: 12px;
    color: #161818; /* Professional grey */
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%; /* Taki rating ke liye jagah rahe */
}
.ecom-meta-row {
    display: flex;
    justify-content: space-between; /* Variant left, Rating right */
    align-items: center;
    margin: 8px 0;
    gap: 10px;
}
.ecommerce-products .ecom-rating i {
    /* color: #fbbf24; */
    font-size: 10px;
}
.ecommerce-products .ecom-rating span {
    color: #94a3b8; /* Count ka color halka */
    font-weight: 400;
    font-size: 10px;
}
/* PRICE AREA - CLEAN & PROFESSIONAL */
.ecommerce-products .ecom-price {
    margin-top: auto; /* Always sticks to bottom */
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    border-top: 1px dashed #eee;
}

.ecommerce-products .ecom-new {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.ecommerce-products .ecom-old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* DISCOUNT BADGE (Optional but cool) */
.discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}
/* why choose argye seciton css start */ 
/* ===== WHY CHOOSE US (MODERN) ===== */
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-flex-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Header Styling --- */
.why-header-left {
  flex: 0 0 300px;
}

.title-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.2;
}

.subtitle-small {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* --- Slider & Marquee Logic --- */
.why-slider-overflow {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.why-items-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.why-items-marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Compact Card Design --- */
.compact-card {
  position: relative;
  width: 200px;
  background: var(--card-bg);
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: var(--transition);
}

.compact-card:hover, .compact-card:focus {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.2);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.icon-box img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.compact-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 700;
}

/* --- Description Popup (Hover Effect) --- */
.card-description-popup {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: var(--bg-dark);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
  pointer-events: none;
}

/* Tooltip arrow */
.card-description-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--bg-dark) transparent transparent transparent;
}

.compact-card:hover .card-description-popup,
.compact-card:focus .card-description-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- Mobile & Tablet Responsiveness --- */
@media (max-width: 992px) {
  .why-flex-layout {
    flex-direction: column;
    text-align: center;
  }
  
  .why-header-left {
    flex: none;
    margin-bottom: 20px;
  }

  .title-main {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .why-modern-compact {
    padding: 40px 0;
  }
  
  .compact-card {
    width: 160px; /* Mobile par thoda chota */
    padding: 20px 15px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  /* Mobile par description popup handle karne ke liye adjustment */
  .card-description-popup {
    width: 180px;
  }
}
/* why choose argye seciton css end  */ 

/* ==========- start testimonilas -============== */
/* ==============================
   MODERN TESTIMONIAL SECTION
============================== */

/* --- Optimized Section Base --- */
.testimonial-modern-wrap {
    /* background-color: #fdfdfd; Clean white-grey tint */
    background-color: #e6ebeb; /* Clean white-grey tint */
    padding: 50px 0; /* Height kam karne ke liye padding ghatayi */
    font-family: 'Inter', sans-serif;
}

/* --- Compact Header --- */
.testimonial-header {
    text-align: center;
    margin-bottom: 30px; /* Space kam kiya */
}

.testimonial-header h3 {
    font-size: 1.8rem; /* Excessive size kam kiya */
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.header-line {
    display: block;
    width: 40px; /* Small line for premium look */
    height: 3px;
    background: #008a7b; /* Aapki brand theme color */
    margin: 0 auto;
    border-radius: 10px;
}

/* --- Compact Card Design --- */
.testimonial-card {
    background: #ffffff;
    border-radius: 15px; /* Thoda kam round */
    padding: 20px; /* Inner padding compact ki */
    margin: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Subtle shadow like Flipkart */
    display: flex;
    flex-direction: column;
    height: 220px; /* Fixed height taaki sab barabar dikhein */
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #008a7b30;
}

/* --- Small Image Styling --- */
.testimonial-top {
    margin-bottom: 12px;
}

.testimonial-top img {
    width: 45px !important; /* Compact size */
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0f2f1;
}

/* --- Compact Body Text --- */
.testimonial-text {
    font-size: 0.9rem; /* Smaller readable text */
    line-height: 1.5;
    color: #444;
    font-style: normal; /* E-commerce sites usually use normal style */
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Max 3 lines text dikhega height control ke liye */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Minimal Footer --- */
.testimonial-footer {
    border-top: 1px solid #f8f8f8;
    padding-top: 10px;
    margin-top: auto; /* Footer hamesha card ke bottom me rahega */
}

.testimonial-company {
    font-weight: 700;
    color: #008a7b; /* Brand color text */
    text-transform: none; /* Professional look */
    font-size: 0.8rem;
    display: block;
}

/* --- Minimal Dots --- */
.testimonial-slider .owl-dots {
    margin-top: 20px !important;
}

.testimonial-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #e0e0e0 !important;
}

.testimonial-slider .owl-dot.active span {
    background: #008a7b !important;
    width: 20px !important;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .testimonial-modern-wrap { padding: 30px 0; }
    .testimonial-card { height: 200px; padding: 15px; }
    .testimonial-header h3 { font-size: 1.5rem; }
}

/* index page css start for main div End  */



    
/* ==========-Header-section file css end ================ */

/* =========================================
  
    MODERN CATEGORY SECTION (2026 UI)
========================================= */

/* --- Base Section Styling --- */
.arg-category-section {
    background: #f8fafc; /* Premium light grey-blue background */
    padding: 40px 0;
}

.section-header {
    padding: 0 15px 20px;
    text-align: left;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.slider-wrapper {
    position: relative;
    padding: 0 5px;
}

/* --- Slider Core --- */
.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    scroll-behavior: smooth;
    padding: 15px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.category-slider::-webkit-scrollbar { display: none; }

/* --- Modern Card Design --- */
.cat-slide {
    min-width: 240px; /* Desktop Size */
    height: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.cat-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

/* --- Image Box (Full Cover) --- */
.img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज पूरे डि़व को कवर करेगी */
    transition: transform 0.6s ease;
}

.cat-slide:hover .img-box img {
    transform: scale(1.1);
}

/* --- Discount Badge --- */
.cat-discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444; /* Premium Red */
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

/* --- Text Details Box (Bottom) --- */
.cat-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.cat-details h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cat-price {
    font-size: 12px;
    color: #cbd5e1;
    margin-top: 4px;
}

.cat-price span {
    color: #22c55e; /* Premium Green for price */
    font-weight: 800;
    font-size: 15px;
    margin-left: 5px;
}

/* --- Navigation Buttons --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #1e293b;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover { background: #008080; color: #fff; }
.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }

/* --- View All Special Card --- */
.view-all-card {
    background: #008080 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-all-content { text-align: center; }
.icon-circle {
    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 15px;
    font-size: 24px;
}

/* --- Mobile Responsive (iPhone/Android Optimized) --- */
@media (max-width: 768px) {
    .section-title { font-size: 20px; }
    .cat-slide {
        min-width: 180px; /* Mobile width */
        height: 250px;
        border-radius: 16px;
    }
    .slider-btn { display: none; } /* Touch devices use swipe */
    .cat-details h4 { font-size: 15px; }
    .cat-discount-badge { font-size: 9px; padding: 3px 10px; }
}


/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 640px) {

    .arg-category-section {
        margin: 6px;
        border-radius: 14px;
    }

    .arg-category-grid {
        gap: 10px;
        padding: 10px 12px;
    }

    .arg-cat-item {
        flex: 0 0 calc(100% / 3 - 8px);
        padding: 10px;
        border-radius: 14px;
    }

    .arg-cat-item .img-box {
        height: 90px;
    }

    /* arrows smaller on mobile */
    .arg-nav button {
        width: 40px;
        height: 55px;
        font-size: 20px;
        display: none !important;
    }

    .arg-prev { left: 2px; }
    .arg-next { right: 2px; }
}
 /* ==========This is the our best selling product section ============ */
/* ===============================
   2026 PROFESSIONAL ECOM UI (STABLE GRID)
   =============================== */


.ecommerce-products .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 items */
    gap: 12px;
    padding: 10px;
}

@media(min-width: 992px) {
    .ecommerce-products .product-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 items */
        gap: 20px;
    }
}

/* CARD MAIN STRUCTURE */
.ecommerce-products .ecom-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    height: 100%; /* Important for equal height */
    transition: all 0.3s ease;
}

.ecommerce-products .ecom-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* IMAGE BOX - FIXING THE HEIGHT ISSUE */
.ecommerce-products .ecom-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square Aspect Ratio (1:1) */
    background: #f8fafc;
    overflow: hidden;
}

.ecommerce-products .ecom-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.ecommerce-products .ecom-img-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* CONTENT BODY */
.ecommerce-products .ecom-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Push price to bottom */
}

/* TITLE - FIXED 2 LINES ONLY */
.ecommerce-products .ecom-title {
    font-size: 14px;
    font-weight: 700;
    /* font-weight: 600; */
    color: #008a7b;
    margin-bottom: 4px;
    line-height: 1.4;
    height: 20px; /* Force height so all cards align */
    /* height: 40px; Force height so all cards align */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* VARIANT */
/* .ecommerce-products .ecom-variant {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */

/* RATING - COMPACT */
.ecommerce-products .ecom-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fdf2f2; /* Light Star background */
    color: #f59e0b; /* Golden Yellow */
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0; /
}
/* Variant/Weight Style */
.ecommerce-products .ecom-variant {
    font-size: 12px;
    color: #161818; /* Professional grey */
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1px;
    text-overflow: ellipsis;
    max-width: 60%; /* Taki rating ke liye jagah rahe */
}
.ecom-meta-row {
    display: flex;
    justify-content: space-between; /* Variant left, Rating right */
    align-items: center;
    margin: 8px 0;
    gap: 10px;
}
.ecommerce-products .ecom-rating i {
    /* color: #fbbf24; */
    font-size: 10px;
}
.ecommerce-products .ecom-rating span {
    color: #94a3b8; /* Count ka color halka */
    font-weight: 400;
    font-size: 10px;
}
/* PRICE AREA - CLEAN & PROFESSIONAL */
.ecommerce-products .ecom-price {
    margin-top: auto; /* Always sticks to bottom */
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    border-top: 1px dashed #eee;
}

.ecommerce-products .ecom-new {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.ecommerce-products .ecom-old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* DISCOUNT BADGE (Optional but cool) */
.discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}


/* why choose argye seciton css start */ 
/* ===== WHY CHOOSE US (MODERN) ===== */
/* Section Base Styling */
/* --- Root Variables for easy changes --- */
.why-modern-compact {
    /* padding: 60px 0; */
    background: linear-gradient(135deg, #0e4c3d 0%, #1f6b55 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0px 12px 0px 12px;
  padding: 2px 1px 3px 0px;
  border-radius: 17px;

}

.why-container {
    max-width: 1400px;
    max-width: 1666px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-flex-layout {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* --- Premium Sticky Header --- */
.why-header-left {
    flex: 0 0 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.3);
}

.why-header-left .title-main {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 8px;
}

.why-header-left .title-main span {
    color: #008a7b;
    display: block;
}

.subtitle-small {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* --- Slider Core --- */
.why-slider-overflow {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.why-items-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.why-items-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Card Modern UI --- */
.compact-card {
    width: 280px;
    height: 160px;
    background: #ffffff;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.compact-card:hover, .compact-card:focus {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.icon-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: 0.3s;
}

.compact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* --- Popup Text (Touch & Hover) --- */
.card-description-popup {
    position: absolute;
    top: 100%;
    left: 139;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #008a7b 0%, #00695c 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.compact-card:hover .card-description-popup,
.compact-card:focus .card-description-popup,
.compact-card:active .card-description-popup {
    top: 0;
}

.card-description-popup p {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* ==========================================
   PERFECT MOBILE VIEW (RESPONSIVE)
   ========================================== */
/* ================= WHY SECTION MOBILE FIX ================= */

@media (max-width:768px){

.why-modern-compact{
    margin:10px;
    padding:15px 10px;
    border-radius:16px;
}

/* Layout Column */
.why-flex-layout{
    flex-direction:column;
    align-items:stretch;
}

/* Header */
.why-header-left{
    width:100%;
    padding:18px 15px;
    border-radius:16px;
    text-align:center;
    margin-bottom:15px;
}

.why-header-left .title-main{
    font-size:20px;
    font-weight:700;
}

/* Slider Wrapper */
.why-slider-overflow{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

/* Cards Row */
.why-items-marquee{
    animation:none;
    display:flex;
    gap:12px;
    padding-bottom:10px;
}

/* Card */
.compact-card{
    min-width:160px;
    width:160px;
    height:120px;
    border-radius:16px;
    flex-shrink:0;
}

/* Icon */
.icon-box img{
    width:32px;
    height:32px;
    margin-bottom:6px;
}

/* Title */
.compact-card h4{
    font-size:13px;
    font-weight:600;
}

/* Popup FIX */
.card-description-popup{
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    padding:10px;
}

.compact-card:active .card-description-popup{
    opacity:1;
    visibility:visible;
}

.card-description-popup p{
    font-size:11px;
}

}

/* why choose argye seciton css end  */ 

/* ==========- start testimonilas -============== */
/* ==============================
   MODERN TESTIMONIAL SECTION
============================== */

/* --- Optimized Section Base --- */
.testimonial-modern-wrap {
    /* background-color: #fdfdfd; Clean white-grey tint */
    background-color: #e6ebeb; /* Clean white-grey tint */
    padding: 50px 0; /* Height kam karne ke liye padding ghatayi */
    font-family: 'Inter', sans-serif;
}

/* --- Compact Header --- */
.testimonial-header {
    text-align: center;
    margin-bottom: 30px; /* Space kam kiya */
}

.testimonial-header h3 {
    font-size: 1.8rem; /* Excessive size kam kiya */
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.header-line {
    display: block;
    width: 40px; /* Small line for premium look */
    height: 3px;
    background: #008a7b; /* Aapki brand theme color */
    margin: 0 auto;
    border-radius: 10px;
}

/* --- Compact Card Design --- */
.testimonial-card {
    background: #ffffff;
    border-radius: 15px; /* Thoda kam round */
    padding: 20px; /* Inner padding compact ki */
    margin: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Subtle shadow like Flipkart */
    display: flex;
    flex-direction: column;
    height: 220px; /* Fixed height taaki sab barabar dikhein */
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #008a7b30;
}

/* --- Small Image Styling --- */
.testimonial-top {
    margin-bottom: 12px;
}

.testimonial-top img {
    width: 45px !important; /* Compact size */
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0f2f1;
}

/* --- Compact Body Text --- */
.testimonial-text {
    font-size: 0.9rem; /* Smaller readable text */
    line-height: 1.5;
    color: #444;
    font-style: normal; /* E-commerce sites usually use normal style */
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Max 3 lines text dikhega height control ke liye */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Minimal Footer --- */
.testimonial-footer {
    border-top: 1px solid #f8f8f8;
    padding-top: 10px;
    margin-top: auto; /* Footer hamesha card ke bottom me rahega */
}

.testimonial-company {
    font-weight: 700;
    color: #008a7b; /* Brand color text */
    text-transform: none; /* Professional look */
    font-size: 0.8rem;
    display: block;
}

/* --- Minimal Dots --- */
.testimonial-slider .owl-dots {
    margin-top: 20px !important;
}

.testimonial-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #e0e0e0 !important;
}

.testimonial-slider .owl-dot.active span {
    background: #008a7b !important;
    width: 20px !important;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .testimonial-modern-wrap { padding: 30px 0; }
    .testimonial-card { height: 200px; padding: 15px; }
    .testimonial-header h3 { font-size: 1.5rem; }
}

/* index page css start for main div End  */





  