
/* ═══════════════════════════════════════
       HEADER & NAV — Professional Business Navbar
    ═══════════════════════════════════════ */
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }
  
    /* Top Strip */
    .top-strip {
      background: #1d2856;
      color: #fff;
      padding: 8px 40px;
      display: flex;
      justify-content: flex-end;
      gap: 30px;
      font-size: 13px;
      flex-wrap: wrap;
    }
    
    .top-strip i {
      margin-right: 8px;
      color: #E76A35;
    }
  
    /* Header */
    .header {
      background: #fff;
      padding: 8px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 0px solid #eef2f9;
      position: sticky;
      top: 0;
      z-index: 1002;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    }
  
    /* Desktop Navigation */
    #navbar ul {
      display: flex;
      list-style: none;
      gap: 32px;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    
    #navbar a {
      text-decoration: none;
      color: #1d2856;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.25s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    
    #navbar a:hover { 
      color: #E76A35; 
    }
  
    /* Dropdown Container */
    .dropdown { 
      position: relative; 
    }
    
    .dropdown > a::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.7rem;
      margin-left: 6px;
      transition: transform 0.25s ease;
      display: inline-block;
    }
    
    .dropdown:hover > a::after { 
      transform: rotate(180deg); 
    }
  
    /* Desktop Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: calc(100%);
      left: 0;
      background: #fff;
      min-width: 240px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      border-radius: 12px;
      border: 1px solid #eef2f9;
      padding: 10px 0;
      padding-bottom: 10px;
      z-index: 1050;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      pointer-events: none;
    }
    
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    
    /* Two-column layout for products on desktop */
    @media (min-width: 993px) {
      .dropdown-menu {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 4px;
        width: 480px;
        padding: 12px;
      }
      
      .dropdown-menu a {
        padding: 10px 16px;
        color: #333;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s;
        white-space: nowrap;
      }
      
      .dropdown-menu a:hover {
        background: #fef5f0;
        color: #E76A35;
        transform: translateX(4px);
      }
    }
  
    /* Hamburger Button */
    .menu-toggle {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: #1d2856;
      background: none;
      border: none;
      padding: 8px;
      transition: color 0.2s;
      z-index: 1010;
    }
    
    .menu-toggle:hover { 
      color: #E76A35; 
    }
  
    /* Overlay */
    #overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(3px);
      z-index: 1003;
      display: none;
    }
    
    #overlay.active { 
      display: none; 
    }
  
    /* ═══════════════════════════════════════
       MOBILE NAVIGATION (≤ 992px)
       IMPORTANT: These rules override desktop styles
    ═══════════════════════════════════════ */
    @media (max-width: 992px) {
      .top-strip {
        justify-content: center;
        padding: 8px 16px;
        gap: 16px;
        font-size: 11px;
      }
  
      .menu-toggle { 
        display: block; 
      }
      
      .header { 
        padding: 8px 16px; 
      }
  
      /* Mobile Drawer */
      #navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 1005;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        display: block;
      }
      
      #navbar.active { 
        right: 0; 
      }
  
      /* Drawer Header */
      #navbar::before {
        content: 'Menu';
        display: block;
        padding: 18px 20px;
        font-weight: 700;
        font-size: 1.1rem;
        color: #fff;
        background: #1d2856;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
  
      /* Mobile Navigation List */
      #navbar ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
      }
      
      #navbar > ul > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
      }
      
      #navbar > ul > li > a {
        padding: 14px 20px;
        font-size: 0.95rem;
        color: #1d2856;
        justify-content: space-between;
      }
  
      /* CRITICAL FIX: Mobile Dropdown Styles */
      /* Reset all desktop positioning for mobile */
      .dropdown {
        position: static !important;
      }
      
      .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: #f8f9fc !important;
        padding: 0 !important;
        width: 100% !important;
        transform: none !important;
        transition: none !important;
        /* Hidden by default */
        display: none !important;
        border: none !important;
      }
      
      /* Show dropdown when parent li has 'open' class */
      .dropdown.open .dropdown-menu {
        display: block !important;
      }
      
      /* Rotate chevron when open */
      .dropdown.open > a::after {
        transform: rotate(180deg);
      }
      
      /* Mobile dropdown links */
      .dropdown-menu a {
        display: block !important;
        padding: 12px 20px 12px 35px !important;
        white-space: normal !important;
        border-radius: 0 !important;
        font-size: 0.85rem !important;
        color: #555 !important;
        background: #f8f9fc !important;
      }
      
      .dropdown-menu a:hover {
        background: #eef2ff !important;
        color: #E76A35 !important;
        transform: none !important;
      }
      
      /* Remove the grid layout on mobile */
      .dropdown-menu {
        grid-template-columns: 1fr !important;
        width: 100% !important;
      }
    }
  
    /* Extra Small Devices */
    @media (max-width: 480px) {
      .top-strip { 
        flex-direction: column; 
        text-align: center; 
        gap: 6px; 
      }
      .header { 
        padding: 8px 12px; 
      }
      .header img {
        height: 60px !important;
      }
    }

    /* Contact Hero Section */
    .contact-hero {
      background: #253f71;
      color: white;
      padding: 80px 5%;
      text-align: center;
    }

    .contact-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .contact-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Contact Sections */
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5%;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-bottom: 80px;
    }

    .contact-info {
      display: grid;
      gap: 30px;
    }

    .info-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .info-icon {
      width: 70px;
      height: 70px;
      background: #253f71;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 1.5rem;
    }

    .info-card h3 {
      margin-bottom: 15px;
      color: #253f71;
    }

    .info-card p {
      color: #253f71;
      margin-bottom: 10px;
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #253f71;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e8ecef;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #253f71;
      outline: none;
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: #253f71;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: #253f71;
    }

    /* Map Section */
    .map-section {
      margin-bottom: 80px;
    }

    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      height: 400px;
    }

    .map-placeholder {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    /* FAQ Section */
    .faq-section h2 {
      text-align: center;
      margin-bottom: 40px;
      color: #253f71;
      font-size: 2.5rem;
    }

    .faq-grid {
      display: grid;
      gap: 20px;
    }

    .faq-item {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      transform: translateY(-2px);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #2c3e50;
    }

    .faq-answer {
      margin-top: 15px;
      color: #7f8c8d;
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-toggle i {
      transform: rotate(180deg);
    }

    .faq-toggle {
      transition: transform 0.3s ease;
    }

    

    /* Animation Classes */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      color: #253f71;
      font-size: 2.5rem;
    }

    .animate-border {
      display: block;
      width: 80px;
      height: 4px;
      background: #253f71;
      margin: 0 auto 30px;
      border-radius: 2px;
    }
  