.header-bar {
    position: absolute;
    top: 100%;
    left: -51px;
    z-index: 2;
    background: #3a3285;
    color: #fff !important;
    padding: 20px 50px;
    border-bottom-right-radius: 50px;
}

.btn.header-btn {
    background-color: #3a3285;;
    color: #ffffff;
    font-size: 14px;
    line-height: 28px;
    padding: 10px 10px;
    width: 160px;
}
.btn.header-btn svg path{
    fill:#fff;
}
.btn.header-btn:hover {
    background-color: #fff;
    color: #3a3285;
    font-size: 14px;
    line-height: 28px;
    padding: 10px 10px;
    width: 160px;
    border: 1px solid #3a3285;;
}
.btn.header-btn:hover svg path {
    fill: #3a3285;;
}
.main-header a.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #383A3C;
}
li.nav-title a:hover {
    color: #3a3285 !important;
}
.main-header a.nav-link.active {
    color: #3a3285 !important;
}
.main-header a.nav-link:hover {
    color: #3a3285 !important;
}
.social-icons li {
    display: inline-block;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    padding: 0px;
    background-color: #5e5e5e; /* Default Background */
}

.social-icons li a {
    display: flex;
    align-items: center;
text-decoration: none;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0px;
}

/* Facebook Hover Effect */
.social-icons .facebook:hover {
    transform: scale(1.1);
}

/* Instagram Hover Effect */
.social-icons .instagram:hover {
    transform: scale(1.1);
}
a.footer-web-link {
    color: #f39745;
}
a.footer-web-link:hover {
    color: #ffffff;
}


.main-header.sticky {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-header.sticky .header-bar {
    display: none;
}

/* Ensure the banner section doesn't jump */
.banner-section {
    margin-top: 0px !important;
}
.page-header {
    margin-top: 0px !important;
}
.main-header .dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    padding: 20px 10px;
    width: 280px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.header-logos img {
    height: 100px;
}

.footer-logos img {
    height: 99px;
}
.border-line {
    border-right: 1px solid #D0D0D0;
}
.logo-border {
    border-right: 1px solid #fff;
    margin-right: 10px;
    margin-left: 10px;
    height: 100px;
}
.ticker-wrapper a:hover {
    color: #f39745 !important;
}
.header-text h6{
   
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}
.header-text h2{
    color: #0546A7;
    font-size: 27px;
    font-weight: 800;
}
.blue-header{
    background-color: #F39745 !important;
}

.top-header {
    transition: transform 0.4s ease, opacity 0.4s ease, height 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    height: auto;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .top-header.hidden {
    transform: translateY(-100%);
    padding: 0px 0px;
    opacity: 0;
    height: 0; /* Collapses the space */
  }
  

  .blue-header button.btn-close i {
    color: #ffff;
}
.border-right {
    border-right: 1px solid #56565633;
    padding-left: 10px;
    margin-right: 10px;
}
.main-header {
    position: relative;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    box-shadow: none;
  }
  
  .main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 1.1s ease-out; /* Aur slow animation */
    padding: 0px 0px;
  }
  
  /* Animation effect */
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Shrink the navbar padding and logo */
  .main-header .navbar {
    transition: padding 0.3s ease;
  }
  
  .main-header.sticky .navbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  /* Optional: shrink logos or texts in sticky mode */
  .main-header.sticky .header-text h2 {
    font-size: 25px;
  }
  
  .main-header.sticky .header-text h6 {
    font-size: 0.75rem;
  }
  
  .main-header.sticky img {
    max-height: 80px; /* Reduce logo size */
    transition: max-height 0.3s ease;
  }
  

