body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.dropdown-hover {
  position: relative;
}

.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: -8px; /* Adjust this value to align with parent */
  display: none;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 1000;
}

.dropdown-hover:hover > .dropdown-submenu {
  display: block;
}

.dropdown-hover .bi-chevron-right {
  font-size: 12px;
  margin-left: 8px;
  opacity: 0.5;
}

/* Remove default list styling */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* Add a small gap between main dropdown and subdropdown */
.dropdown-submenu {
  margin-left: 1px;
}

/* Ensure submenus remain visible while hovering */
.dropdown-submenu:hover {
  display: block;
}

.header-top-1 {
  padding: 14px 0;
  background-color: #036280;
}

.contact-info {
  text-align: center;
  flex-grow: 1;
}

.contact-info ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0 0 150px !important;
  gap: 20px;
}

.contact-info ul li {
  display: flex;
  align-items: center;
}

.contact-info ul li i {
  margin-right: 5px;
  color: #ffffff;
}

.contact-info ul li a,
.contact-info ul li span {
  color: #ffffff;
  text-decoration: none;
}

.contact-info ul li.divider {
  border-left: 2px solid #ffffff;
  height: 20px;
  margin: 0 10px;
}

.logo img {
  max-height: 200px;
  margin-top: -58px;
  margin-left: -35px;
  border-top-right-radius: 100px;
  background-color: white;
  padding: 6px;
}

.nav-link {
  margin-right: 10px;
  margin-left: 10px;
}

/* Icons Section Styles */
.icon-container {
  position: relative;
  border: 2px solid #ddd; /* Changed to dashed border */
  border-radius: 50%;
  width: 42px; /* Adjusted size */
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: -5px; /* Added spacing between icons */
  cursor: pointer;
}

.icon-container:hover {
  border-color: #036280; /* Orange border on hover */
}

.icon-container i {
  color: #333;
  font-size: 15px; /* Adjusted icon size */
  transition: color 0.3s ease;
}

.icon-container:hover i {
  color: #036280; /* Orange icon on hover */
}

/* Counter Badge */
.icon-container::after {
  content: "0";
  position: absolute;
  top: -8px;
  left: -8px;
  background-color: #036280;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

/* Hide counter for the menu icon */
.icon-container:last-child::after {
  display: none;
}

/* Contact Sidebar Styles */
.contact-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #d0e1e7;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.contact-sidebar.active {
  right: 0;
}

.sidebar-content {
  padding: 2rem;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-logo {
  width: 150px;
  height: auto;
  background-color: #d0e1e7 !important;
}

.logo span {
  font-size: 24px;
  font-weight: 600;
  color: #036280;
}

.close-btn {
  background: #036280;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info-section h3 {
  color: black;
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
}

.contact-item i {
  color: #036280;
  font-size: 20px;
}

.quote-btn {
  width: 100%;
  background-color: #036280;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #f85506;
}

.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-links a {
  color: #036280;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f85506;
  transform: scale(1.1);
  cursor: pointer;
}

/* Overlay styles */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.sidebar-overlay.active {
  display: block;
}

.navbar-nav .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s ease;
  padding-right: 20px !important;
}

.navbar-nav .nav-link:hover {
  color: #f85506;
}

.navbar-nav .nav-link::after {
  display: none;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::before {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0 !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f85506;
  color: #f8f9fa;
  padding-left: 25px;
}

@media (max-width: 1100px) {
  .header-top-1 {
    display: none;
  }
  .container-fluid{
    background-color: #ADC9C4;
   }
   .logo img{
    padding: 0px !important;
    margin-top: -5px;
   }
   .icon-container{
  background-color:whitesmoke;
   }
  .navbar{
    font-weight: 600;
  }

}

@media (max-width:767px){
  .hamburger-menu {
    display: block;
  }
} 

/* 
@media (max-width:1100px){
  .header-top-1{
    display: none;
  }
 .container-fluid{
  background-color:#b9c7c4;
 }
 .logo img{
  padding: 0px !important;
 }
 .icon-container{
background-color:whitesmoke;
 }
.navbar{
  font-weight: 600;
}

}


@media (max-width:992px){
    .hamburger-menu {
      display: block;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    .hamburger-menu {
      cursor: pointer;
      margin-right: -400;
    }
  
    .hamburger-menu .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      background-color: #333;
      transition: all 0.3s ease-in-out;
    }
    .navbar{
      display: none;
    }
    .d-lg-none-custom {
      display: none !important;
    }
    .col-md-4 {
      flex: 0 0 auto;
      width:50%;
   }
} */
