body {
    font-family: 'Inter', sans-serif;
    background-color: #F0F3F9;
            line-height: 1.6;
        }

  .header_area {
      position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background-color: white !important; 
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: none !important; 
}
        .header_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header_row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        /* Logo Styles */
        .logo_column {
            flex: 0 0 auto;
        }

      .header_logo_box .logo img {
        max-height: 70px; /* adjust height as needed */
        width: 70 px;
      }


      .logo_default {
          height: 50px;
          width: auto;
          transition: all 0.3s ease;
      }

      @media (max-width: 480px) {
          .logo_default {
              height: 40px;
          }
      }

        .logo_icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2c5aa0, #4a90e2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        /* Navigation Styles */
        .menu_column {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .navbar_nav {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
             flex-wrap: nowrap;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            padding: 10px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #2c5aa0;
        }

        .nav-link.active {
            color: #2c5aa0;
            font-weight: 600;
        }

        /* CTA Buttons */
        .header_cta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 30px;
        }

        .quote-btn {
            background: linear-gradient(135deg, #2c5aa0, #4a90e2);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Spartan', sans-serif;
        }

        .quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
        }

        /* Call Button Dropdown */
        .call_dropdown {
            position: relative;
        }

        .call-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #388e3c;
            border: none;
            cursor: pointer;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .call-btn:hover {
            background: #2e7d32;
            transform: scale(1.05);
        }

        .dropdown-content {
            position: absolute;
            top: 120%;
            right: 0;
            background: white;
            min-width: 280px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 20px;
            z-index: 1000;
        }

        .call_dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content h3 {
           
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 8px;
        }

        .dropdown-content p {
            margin: 5px 0;
            color: #666;
            font-size: 14px;
            line-height: 1.4;
        }

        .dropdown-content p:first-of-type {
            font-weight: 600;
            color: #333;
        }

      
/* 3️⃣ Ensure the menu & hamburger work for mobile */
@media (max-width: 991px) {
    nav.desktop_nav {
        display: none;
    }
    .hamburger_menu {
        display: flex;
    }
}
/* Parent dropdown */
.nav-item.dropdown {
  position: relative;
}

/* Base dropdown menu style */
.dropdown-menu {
  position: absolute;
  top: 100%; /* directly under Resources */
  left: 0; /* aligned with Resources text */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  z-index: 1000;
}

/* Show on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333 !important; /* no red */
  text-decoration: none;
  transition: background 0.2s;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #333 !important;
}

/* Parent link styling (Resources) */
.nav-item.dropdown > a {
  color: #333 !important;
}
.nav-item.dropdown > a:hover {
  color: #2c5aa0 !important; /* your theme hover */
}


/* MOBILE HEADER */
    .mobile_header, .mobile_menu_modal {
        display: none; /* Hide on desktop */
    }

    @media (max-width: 991px) {
        /* Show mobile header on mobile - UPDATED LAYOUT */
        .mobile_header {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: #fff;
            border-bottom: 1px solid #eee;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 9999;
        }

        /* Hamburger menu positioned on the left */
        .mobile_hamburger {
            width: 30px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 20px;
            order: 1; /* First element */
        }

        .mobile_hamburger span {
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 2px;
        }

        /* Logo positioned in the center */
        .mobile_logo {
            flex: 1;
            display: flex;
            justify-content: center;
            order: 2; /* Second element (center) */
        }

        .mobile_logo img {
            height: 40px;
        }

        /* Optional: Add a spacer div to balance the layout */
        .mobile_spacer {
            width: 30px; /* Same width as hamburger to balance */
            order: 3; /* Third element */
        }

        /* Half-screen mobile menu modal */
        .mobile_menu_modal {
            display: block; /* Needed for transform */
            position: fixed;
            top: 55px;
            right: 0;
            width: 50%;
            max-width: 300px;
            height: 100%;
            background: #fff;
            z-index: 9998;
            box-shadow: -2px 0 8px rgba(0,0,0,0.2);
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        .mobile_menu_modal.active {
            transform: translateX(0);
        }

        .mobile_menu_content {
            position: relative;
            padding: 50px 20px 20px 20px;
        }
        .mobile_menu_content .close_btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
        }
        .mobile_nav_links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .mobile_nav_links li {
            margin: 15px 0;
        }
        .mobile_nav_links li a {
            text-decoration: none;
            font-size: 18px;
            color: #333;
        }
       .mobile_quote_btn {
        order: 3; /* right side */
    }

    .mobile_quote_btn .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 20px;
        background: linear-gradient(135deg, #2c5aa0, #4a90e2);
        color: #fff;
        border: none;
        cursor: pointer;
    }

        /* Hide desktop nav & CTA on mobile */
        .desktop_nav, .header_cta {
            display: none !important;
        }
    }