 * {
  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: hsl(0, 0%, 100%);
  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;
  }
}
    /* ----- Company Introduction Section ----- */
    #jai-about-intro {
      padding: 100px 20px;
      background: #ffffff;
      position: relative;
    }
    
    #jai-about-intro::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(221,35,38,0.3), transparent);
    }
    
    .jai-about-intro-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }
    
    .jai-about-intro-content h2 {
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 30px;
      color: #111;
      position: relative;
      padding-bottom: 20px;
    }
    
    .jai-about-intro-content h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: #dd2326;
      border-radius: 4px;
    }
    
    .jai-about-intro-content p {
      margin-bottom: 25px;
      color: #444;
      font-size: 1.05rem;
      line-height: 1.8;
    }
    
    .jai-about-intro-highlight {
      color: #dd2326;
      font-weight: 600;
    }
    
    .jai-about-intro-list {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .jai-about-intro-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
    }
    
    .jai-about-intro-list-item::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: rgba(221,35,38,0.1);
      color: #dd2326;
      border-radius: 50%;
      font-weight: 700;
      font-size: 0.9rem;
    }
    
    .jai-about-intro-image {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 40px 60px -20px rgba(0,0,0,0.3);
      height: 500px;
      background: linear-gradient(135deg, #f5f5f500, #e0e0e0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
    }
    .jai-about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
    .jai-about-intro-image:hover {
      transform: scale(1.02);
    }
    
    .jai-about-intro-image::before {
      content: 'JAI NETS';
      position: absolute;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(0,0,0,0.03);
      letter-spacing: 10px;
      transform: rotate(-15deg);
      white-space: nowrap;
    }
    
    .jai-about-intro-image-placeholder {
      text-align: center;
      color: #999;
      font-weight: 500;
      background: rgba(221,35,38,0.05);
      padding: 15px 30px;
      border-radius: 50px;
      border: 1px dashed #dd2326;
      position: relative;
      z-index: 2;
    }
    
    /* ----- Vision Mission Section ----- */
    #jai-about-vision {
      padding: 100px 20px;
      background: #f9f9f9;
    }
    
    .jai-about-vision-container {
      max-width: 1300px;
      margin: 0 auto;
    }
    
    .jai-about-vision-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .jai-about-vision-header h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
    }
    
    .jai-about-vision-header h2 span {
      color: #dd2326;
    }
    
    .jai-about-vision-header p {
      color: #666;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .jai-about-vision-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .jai-about-card {
      background: white;
      padding: 50px 35px;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border-top: 4px solid #dd2326;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .jai-about-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 30px 50px rgba(221,35,38,0.15);
    }
    
    .jai-about-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(221,35,38,0.05) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .jai-about-card:hover::after {
      opacity: 1;
    }
    
    .jai-about-card-icon {
      width: 90px;
      height: 90px;
      background: rgba(221,35,38,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      font-size: 2.5rem;
      color: #dd2326;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }
    
    .jai-about-card:hover .jai-about-card-icon {
      background: #dd2326;
      color: white;
      transform: rotate(360deg) scale(1.1);
    }
    
    .jai-about-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
      position: relative;
      z-index: 2;
    }
    
    .jai-about-card p {
      color: #555;
      line-height: 1.8;
      position: relative;
      z-index: 2;
    }
    
    /* ----- Why Choose Us Section ----- */
    /* ===== WHY CHOOSE US SECTION - NEW FORMAT ===== */
#jai-about-why {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.jai-about-why-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Content Styles */
.jai-about-why-left {
  padding-right: 30px;
}

.jai-about-why-tag {
  display: inline-block;
  color: #dd2326;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.jai-about-why-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}

.jai-about-why-title span {
  color: #dd2326;
  position: relative;
  display: inline-block;
}

.jai-about-why-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(221,35,38,0.1);
  z-index: -1;
}

.jai-about-why-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Product Image Placeholder */
.jai-about-why-product {
  margin-top: 30px;
}

.jai-about-product-img {
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.jai-about-product-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: rgba(221,35,38,0.2);
}

.jai-about-product-img::before {
  content: '🪟';
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 3rem;
  opacity: 0.1;
}

.jai-about-product-img span {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.jai-about-product-img small {
  color: #dd2326;
  font-size: 0.9rem;
}

/* Right Content - Features Grid */
.jai-about-features-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.jai-about-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 25px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.jai-about-feature-item:hover {
  border-color: rgba(221,35,38,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transform: translateX(5px);
}

.jai-about-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(221,35,38,0.1);
  color: #dd2326;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.jai-about-feature-item:hover .jai-about-feature-icon {
  background: #dd2326;
  color: white;
  transform: scale(1.1);
}

.jai-about-feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.jai-about-feature-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .jai-about-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .jai-about-why-left {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #jai-about-why {
    padding: 60px 20px;
  }
  
  .jai-about-why-title {
    font-size: 2rem;
  }
  
  .jai-about-feature-item {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .jai-about-feature-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .jai-about-why-title {
    font-size: 1.8rem;
  }
}
    #jai-about-why {
      padding: 100px 20px;
      background: white;
    }
    
    .jai-about-why-container {
      max-width: 1300px;
      margin: 0 auto;
    }
    
    .jai-about-why-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .jai-about-why-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
    }
    
    .jai-about-why-header h2 span {
      color: #dd2326;
    }
    
    .jai-about-why-header p {
      color: #666;
      font-size: 1.1rem;
    }
    
    .jai-about-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .jai-about-feature-box {
      background: white;
      padding: 45px 30px;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.02);
      position: relative;
      overflow: hidden;
    }
    
    .jai-about-feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: #dd2326;
      transition: height 0.3s ease;
    }
    
    .jai-about-feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px rgba(221,35,38,0.1);
      border-color: rgba(221,35,38,0.1);
    }
    
    .jai-about-feature-box:hover::before {
      height: 100%;
    }
    
    .jai-about-feature-circle {
      width: 70px;
      height: 70px;
      background: rgba(221,35,38,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 2rem;
      color: #dd2326;
      transition: all 0.4s ease;
    }
    
    .jai-about-feature-box:hover .jai-about-feature-circle {
      background: #dd2326;
      color: white;
      transform: rotateY(180deg);
    }
    
    .jai-about-feature-box h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #111;
    }
    
    .jai-about-feature-box p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    /* ===== WHY CHOOSE US SECTION - UPDATED ===== */
