
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
:root {
  --primary: #dd2326;
  --black: #000000;
  --white: #ffffff;
  --soft-gray: #f8f9fa;
  --light-gray: #e9ecef;
  --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 30px -10px rgba(0,0,0,0.15);
  --transition: all 0.25s ease-in-out;
}

body { background-color: var(--white); color: #222; line-height: 1.6; }
/* TOP BAR */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}
.top-bar a { color: var(--white); text-decoration: none; transition: var(--transition); }
.top-bar a:hover { color: var(--primary); }
.top-left a i, .top-right a i { margin-right: 6px; }

/* STICKY HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  z-index: 1020;
  padding: 12px 0;
}
.logo a { font-weight: 700; font-size: 1.8rem; letter-spacing: -0.5px; color: var(--black); text-decoration: none; }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.8rem; align-items: center; }
.nav-menu a { text-decoration: none; color: #222; font-weight: 500; transition: var(--transition); font-size: 1rem; }
.nav-menu a:hover { color: var(--primary); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 10px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  list-style: none;
  z-index: 100;
}
.dropdown:hover .dropdown-menu-custom { opacity: 1; visibility: visible; top: 30px; }
.dropdown-menu-custom li a { display: block; padding: 8px 20px; font-weight: 400; }
.dropdown-menu-custom li a:hover { background: #f8f8f8; color: var(--primary); }

/* QUOTE BUTTON */
.btn-quote {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}
.btn-quote:hover { background: #b51b1e; transform: scale(1.02); box-shadow: 0 8px 16px rgba(221,35,38,0.25); color: white; }

/* MOBILE */
.mobile-toggle { font-size: 1.8rem; cursor: pointer; color: #333; }
.mobile-menu {
  background: white;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.05);
}
.mobile-menu.show { max-height: 600px; padding: 20px 25px; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin: 15px 0; }
.mobile-menu a { color: #333; text-decoration: none; font-weight: 500; }
.mobile-sub { padding-left: 20px; margin-top: 8px; display: none; }
.show-mobile-sub { display: block; }
.btn-quote-mobile { background: var(--primary); color: white; padding: 10px 20px; border-radius: 40px; display: inline-block; }
/* products  */
/* ===== JAI NETS - MINIMAL & PROFESSIONAL STYLES ===== */
/* Font: Poppins | Primary: #dd2326 | Black/White */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #ffffff;
}

/* ===== HEADER STYLES (Shared) ===== */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.02);
  z-index: 100;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #dd2326;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Simple underline hover effect */
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #dd2326;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #dd2326;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
  padding: 0 20px;
}

.mobile-nav.active {
  max-height: 200px;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin: 15px 0;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: #dd2326;
}

/* ===== BANNER SECTION (Home Page) ===== */
.banner {
  position: relative;
  min-height: 600px;
  background: url('https://images.pexels.com/photos/280221/pexels-photo-280221.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Solid black overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.banner-title {
  color: white;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

.banner-btn {
  display: inline-block;
  background: #dd2326;
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ===== PRODUCTS SECTION (Products Page) ===== */
 #jai-about-hero {
      position: relative;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.103) 0%, rgba(0, 0, 0, 0.014) 100%), 
                  url('images/mosquito\ net\ banner1.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 100px 20px;
      isolation: isolate;
    }
    
    #jai-about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(19, 18, 18, 0.15), transparent 60%);
      z-index: 1;
    }
    /* Solid black overlay - minimal and clean */
.jai-about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Clean black overlay */
  z-index: 1;
}

.jai-about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  color: white;
}

/* Breadcrumb navigation - connects home to about */
.jai-about-breadcrumb {
  margin-bottom: 15px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  opacity: 0.9;
}

.jai-about-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jai-about-breadcrumb a:hover {
  color: #dd2326;
}

.jai-about-separator {
  margin: 0 8px;
  color: rgba(255,255,255,0.5);
}

.jai-about-current {
  color: #dd2326;
  font-weight: 500;
}

