.accordion-body {
  display: none;
  padding: 10px;
  background: #431818;
}
.search-box {
  width: 100%;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #999;
  border-radius: 4px;
}

 .accordion-header {
   background: hsl(0, 0%, 100%);
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.accordion-body {
  display: block; 
  padding: 10px;
  background: #ffffff;
} 
/* Remove Bootstrap default caret */
.accordion-button::after { display: none; }

/* Add + / - icon on the RIGHT */
.accordion-button {
  position: relative;
  padding-right: 75px !important; /* space for icon */
}

.accordion-button::before {
  content: "+";
  position: absolute;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

/* When accordion is open, show minus */
.accordion-button:not(.collapsed)::before {
  content: "-";
  position: absolute;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 8px;
}

table tr:hover td {
  background-color: #90c0f0 !important;
  cursor: pointer;
}

/* Add spacing between nav items */
.navbar-nav .nav-item {
  margin: 0 10px; /* Adjust spacing between items */
}

/* Highlight active nav link */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: #00bbff !important; 
  border-bottom: 2px solid #00bbff;
}

/* For dropdown open state */
.nav-item.dropdown.show .nav-link {
  color: #00bbff !important; 
}


.search-highlight,
tr.search-highlight > td,
tr.search-highlight > th {
  background-color: #bce2bc !important;
  transition: background-color 1.2s ease;
}

.toast {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
} 
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.heading-blue-green{
  padding-right: 50px;
}
.heading-blue-green span:first-child {
  color: #1c4d90;
}

.heading-blue-green span:last-child {
  color: #389c38;

}


/* Circle hover effect for the phone icon */
.enquiry-icon i {
  padding: 8px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.enquiry-icon:hover i {
  background: #00bbff; /* light circle */
}


/* Icon styling */
.mobile-contact-icon {
    margin-top: 10px; /* space below search bar */
    text-align: center; /* default for desktop/tablet */
}

.mobile-contact-icon i {
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover circle */
.mobile-contact-icon i:hover {
     background: #00bbff;
}


@media (max-width: 768px) {

  /* Container holding phone icon */
  .mobile-contact-icon {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px;
    margin-left: 0 !important;
  }

  /* Align the content (icon + text) to center */
  .mobile-contact-icon a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    width: 100%;
    text-align: center;
    margin-right: 70px;
  }


  #navbarSearchInput {
    width: 80% !important;
    margin: 0 auto !important;
  }

   /* Force the dropdown to stay centered and inside the screen */
  .mobile-contact-icon .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }


}
