/* Base reset and layout */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #e9f3fc 0%, #ffffff 100%);
  margin-top: 5px;
}

/* Navbar styling */
.navbar.navbar-default {
  background-color: transparent;
  margin-bottom: 0;
  box-shadow: none;
  margin-top: -10px;
}

/* Custom header layout */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}

/* Logo images */
.navbar-brand img,
.logo-container img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Branding */
.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-brand:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .custom-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  
  .navbar-brand img,
  .logo-container img {
    max-height: 70px;
  }
  .navbar-brand img{
    margin-left:-120px;
    height: 100px;
  }
  .logo-container img{
    margin-top: -60px;
    margin-left: 200px;
    height: 60px;
  }
 .navbar-brand img,
  .logo-container img {
    margin-top:20px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-brand img,
  .logo-container img {
    max-height: 60px;
  }

  body {
    overflow-x: hidden;
  }
}
@media (min-width: 300px) and (max-width: 768px) {
   .navbar-brand img,
  .logo-container img {
    max-height: 70px;
  }
  .navbar-brand img{
    margin-left:-80px;
    height: 60px;
margin-top:5px;
  }
  .logo-container img{
    margin-top: -65px;
    margin-left: 250px;
    height: 60px;
  }
}
@media (min-width:1317px) and (max-width:3000px){
	.navbar.navbar-default {
  background-color: transparent;
  margin-bottom: 0;
  box-shadow: none;
  margin-top: 15px;
}
}