#jai-about-why {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.jai-about-why-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Content Styles */
.jai-about-why-left {
  padding-right: 20px;
}

.jai-about-why-tag {
  display: inline-block;
  color: #dd2326;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.jai-about-why-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.jai-about-why-title span {
  color: #dd2326;
  position: relative;
  display: inline-block;
}

.jai-about-why-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(221,35,38,0.1);
  z-index: -1;
}

.jai-about-why-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.98rem;
}

/* Image Styles */
.jai-about-why-image {
  margin-bottom: 25px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.jai-about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.jai-about-why-image:hover .jai-about-image {
  transform: scale(1.03);
}

/* Button Styles */
.jai-about-why-button {
  margin-top: 10px;
}

.jai-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dd2326;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jai-about-btn:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.jai-about-btn-arrow {
  transition: transform 0.3s ease;
}

.jai-about-btn:hover .jai-about-btn-arrow {
  transform: translateX(5px);
}

/* Right Content - Features Grid (2 columns) */
.jai-about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.jai-about-feature-item {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.jai-about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(221,35,38,0.08);
  border-color: rgba(221,35,38,0.2);
  background: white;
}

.jai-about-feature-icon {
  margin-bottom: 15px;
}

.jai-about-icon {
  width: 40px;
  height: 40px;
  background: rgba(221,35,38,0.1);
  color: #dd2326;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.jai-about-feature-item:hover .jai-about-icon {
  background: #dd2326;
  color: white;
  transform: rotate(360deg);
}

.jai-about-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.jai-about-feature-text p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .jai-about-features-grid {
    gap: 15px;
  }
  
  .jai-about-feature-item {
    padding: 20px 15px;
  }
}

