/* ----- Hero Section ----- */
    * {
  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; }

    #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;
  }
}
    .jai-about-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .jai-about-hero-content h1 {
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.1;
      margin-bottom: 20px;
      color: white;
      text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .jai-about-hero-content h1 span {
      color: #dd2326;
      display: inline-block;
      position: relative;
    }
    
    .jai-about-hero-content h1 span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(221,35,38,0.3);
      z-index: -1;
    }
    
    .jai-about-hero-subtitle {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      color: rgba(255,255,255,0.9);
      margin-bottom: 40px;
      font-weight: 400;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .jai-about-hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #dd2326;
      color: white;
      text-decoration: none;
      padding: 18px 48px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 20px 30px rgba(221,35,38,0.3);
    }
    
    .jai-about-hero-btn:hover {
      background: #000;
      color: white;
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 30px 40px rgba(0,0,0,0.4);
      border-color: rgba(255,255,255,0.1);
    }
    
    .jai-about-hero-btn i {
      transition: transform 0.3s ease;
    }
    
    .jai-about-hero-btn:hover i {
      transform: translateX(8px);
    }
     .blog-section {
      max-width: 1300px;
      margin: 0 auto;
      padding: 80px 20px;
    }
    
    .blog-header {
      margin-bottom: 50px;
    }
    
    .blog-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
    }
    
    .blog-header h2 span {
      color: #dd2326;
    }
    
    .blog-header p {
      color: #666;
      font-size: 1.1rem;
    }
    
    /* ===== 2-COLUMN LAYOUT ===== */
    .blog-container {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: start;
    }
    
    /* ===== LEFT SIDE - FEATURED POST ===== */
    .featured-post {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }
    
    .featured-post:hover {
      box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    }
    
    .featured-image {
      height: 280px;
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
      position: relative;
      overflow: hidden;
    }
    
    .featured-image::before {
      content: '📰';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      opacity: 0.5;
    }
    
    .featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
    }
    
    .featured-content {
      padding: 35px 30px;
    }
    
    .featured-title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 15px;
      color: #111;
    }
    
    .featured-meta {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .featured-meta span {
      color: #dd2326;
      font-weight: 500;
    }
    
    .featured-description {
      color: #555;
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #dd2326;
      color: white;
      text-decoration: none;
      padding: 14px 35px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .read-more-btn:hover {
      background: #000;
      transform: translateY(-2px);
    }
    
    .read-more-btn span {
      transition: transform 0.3s ease;
    }
    
    .read-more-btn:hover span {
      transform: translateX(5px);
    }
    
    /* ===== RIGHT SIDE - SIDEBAR ===== */
    .blog-sidebar {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    
    /* Recent News Section */
    .recent-news {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border: 1px solid #f0f0f0;
    }
    
    .sidebar-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 12px;
    }
    
    .sidebar-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: #dd2326;
    }
    
    .news-list {
      list-style: none;
    }
    
    .news-item {
      padding: 20px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .news-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .news-item:first-child {
      padding-top: 0;
    }
    
    .news-title {
      font-weight: 600;
      color: #111;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    
    .news-title a {
      text-decoration: none;
      color: #111;
      transition: color 0.3s ease;
    }
    
    .news-title a:hover {
      color: #dd2326;
    }
    
    .news-desc {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 8px;
      line-height: 1.5;
    }
    
    .news-date {
      color: #999;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .news-date::before {
      content: '📅';
      font-size: 0.8rem;
    }
    
    /* Contact Info Card */
    .contact-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border-left: 4px solid #dd2326;
      border-top: 1px solid #f0f0f0;
      border-right: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .contact-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 25px;
    }
    
    .contact-detail {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }
    
    .contact-detail:last-child {
      margin-bottom: 0;
    }
    
    .contact-label {
      color: #dd2326;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin-bottom: 5px;
    }
    
    .contact-value {
      color: #333;
      font-weight: 500;
      font-size: 1.1rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .contact-value:hover {
      color: #dd2326;
    }
    
    .contact-divider {
      height: 1px;
      background: #f0f0f0;
      margin: 15px 0;
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .blog-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .featured-title {
        font-size: 1.8rem;
      }
      
      .blog-header h2 {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 768px) {
      .blog-section {
        padding: 60px 20px;
      }
      
      .featured-image {
        height: 220px;
      }
      
      .featured-content {
        padding: 25px 20px;
      }
      
      .featured-title {
        font-size: 1.6rem;
      }
      
      .featured-description {
        font-size: 1rem;
      }
      
      .read-more-btn {
        padding: 12px 30px;
      }
      
      .recent-news,
      .contact-card {
        padding: 25px 20px;
      }
    }
    
    @media (max-width: 480px) {
      .blog-section {
        padding: 40px 15px;
      }
      
      .featured-title {
        font-size: 1.4rem;
      }
      
      .blog-header h2 {
        font-size: 1.8rem;
      }
      
      .contact-value {
        font-size: 1rem;
      }
    }
    /* 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; }
