.navbar-area {
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: var(--whiteColor);
    z-index: 10;
}
.navbar-brand{
    display: flex;
    justify-content: flex-start;
}
    .navbar-brand img {
        width: 265px;
    }

.navbar-area.sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: sticky;
    background-color: var(--whiteColor);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.default-btn {
    background-color: #006fba;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 12px 28px;
    color: #fff !important;
    display: inline-block;
    border-radius: 40px;
    position: relative;
    border: none;
    font-size: var(--fontSize);
    font-weight: 500;
}
/* -----------------------------------footer-------------------------- */
.footer-area {
       background-color: #002147;
}
.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer-widget-info  {
    text-align: center;
}
.footer-widget-info p {
    color: #7A7A7A;
    margin-bottom: 15px;
    line-height: 1.8;
}
.footer-widget-info{
    border-bottom: 1px solid #073972;
  }
  
  .footer-widget-info .footer-widget h4 {
    font-family: "Cairo", serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-widget-info .footer-widget ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-widget-info .footer-widget ul li {
    margin-bottom: 15px;
    padding-left: 30px;
  }
  
  .footer-widget-info .footer-widget ul li:last-child{
    margin-bottom: 0px;
  }
  .footer-widget-info .footer-widget ul li a {
    color: #B9B9BA;
    position: relative;
}
.footer-widget-info .footer-widget ul li a:hover {
    color: #fff;
}
  .copy-right-area{
    padding: 20px 0;
  }
  
  .social-icons a{
  margin: 10px;
  }
  .copy-right-area .cpr-left p {
    color: #B9B9BA;
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  opacity: 1;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: -32px;

}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.nav-item.dropdown .dropdown-menu {
   background-color: #074772;
}
@media screen and (min-width: 1000px) {
  

/* Show the dropdown menu when hovering */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Add some delay or smooth transition for dropdown */
.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background-color: #074772;
  border-radius: 0.25rem;
  min-width: 160px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Optional: Add some padding or spacing */
.navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}
}
.bg-orange {
    background-color: #ff5b1e !important;
}
.bg-red{
  background-color: #cf0404 !important;
}
.bg-green{
  background-color: green !important;
}
.bg-gray {
    background-color: rgb(163 163 163) !important;
}
.btn-secondary{
  border-radius: 50px;
}
.btn-outlines{
  border: 1px solid #7d7d7d;
  margin: 4px;
}
.pl-2{
  padding-right: 10px;
}
.w-160{
  width: 160px;
}