/* Mobile Height Adjustment */
@media (max-width: 768px) {
  
  #row-rev{
 flex-direction: row-reverse !important;

  }
  .call-btn {
        padding: 2px 2px;
  }
}
.call-btn {
  display: inline-block;
  background-color: #fff;
  color: #b80062 !important;
  padding: 5px 9px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #b80062;
  transition: all 0.3s ease;
}
.call-btn:hover {
  background-color: #f7b2af; /* lighter mix of pink + white */
  color: #fff !important;
}
.a.nav-link.active{
    color: #000 !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
}
@media (max-width: 768px) {
  .sticky-top {
    margin-top: 10px;
  }
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* optional: removes small gap */
}

/* Keep bootstrap dropdown styles consistent */
.dropdown-menu {
  transition: all 0.2s ease-in-out;
}
.dropdown-toggle::after {
    display: none;
}

@media (min-width: 992px) {
    .gap-lg-3 {
        gap: 2rem !important;
    }
}
/* Floating WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;     /* distance from bottom */
    right: 20px;      /* distance from right */
    z-index: 9999;    /* stays on top */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
}
.popup-form {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #555;
  }

  .custom-input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  button[type="submit"] {
    background-color: #00194e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
  }

  button[type="submit"]:hover {
    background-color: #002a75;
  }

  .fixed-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fixed-button {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }

  .fixed-button a {
    color: white;
    text-decoration: none;
  }