   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;
        }

        /* Hamburger Menu */
      .hamburger_menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger_line {
    width: 25px;
    height: 3px;
    background-color: #000; /* change if your header has dark bg */
    border-radius: 2px;
}

        .hamburger_menu.active .hamburger_line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger_menu.active .hamburger_line:nth-child(2) {
            opacity: 0;
        }

        .hamburger_menu.active .hamburger_line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation */
        .mobile_nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: white;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            z-index: 9998;
        }

        .mobile_nav.active {
            transform: translateX(0);
        }

        .mobile_nav_content {
            padding: 30px 20px;
        }

        .mobile_nav .navbar_nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .mobile_nav .nav-item {
            width: 100%;
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile_nav .nav-link {
            display: block;
            padding: 15px 0;
            font-size: 16px;
            width: 100%;
        }

        .mobile_nav .header_cta {
            margin-left: 0;
            margin-top: 30px;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .mobile_nav .quote-btn {
            width: 100%;
            text-align: center;
        }

        .mobile_nav .dropdown-content {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: 1px solid #e0e0e0;
            margin-top: 15px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            margin: 5% auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .modal-content h2 {
            color: #2c5aa0;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .modal-content p {
            color: #666;
            margin-bottom: 25px;
        }

        .modal form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal input,
        .modal textarea {
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Spartan', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .modal input:focus,
        .modal textarea:focus {
            outline: none;
            border-color: #2c5aa0;
        }

        .modal textarea {
            resize: vertical;
            min-height: 100px;
        }

        .modal button[type="submit"] {
            background: linear-gradient(135deg, #2c5aa0, #4a90e2);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Spartan', sans-serif;
        }

        .modal button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
        }

        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #333;
        }

        /* Content Area */
        .content_area {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content_area h1 {
            color: #2c5aa0;
            margin-bottom: 20px;
        }
.hamburger_menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger_line {
    width: 25px;
    height: 3px;
    background-color: #000; /* change if your header has dark bg */
    border-radius: 2px;
}
     
/* 3️⃣ Ensure the menu & hamburger work for mobile */
@media (max-width: 991px) {
    nav.desktop_nav {
        display: none;
    }
    .hamburger_menu {
        display: flex;
    }
}

/* Mobile nav menu styling */
.mobile_nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}
.mobile_nav.active {
    transform: translateX(0);
}
.mobile_nav .navbar_nav {
    flex-direction: column;
    gap: 0;
}
.mobile_nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
}
.mobile_nav .nav-link {
    padding: 12px 20px;
    display: block;
}
/* 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 */
}



