.navbar {
    background-color: #fff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
  }

  .header .navbar .navbar-brand{
    height: 60px;
    width: auto;
  }

  .header .navbar .navbar-brand img{
    height: 100%;
    width: 100%;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
  }

  .brand-logo {
    height: 40px;
    margin-right: 0.5rem;
  }

  .brand-text {
    font-weight: bold;
    font-size: 1.25rem;
    color: #002147;
  }

  .tagline {
    font-size: 0.75rem;
    color: #333;
    margin-top: -4px;
  }

  .nav-link {
    font-weight: 500;
    color: #000 !important;
    margin: 0 10px;
  }

  .dropdown-toggle::after {
    margin-left: 4px;
  }

  .btn-demo {
    background-color: #002b5c;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    padding: 6px 14px;
    margin-right: 10px;
  }

  .btn-login {
    border: 2px solid #002b5c;
    color: #002b5c;
    background: transparent;
    font-weight: 500;
    border-radius: 6px;
    padding: 6px 14px;
    margin-right: 15px;
  }

  .country-flag {
    width: 24px;
    margin-right: 6px;
  }

  .country-label {
    font-weight: 600;
    color: #000;
  }


.sec1{
    color: #fff;
    padding-top: 30px;
    
    background: linear-gradient(90deg, rgba(24, 56, 102, 1) 55%, rgba(162, 174, 194, 1) 88%, rgba(245, 247, 250, 1) 100%);

}
.secfirst{
    font-size: 46px;
    font-family: Nunito Sans;
    font-weight: 700;
    margin-bottom: 35px;
}
.mainfirst h3{
    font-size: 18px;
    line-height: 24px;
    font-family: Nunito Sans;
    font-weight: 500;
    max-width: 700px;
    padding-bottom: 30px;
}
.btn{
  /* width: 40%; */
  
  
}
.btns{
  padding-top: 30px;
}


.mega-panel {
  display: flex;
  min-height: 100vh;
  padding: 40px;
}

.sidebar {
  width: 250px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.menu-item {
  cursor: pointer;
  padding: 10px 0;
  color: #333;
}

.menu-item.active {
  font-weight: bold;
  color: #007bff;
}

.content-area {
  flex: 1;
  padding-left: 40px;
}

.content-box {
  display: none;
}

.content-box.active {
  display: block;
}

/* Optional: Make the scrollbar more subtle or styled if needed */
.submenu-scroll {
  white-space: nowrap;       /* Prevent wrapping */
  overflow-x: auto;          /* Horizontal scroll */
  -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
  scrollbar-width: thin;     /* Firefox */
}

.submenu-scroll::-webkit-scrollbar {
  height: 6px; /* Thin scrollbar on Chrome/Safari */
}
.submenu-scroll::-webkit-scrollbar-thumb {
  background-color: #18CB96; /* Customize scrollbar thumb */
  border-radius: 4px;
}

/* Scrollable nav styles */
.submenu-scroll {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Navbar active link styling */
.navbar-nav .nav-link.active {
    color: #18CB96 !important;       /* Text color */
    border-bottom: 3px solid #18CB96; /* Underline */
    padding-bottom: 5px;              /* Adjust spacing */
}


/* Style for nav links */
/* Force active state with high specificity */
body .header .navbar .navbar-nav .nav-item .nav-link.active {
    color: #18CB96 !important;
    border-bottom: 3px solid #18CB96 !important;
    padding-bottom: 5px !important;
    margin-bottom: -8px !important;
}

/* Ensure normal state has no border */
.navbar-nav .nav-link {
    border-bottom: none !important;
}