* {
  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;
    }
    
    /* ===== CONTACT PAGE CONTAINER ===== */
    .contact-page {
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 20px 80px;
    }
    
    /* Subtle fade-in animation */
    .contact-page {
      animation: fadeIn 0.8s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* ===== 2-COLUMN LAYOUT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }
    
    /* ===== LEFT SIDE - FORM ===== */
    .form-container {
      background: white;
      border-radius: 16px;
      padding: 45px 40px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
      border: 1px solid #f0f0f0;
    }
    
    .form-header {
      margin-bottom: 35px;
    }
    
    .form-small-heading {
      display: inline-block;
      color: #dd2326;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    
    .form-main-heading {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111;
      position: relative;
      padding-bottom: 15px;
    }
    
    .form-main-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: #dd2326;
    }
    
    /* Form Groups */
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-input,
    .form-textarea {
      width: 100%;
      padding: 16px 18px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    
    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #dd2326;
      background: white;
      box-shadow: 0 0 0 4px rgba(221, 35, 38, 0.05);
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #aaa;
      font-weight: 400;
    }
    
    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    /* Character counter */
    .char-counter {
      text-align: right;
      font-size: 0.8rem;
      color: #888;
      margin-top: 8px;
    }
    
    .char-counter span {
      color: #dd2326;
      font-weight: 600;
    }
    
    /* Submit Button */
    .submit-btn {
      background: #dd2326;
      color: white;
      border: none;
      padding: 16px 35px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      margin-top: 10px;
      width: 100%;
    }
    
    .submit-btn:hover {
      background: #000;
      transform: translateY(-2px);
    }
    
    /* ===== RIGHT SIDE - CONTACT DETAILS ===== */
    .contact-details-container {
      padding: 45px 0;
    }
    
    .contact-heading {
      margin-bottom: 40px;
    }
    
    .contact-heading h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 5px;
    }
    
    .contact-heading p {
      color: #666;
      font-size: 1rem;
    }
    
    .contact-heading h2::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background: #dd2326;
      margin-top: 12px;
    }
    
    /* Contact Cards */
    .contact-card {
      background: white;
      border-radius: 14px;
      padding: 30px;
      margin-bottom: 25px;
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }
    
    .contact-card:last-child {
      margin-bottom: 0;
    }
    
    .contact-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
      border-color: #e0e0e0;
    }
    
    .card-icon {
      width: 48px;
      height: 48px;
      background: rgba(221, 35, 38, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: #dd2326;
      font-size: 1.3rem;
      transition: all 0.3s ease;
    }
    
    .contact-card:hover .card-icon {
      background: #dd2326;
      color: white;
    }
    
    .card-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #111;
      margin-bottom: 12px;
    }
    
    .card-content {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.7;
    }
    
    .card-content p {
      margin-bottom: 5px;
    }
    
    .card-content a {
      color: #555;
      text-decoration: none;
      transition: color 0.3s ease;
      display: block;
    }
    
    .card-content a:hover {
      color: #dd2326;
    }
    
    /* Email specific */
    .email-label {
      color: #888;
      font-size: 0.85rem;
      font-weight: 500;
    }
    
    /* ===== STICKY FLOATING WHATSAPP BUTTON ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
      transition: all 0.3s ease;
      z-index: 100;
      text-decoration: none;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      background: #128C7E;
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    }
    
    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 991px) {
      .contact-grid {
        gap: 40px;
      }
      
      .form-main-heading {
        font-size: 2.2rem;
      }
      
      .contact-heading h2 {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .contact-page {
        padding: 40px 20px 60px;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .form-container {
        padding: 35px 30px;
      }
      
      .contact-details-container {
        padding: 0;
      }
      
      .form-main-heading {
        font-size: 2rem;
      }
      
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .contact-page {
        padding: 30px 15px 50px;
      }
      
      .form-container {
        padding: 25px 20px;
      }
      
      .form-main-heading {
        font-size: 1.8rem;
      }
      
      .contact-card {
        padding: 25px 20px;
      }
      
      .card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
      }
      
      .submit-btn {
        padding: 14px 30px;
      }
    }