/* Simple title */
.jai-about-title {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.jai-about-highlight {
  color: #dd2326;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Simple underline effect */
.jai-about-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #18010180;
  opacity: 0.4;
}

/* Clean subtitle - one attractive line */
.jai-about-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  #jai-about-hero {
    min-height: 280px;
  }
  
  .jai-about-title {
    font-size: 2.4rem;
  }
  
  .jai-about-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  #jai-about-hero {
    min-height: 240px;
  }
  
  .jai-about-title {
    font-size: 2rem;
  }
  
  .jai-about-breadcrumb {
    font-size: 0.85rem;
  }
}
 /* ===== RESET & BASE STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #222;
      line-height: 1.6;
      background: #ffffff;
    }
    
    /* ===== REVIEWS PAGE STYLES ===== */
    .reviews-page {
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 20px 100px;
    }
    
    /* Header Section */
    .reviews-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .reviews-header h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }
    
    .reviews-header h1 span {
      color: #dd2326;
      position: relative;
      display: inline-block;
    }
    
    .reviews-header h1 span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(221,35,38,0.1);
      z-index: -1;
    }
    
    .reviews-header p {
      color: #666;
      font-size: 1.2rem;
      max-width: 500px;
      margin: 0 auto;
    }
    
    /* ===== SLIDER CONTAINER ===== */
    .review-slider-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      padding: 10px 0 50px;
    }
    
    .review-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 30px;
    }
    
    /* Review Card */
    .review-card {
      flex: 0 0 calc(33.333% - 20px); /* Show 3 cards on desktop */
      background: white;
      border-radius: 20px;
      padding: 35px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid #f0f0f0;
      border-top: 4px solid #dd2326;
      transition: all 0.3s ease;
    }
    
    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      border-color: #e0e0e0;
    }
    
    /* Stars */
    .review-stars {
      color: #dd2326;
      font-size: 1.2rem;
      letter-spacing: 3px;
      margin-bottom: 20px;
    }
    
    .star {
      display: inline-block;
    }
    
    /* Review Text */
    .review-text {
      color: #444;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 25px;
      font-style: italic;
    }
    
    /* Customer Name */
    .customer-name {
      font-weight: 600;
      color: #111;
      font-size: 1.1rem;
      position: relative;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }
    
    .customer-name::before {
      content: '—';
      color: #dd2326;
      margin-right: 8px;
    }
    
    /* ===== SLIDER CONTROLS ===== */
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }
    
    .slider-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: white;
      border: 1px solid #f0f0f0;
      color: #333;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .slider-arrow:hover {
      background: #dd2326;
      color: white;
      border-color: #dd2326;
      transform: scale(1.05);
    }
    
    .slider-dots {
      display: flex;
      gap: 12px;
    }
    
    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background: #dd2326;
      transform: scale(1.2);
    }
    
    /* ===== RESPONSIVE BREAKPOINTS ===== */
    @media (max-width: 991px) {
      .review-card {
        flex: 0 0 calc(50% - 15px); /* Show 2 cards on tablet */
      }
      
      .reviews-header h1 {
        font-size: 2.4rem;
      }
    }
    
    @media (max-width: 768px) {
      .reviews-page {
        padding: 40px 20px 80px;
      }
      
      .review-card {
        flex: 0 0 100%; /* Show 1 card on mobile */
      }
      
      .review-slider {
        gap: 20px;
      }
      
      .reviews-header h1 {
        font-size: 2rem;
      }
      
      .reviews-header p {
        font-size: 1rem;
      }
      
      .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .reviews-header h1 {
        font-size: 1.8rem;
      }
      
      .review-card {
        padding: 25px 20px;
      }
      
      .slider-controls {
        gap: 20px;
      }
    }
    /* ===== PREMIUM TESTIMONIAL CAROUSEL ===== */
.about-section {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .section-header {
    margin-bottom: 50px;
  }
}

.section-subtitle {
  color: #9c2d2a !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .section-subtitle {
    font-size: 16px;
  }
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #9c2d2a;
  opacity: 0.3;
  display: none;
}

@media (min-width: 768px) {
  .section-subtitle::before,
  .section-subtitle::after {
    display: block;
  }
  
  .section-subtitle::before {
    left: -30px;
  }
  
  .section-subtitle::after {
    right: -30px;
  }
}

@media (min-width: 992px) {
  .section-subtitle::before,
  .section-subtitle::after {
    width: 40px;
  }
  
  .section-subtitle::before {
    left: -40px;
  }
  
  .section-subtitle::after {
    right: -40px;
  }
}

.section-title {
  font-size: 24px !important;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.3;
  padding: 0;
}

@media (min-width: 375px) {
  .section-title {
    font-size: 26px !important;
  }
}

@media (min-width: 425px) {
  .section-title {
    font-size: 28px !important;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 30px !important;
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 32px !important;
    margin-bottom: 12px;
  }
}

.section-desc {
  font-size: 14px !important;
  color: #666;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  line-height: 1.5;
}

@media (min-width: 375px) {
  .section-desc {
    font-size: 14px !important;
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 15px !important;
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .section-desc {
    max-width: 700px;
  }
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  padding: 20px 0;
  width: 100%;
  overflow: visible;
}

/* Carousel Container */
.carousel-container {
  overflow: hidden;
  padding: 10px 0;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 15px;
}

@media (min-width: 576px) {
  .carousel-track {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .carousel-track {
    gap: 30px;
  }
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 calc(100% - 30px);
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  margin: 5px 15px;
  min-width: 260px;
}

@media (min-width: 375px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 30px);
    padding: 22px;
    border-radius: 22px;
  }
}

@media (min-width: 425px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 30px);
    padding: 25px;
  }
}

/* Tablet View - 2 Cards */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 30px);
    margin: 5px 15px;
    padding: 22px;
  }
}

/* Desktop View - 3 Cards */
@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 5px 15px;
    padding: 25px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    padding: 30px;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(156, 45, 42, 0.1);
  border-color: rgba(156, 45, 42, 0.1);
}

.quote-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  color: rgba(156, 45, 42, 0.1);
  z-index: 1;
}

@media (min-width: 768px) {
  .quote-icon {
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
  }
}

@media (min-width: 992px) {
  .quote-icon {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
  }
}

.rating {
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .rating {
    margin-bottom: 15px;
    gap: 4px;
  }
}