@media (max-width: 991px) {
  .jai-about-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .jai-about-why-left {
    padding-right: 0;
  }
  
  .jai-about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #jai-about-why {
    padding: 60px 20px;
  }
  
  .jai-about-why-title {
    font-size: 2rem;
  }
  
  .jai-about-features-grid {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .jai-about-why-title {
    font-size: 1.8rem;
  }
  
  .jai-about-features-grid {
    grid-template-columns: 1fr;
  }
  
  .jai-about-btn {
    width: 100%;
    justify-content: center;
  }
}
    
    /* ----- Statistics Section ----- */
    #jai-about-stats {
      background: #000;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }
    
    #jai-about-stats::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(221,35,38,0.1) 0%, transparent 70%);
      z-index: 1;
    }
    
    .jai-about-stats-container {
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    
    .jai-about-stat-item {
      text-align: center;
      padding: 40px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }
    
    .jai-about-stat-item:hover {
      background: rgba(221,35,38,0.1);
      border-color: rgba(221,35,38,0.3);
      transform: scale(1.05);
    }
    
    .jai-about-stat-number {
      font-size: 3.8rem;
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #fff, #ffb3b3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .jai-about-stat-label {
      color: rgba(255,255,255,0.8);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    
    .jai-about-stat-label span {
      color: #dd2326;
      font-weight: 700;
    }
    
    /* ----- Call To Action Section ----- */
    #jai-about-cta {
      background: #dd2326;
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    #jai-about-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: jaiAboutRotate 20s linear infinite;
    }
    
    @keyframes jaiAboutRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .jai-about-cta-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .jai-about-cta-container h2 {
      font-size: 3.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 30px;
      line-height: 1.2;
      text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .jai-about-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      background: white;
      color: #dd2326;
      text-decoration: none;
      padding: 18px 50px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 20px 30px rgba(0,0,0,0.2);
      border: 2px solid transparent;
    }
    
    .jai-about-cta-btn:hover {
      background: #000;
      color: white;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 30px 40px rgba(0,0,0,0.3);
    }
    
    .jai-about-cta-btn i {
      transition: transform 0.3s ease;
    }
    
    .jai-about-cta-btn:hover i {
      transform: translateX(8px);
    }
    
    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1200px) {
      .jai-about-intro-container {
        gap: 40px;
      }
      
      .jai-about-vision-grid,
      .jai-about-why-grid {
        gap: 20px;
      }
    }
    
    @media (max-width: 991px) {
      .jai-about-intro-container {
        grid-template-columns: 1fr;
      }
      
      .jai-about-intro-image {
        height: 400px;
        order: -1;
      }
      
      .jai-about-vision-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .jai-about-why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .jai-about-stats-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      #jai-about-hero {
        min-height: 500px;
      }
      
      .jai-about-intro-content h2 {
        font-size: 2.2rem;
      }
      
      .jai-about-vision-grid,
      .jai-about-why-grid {
        grid-template-columns: 1fr;
      }
      
      .jai-about-stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      
      .jai-about-stat-item {
        padding: 30px 20px;
      }
      
      .jai-about-cta-container h2 {
        font-size: 2.5rem;
      }
      
      .jai-about-intro-list {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .jai-about-hero-content h1 {
        font-size: 2.5rem;
      }
      
      .jai-about-hero-btn,
      .jai-about-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
      }
      
      .jai-about-intro-content h2 {
        font-size: 1.8rem;
      }
      
      .jai-about-intro-image {
        height: 300px;
      }
    }
    
    /* ===== UTILITY CLASSES (prefix with jau-) ===== */
    .jau-text-red {
      color: #dd2326;
    }
    
    .jau-bg-red {
      background: #dd2326;
    }
    
    /* Section Divider */
    .jau-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(221,35,38,0.2), transparent);
      margin: 0;
    }
    .jai-about-cta-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.jai-about-cta-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.3px;
}

.jai-about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #dd2326;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.jai-about-cta-btn:hover {
  background: #000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.jai-about-cta-arrow {
  transition: transform 0.3s ease;
}

.jai-about-cta-btn:hover .jai-about-cta-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  #jai-about-cta {
    padding: 35px 20px;
  }
  
  .jai-about-cta-container {
    gap: 20px;
  }
  
  .jai-about-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #jai-about-cta {
    padding: 30px 20px;
  }
  
  .jai-about-cta-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .jai-about-cta-title {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .jai-about-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* FOOTER */
.footer { background: var(--black); color: #ccc; }
.footer .logo-footer { font-weight: 700; font-size: 2rem; color: white; }
.footer h5 { color: white; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #ccc; text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--primary); padding-left: 5px; }
.contact-footer li i { width: 24px; color: var(--primary); }
.footer-bottom { border-top: 1px solid #222; color: #aaa; }

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .slide-content h1 { font-size: 2.8rem; }
  .quote-form-banner { border-radius: 30px; }
  .quick-quote { justify-content: center; }
}
@media (max-width: 768px) {
  .top-left, .top-right { justify-content: center; width: 100%; }
  .hero-slider { min-height: 600px; }
  .slide-content h1 { font-size: 2.2rem; }
  .quick-quote input, .quick-quote button { width: 100%; }
  .quote-form-banner { border-radius: 20px; padding: 18px; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 576px) {
  .slide-content h1 { font-size: 1.8rem; }
  .product-card img { height: 180px; }
}