
    * {
  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;
  }
}
/* PRODUCT CARDS */

.product-card {
  background: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  height: 100%; border: 1px solid rgba(0,0,0,0.02);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.product-card img { width: 100%; height: 230px; object-fit: cover; }
.product-info { padding: 1.5rem; }
.product-info h4 { font-weight: 600; margin-bottom: 6px; }
.small-icon { color: #666; margin-bottom: 14px; font-size: 0.9rem; }
.small-icon i { color: var(--primary); margin-right: 6px; }
.view-more { color: var(--primary); font-weight: 500; text-decoration: none; border-bottom: 2px solid transparent; transition: var(--transition); }
.view-more:hover { border-bottom-color: var(--primary); }
.btn-outline-primary-custom { border: 2px solid var(--primary); color: var(--primary); padding: 12px 38px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.btn-outline-primary-custom:hover { background: var(--primary); color: white; }


/* 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; }
}