body {
  margin: 0;
  
}


.logo-wrapper {
  max-height: 75px;
}

.logo {
  height: auto;
  max-height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}



/*------------ Top Header csss ---------------------------------------------------------------------------------------------------*/



.header2{
  background-color: #16BAE4;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 3px #000;
}
.header2 a:hover{
  text-decoration: underline;
  color: #000;
}


.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding: 0 4px; /* Adjust spacing around text */
}

.nav-links span {
  color: white;
  font-size: 13px;
  padding: 0 2px; /* Tight space around '|' */
}


/*---------------------------------------------------------------------------------------------------------------*/




.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ccc; /* Optional: subtle hover color change */
  text-decoration: none;
}

.desktop-footer {
  background-color: #223459;
  color: white;
  padding: 40px 30px 20px;
  
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
 
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.footer-column ul li:hover {
  text-decoration: underline;
  color: white;
}

.footer-column.social .icons i {
  font-size: 16px;
  margin-right: 12px;
  color: #ccc;
  cursor: pointer;
}

.footer-column.social .icons i:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .desktop-footer {
    padding: 20px 30px;

  }
  
  .footer-container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
    flex: none;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-column ul li {
    font-size: 16px;
  }
  
  .footer-column.social .icons i {
    font-size: 20px;
    margin-right: 15px;
  }
  
  .footer-bottom {
    font-size: 16px;
    margin-top: 20px;
  }
}



/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #9acd32;
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
  z-index: 1000;
  transition: opacity 0.3s;
}

.scroll-to-top:hover {
  opacity: 0.85;
}




/*---------------------------------------------------------------------------------------------------------------*/


/* Nav Bar 1st Css */

.logo {
  height: 75px;
  width: auto;
  cursor: pointer;
}

.navbar:first-of-type {
  position: relative;
  z-index: 1050; /* Ensure first navbar is above second */
}

.navbar .dropdown-menu {
  position: absolute;
  z-index: 1060; /* Dropdown above both navbars */
}

.navbar form .btn-primary {
  background-color: #0288d1;
  border: none;
}

.navbar form .form-control {
  border-left: none;
}

.badge {
  font-size: 0.6rem;
}


/* Mobile All button styling */
.dropdown-mobile .btn {
  background-color: #99d052;  
  color: #fff;                /* White text */
  border: none;               
}

.dropdown-mobile .btn:hover {
  background-color: #88be45;  
}

/* Custom border-radius on 3 sides */
.dropdown-desktop .btn,
.dropdown-mobile .btn,
.input-group .btn,
.input-group .form-control {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6; /* no rounding */
}


/* navbar.css */

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  padding: 0 0.5px !important;
}

.navbar .logo {
  max-height: 75px;
}

.input-group .dropdown-toggle {
  background-color: #99d052;
  border: 1px solid #ced4da;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #3faee1;
  color: white;
}

@media (max-width: 991.98px) {
  .dropdown-desktop {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .dropdown-mobile {
    display: none !important;
  }
}







/*---------------------------------------------------------------------------------------------------------------*/



 /*  2nd Nav bar Css */

/* For second navbar */
.second-navbar {
  position: relative;
  z-index: 1000;
}

.navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0px;


}
.navbar-nav a:hover{
  text-decoration: underline;
  color: rgb(230, 22, 22);
 transform: scale(1.05);
 
}


/* Hide second navbar by default */
.second-navbar {
  display: none;
}

/* Show only on large screens (desktop and up) */
@media (min-width: 992px) {
  .second-navbar {
    display: block;
  }

  .category-navbar {
    position: sticky;
    top: 0;
    z-index: 900; /* Keeps it below primary nav (z-index ~1050) */
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 0; /* Remove default padding */
  }

  .category-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Better spacing between items */
  }

  /* Optional pipe separator */

}

.nav-btn.prev,
.nav-btn.next {
  background-color: transparent !important;
  box-shadow: none !important;
}


/*---------------------------------------------------------------------------------------------------------------*/


.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

/* Popup/Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1050;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast-notification.success {
    background-color: #9fbe1b;
}

.toast-notification.error {
    background-color: #dc3545;
}

/* Header Search Results Popup */
#headerSearchResultsPopup {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  max-height: 350px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 250px;
  z-index: 9999;
}

#headerSearchResultsPopup .search-result-item:hover {
  background: #f5faff;
}

#headerSearchResultsPopup .search-result-item:last-child {
  border-bottom: none;
}