.rating i {
  color: #ffc107;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(255,193,7,0.1);
}

@media (min-width: 768px) {
  .rating i {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .rating i {
    font-size: 16px;
  }
}

.review-text {
  font-size: 14px !important;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
  position: relative;
  z-index: 2;
  padding-right: 15px;
}

@media (min-width: 375px) {
  .review-text {
    font-size: 14px !important;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .review-text {
    font-size: 14.5px !important;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}

@media (min-width: 992px) {
  .review-text {
    font-size: 15px !important;
    margin-bottom: 20px;
  }
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

@media (min-width: 375px) {
  .customer-info {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .customer-info {
    gap: 14px;
    margin-bottom: 12px;
  }
}

@media (min-width: 992px) {
  .customer-info {
    gap: 15px;
    margin-bottom: 12px;
  }
}

.customer-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 3px 10px rgba(156, 45, 42, 0.15);
}

@media (min-width: 375px) {
  .customer-img {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 768px) {
  .customer-img {
    width: 55px;
    height: 55px;
    border-width: 3px;
  }
}

@media (min-width: 992px) {
  .customer-img {
    width: 60px;
    height: 60px;
  }
}

.customer-details h5 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}

@media (min-width: 375px) {
  .customer-details h5 {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .customer-details h5 {
    font-size: 17px;
    margin-bottom: 4px;
  }
}

@media (min-width: 992px) {
  .customer-details h5 {
    font-size: 18px;
  }
}

.customer-location {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 375px) {
  .customer-location {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .customer-location {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .customer-location {
    font-size: 14px;
  }
}

.customer-location i {
  color: #9c2d2a;
  font-size: 10px;
}

@media (min-width: 768px) {
  .customer-location i {
    font-size: 11px;
  }
}

@media (min-width: 992px) {
  .customer-location i {
    font-size: 12px;
  }
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(40, 167, 69, 0.08);
  color: #28a745;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.15);
}

@media (min-width: 375px) {
  .verified-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (min-width: 768px) {
  .verified-badge {
    font-size: 12px;
    padding: 5px 12px;
    gap: 6px;
  }
}

@media (min-width: 992px) {
  .verified-badge {
    font-size: 13px;
    padding: 6px 14px;
  }
}

.verified-badge i {
  font-size: 12px;
}

@media (min-width: 768px) {
  .verified-badge i {
    font-size: 13px;
  }
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  color: #9c2d2a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

@media (min-width: 375px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (min-width: 425px) {
  .carousel-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

.carousel-arrow:hover {
  background: #9c2d2a;
  color: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(156, 45, 42, 0.25);
}

.prev-arrow {
  left: 5px;
}

@media (min-width: 375px) {
  .prev-arrow {
    left: 8px;
  }
}

@media (min-width: 425px) {
  .prev-arrow {
    left: 10px;
  }
}

@media (min-width: 768px) {
  .prev-arrow {
    left: -15px;
  }
}

@media (min-width: 992px) {
  .prev-arrow {
    left: -20px;
  }
}

.next-arrow {
  right: 5px;
}

@media (min-width: 375px) {
  .next-arrow {
    right: 8px;
  }
}

@media (min-width: 425px) {
  .next-arrow {
    right: 10px;
  }
}

@media (min-width: 768px) {
  .next-arrow {
    right: -15px;
  }
}

@media (min-width: 992px) {
  .next-arrow {
    right: -20px;
  }
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  padding: 0 10px;
}

@media (min-width: 375px) {
  .carousel-dots {
    gap: 8px;
    margin-top: 22px;
  }
}

@media (min-width: 425px) {
  .carousel-dots {
    gap: 10px;
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .carousel-dots {
    gap: 12px;
    margin-top: 30px;
  }
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(156, 45, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 375px) {
  .carousel-dots .dot {
    width: 9px;
    height: 9px;
  }
}

@media (min-width: 768px) {
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 992px) {
  .carousel-dots .dot {
    width: 12px;
    height: 12px;
  }
}

.carousel-dots .dot.active {
  width: 24px;
  background: #9c2d2a;
  border-radius: 20px;
}

@media (min-width: 375px) {
  .carousel-dots .dot.active {
    width: 26px;
  }
}

@media (min-width: 768px) {
  .carousel-dots .dot.active {
    width: 28px;
  }
}

@media (min-width: 992px) {
  .carousel-dots .dot.active {
    width: 30px;
  }
}

.carousel-dots .dot:hover {
  background: #9c2d2a;
  transform: scale(1.1);
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .testimonial-card {
    cursor: grab;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  .testimonial-card:active {
    cursor: grabbing;
  }
  
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .carousel-dots .dot.active {
    width: 28px;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .about-section {
    padding: 20px 0;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .testimonial-card {
    padding: 15px;
  }
  
  .customer-img {
    width: 40px;
    height: 40px;
  }
  
  .carousel-dots {
    margin-top: 15px;
  }
}

/* Print Styles */
@media print {
  .testimonial-carousel {
    page-break-inside: avoid;
  }
  
  .carousel-arrow,
  .carousel-dots {
    display: none;
  }
}