.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link.active {
    color: #106795;
}

.navbar-nav .dropdown-menu {
    background-color: #f8f9fa;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem; 
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    border-radius: 5px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #106795;
    color: #fff;
    border-radius: 5px;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-toggle::after {
    vertical-align: 0.155em;
}

.navbar-custom {
  margin-right: 50px !important;
}

.logo-app {
  width: 60px;
}

.title-app {
    color: rgba(0, 0, 0, 0.95);
    font-size: 1rem;
}

.bg-primary {
    background-color: rgb(14, 87, 128) !important;
}

.btn-primary {
    background-color: #106795;
    border-color: #106795;
}

.form-control {
    background-color: #ffffff;
    padding: 0.5rem 1.2rem;
}

.form-control:focus { 
    background-color: #ffffff;
}

.select2-container--default .select2-selection--single {
    height: calc(2.4rem + 3px);
    padding: 0.4rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #778295;  
    border: 1px solid #D5D1D6;
    font-family: "Poppins", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #778295;  
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin-top: 7px;
    margin-right: 10px;
}

.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.floating-button {
    background: #333;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.floating-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 60px;
    right: 0;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    margin-left: 10px;
    text-decoration: none;
}

.fab-item i {
    width: 20px;
    height: 20px;
}

.fab-item:hover {
    background: #5f5f5f;
    color: #f1f1f1;
    text-decoration: none;
}

.tooltip {
    position: absolute;
    right: 110%;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide .img {
    display: block;
    width: 100%;
    height: 90vh !important;
}

.slide-content {
    position: absolute;
    top: 40%;
    left: 10%;
    /* transform: translateX(-50%); */
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-align: left;
}

.slide-content h1 {
    color: white !important;
    font-weight: 300;
}   

.loader {
    width: 60px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
    background: 
      var(--_g) 0%   50%,
      var(--_g) 50%  50%,
      var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1s infinite linear;
}

.min-vh-md-90 {
    min-height: 90vh !important;
}

.text-auto {
    mix-blend-mode: difference;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .step {
    position: relative;
    text-align: center;
    flex: 1;
  }
  
  .circle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    font-weight: bold;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  
  .label {
    margin-top: 6px;
    font-size: 13px;
  }
  
  .step.active .circle {
    background-color: #106795;
  }
  
  .step::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 4px;
    background-color: #ccc;
    z-index: 0;
  }
  
  .step.active::before {
    background-color: #106795;
  }
  
  .step:first-child::before {
    content: none;
  }
  
  .zoom-photo {
    color: #fff;
    height: 100px;
    width: 100px;
    position: absolute;
    margin-left: 11%;
    top: 35%;
    opacity: 0.2;
}

.zoom-photo:hover {
    opacity: 0.7;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
  
.modal-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    backdrop-filter: blur(5px); 
    text-align: center;
}  

.carousel-indicators .active {
    background-color: #106795;
}

@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

@media (max-width: 991px) {
    .navbar-custom {
      margin-right: auto !important;
    }

    .logo-app {
      width: 40px;
    }

    .navbar-nav .dropdown-menu {
        background-color: #fff;
        display: none;
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
    }

    .navbar-nav .dropdown.show .dropdown-menu {
        display: block;
    }

    .swiper-slide .img {
        height: 30vh !important;
    }
}