 @media (min-width: 992px) {

     .footer-widget-area .col-lg-3:first-child,
     .footer-widget-area .col-lg-2 {
         border-right: 1px solid #003d4e;
     }

     .footer-widget-area .col-lg-2,
     .footer-widget-area .col-lg-4 {
         padding-top: 75px !important;
     }
 }

 /* MOBILE & TABLET: full width, stacked, no extra spacing */
 @media (max-width: 991px) {
     .footer-widget-area .col-12 {
         padding-top: 0 !important;
         padding-left: 15px !important;
         padding-right: 15px !important;
         margin-bottom: 25px !important;
         border-right: none !important;
         border-bottom: 1px solid #003d4e;
     }

     .footer-widget-area .col-12:last-child {
         border-bottom: none !important;
     }

     .footer-widget-area .col-12 .media-body {
         text-align: left !important;
     }
 }

/* Remove ALL border lines on mobile */
@media (max-width: 991px) {
    .footer-widget-area .col-12 {
        padding-top: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 25px !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: none !important;
        border: none !important;
    }

    .footer-widget-area [class*="border"] {
        border: none !important;
    }

    .footer-widget-area .border-right,
    .footer-widget-area .border-bottom,
    .footer-widget-area .border-top,
    .footer-widget-area .border {
        border: none !important;
    }
}

 /* Default state (Top of page - Transparent) */
 nav.navbar.header-light {
     background-color: transparent;
     border: none;
     padding: 20px 0;
     /* Adds the vertical gap seen in image */
     transition: all 0.3s ease;
 }

 /* Nav links color at the top */
 nav.navbar.header-light ul.nav>li>a {
     color: #ffffff !important;
     font-weight: 600;
     font-size: 13px;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 /* Scrolled state (Sticky) */
 nav.navbar.sticked,
 nav.navbar.nav-scroll {
     background-color: #ffffff !important;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     padding: 10px 0;
 }

 /* Nav links color when scrolled */
 nav.navbar.sticked ul.nav>li>a,
 nav.navbar.nav-scroll ul.nav>li>a {
     color: #00566b !important;
 }


 /* Ensure the container uses the full width with side padding */
 .nav-header-container {
     padding-left: 50px !important;
     padding-right: 50px !important;
     display: flex;
     align-items: center;
 }

 /* Spacing between individual menu items */
 nav.navbar ul.nav>li {
     margin-left: 5px;
     margin-right: 5px;
 }

 .right-section {
     color: #ffffff;
     font-family: 'Alt-font', sans-serif;
 }

 .phone-box {
     margin-right: 25px;
     font-size: 14px;
     display: inline-block;
 }

 .phone-box i {
     margin-right: 8px;
 }

 .social-icons a {
     color: #ffffff !important;
     margin-left: 12px;
     font-size: 14px;
     transition: opacity 0.2s;
 }

 .social-icons a:hover {
     opacity: 0.7;
 }

 /* Turn right section text green when scrolling */
 nav.navbar.sticked .right-section,
 nav.navbar.sticked .phone-box,
 nav.navbar.nav-scroll .right-section,
 nav.navbar.nav-scroll .phone-box {
     color: #00566b !important;
 }

 /* Turn social media icons white with green background when scrolling */
 nav.navbar.sticked .social-icons a,
 nav.navbar.nav-scroll .social-icons a {
     color: #ffffff !important;
     background-color: #00566b;
     width: 28px;
     height: 28px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }


 /* Force the phone number and icon to white */
 .header-searchbar .phone-box,
 .header-searchbar .phone-box span,
 .header-searchbar .phone-box i {
     color: #ffffff !important;
     opacity: 1 !important;
 }

 /* Style for the active menu item link */
 nav.navbar ul.nav>li.active>a {
     color: #d74e22 !important;
     font-weight: bold !important;
     /* Pure Green */
     position: relative;
 }

 /* If you want the small white line under 'HOME' to also be green */
 nav.navbar ul.nav>li.active>a::after {
     background-color: #00566b !important;
 }

 /* Hover state for other links to match the green theme */
 nav.navbar ul.nav>li>a:hover {
     color: #d74e22 !important;
 }

 /* Comprehensive Fix */
 nav.navbar.bootsnav {
     border-bottom: none !important;
     /* Removes main bottom line */
 }

  /* Fix dropdown alignment and style */
  nav.navbar.bootsnav li.dropdown {
      position: relative !important;
  }

  nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
      left: 0 !important;
      right: auto !important;
      top: 100% !important;
      margin-top: -1px !important; /* Slight overlap to prevent gap */
      min-width: 220px !important;
      padding: 10px 0 !important;
      background-color: #ffffff !important;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
      border: none !important;
      border-radius: 0 0 4px 4px !important;
      display: none; /* Default state handled by bootsnav */
  }

  /* Ensure dropdown stays open when hovering the menu itself */
  nav.navbar.bootsnav li.dropdown:hover > ul.dropdown-menu {
      display: block !important;
  }

  nav.navbar.bootsnav li.dropdown ul.dropdown-menu li a {
      padding: 8px 25px !important;
      display: block !important;
      color: #6f6f6f !important; /* Grey text */
      font-size: 13px !important;
      text-transform: none !important;
      font-weight: 500 !important;
      border-bottom: 1px solid #eeeeee !important;
      background: #ffffff !important; /* Force white background */
  }

  nav.navbar.bootsnav li.dropdown ul.dropdown-menu li:last-child a {
      border-bottom: none !important;
  }

  nav.navbar.bootsnav li.dropdown ul.dropdown-menu li a:hover {
      color: #d74e22 !important; /* Orange text on hover */
      background-color: #fdf2ef !important; /* Light orange background */
      padding-left: 30px !important;
      text-decoration: none !important;
  }

  /* Dropdown Arrow Fix */
  nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f107" !important; /* Angle down icon */
      margin-left: 8px;
      font-size: 11px;
      display: inline-block;
      vertical-align: middle;
      border: none !important;
  }


 .whatsapp-float {
     position: fixed;
     width: 60px;
     height: 60px;
     bottom: 150px;
     right: 25px;
     background: #25d366;
     color: #fff !important;
     border-radius: 50%;
     text-align: center;
     font-size: 32px;
     line-height: 60px;
     z-index: 9999;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
     animation: whatsappPulse 1.5s infinite;
 }

 .whatsapp-float:hover {
     background: #1ebe5d;
     transform: scale(1.1);
     color: #fff;
 }

 /* Pulse Animation */
 @keyframes whatsappPulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

 /* Mobile Responsive */
 @media(max-width:768px) {
     .whatsapp-float {
         width: 55px;
         height: 55px;
         line-height: 55px;
         font-size: 28px;
         right: 15px;
         bottom: 20px;
     }
 }

  /* Mobile menu items and toggle button visibility fixes when scrolled */
  @media (max-width: 991px) {
      /* Keep top-level mobile menu links white on dark background when header is scrolled */
      nav.navbar.sticked ul.nav>li>a,
      nav.navbar.nav-scroll ul.nav>li>a {
          color: #ffffff !important;
      }

      /* Keep active mobile menu link orange when header is scrolled */
      nav.navbar.sticked ul.nav>li.active>a,
      nav.navbar.nav-scroll ul.nav>li.active>a {
          color: #d74e22 !important;
      }

      /* Make toggle menu 3 lines visible (dark teal) when header is scrolled/white */
      header.sticky .navbar-toggler .icon-bar,
      nav.navbar.sticked .navbar-toggler .icon-bar,
      nav.navbar.nav-scroll .navbar-toggler .icon-bar {
          background-color: #00566b !important;
      }
  }