
/* Main Header */
.headeronthetop {
 background: linear-gradient(to right, #1e40af, #9333ea);


  /* color: #fff; */
  color: white;
  font-family: Arial, sans-serif;
  /* padding: 8px 15px; */
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 2px solid #ffcc80;
    border-bottom: 2px solid #ffcc80;
}

/* Left Info */
.headerleftinfo {
  font-size: 14px;
  padding-left: 50px;
  font-weight: 500;
}

/* Right Info */
.headerrightinfo {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 14px;
      font-weight: 500;
}

/* Login Button */
.loginsection button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
   font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}
.loginsection button:hover {
  background: #e68a00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .headeronthetop {
    flex-direction: column;
    text-align: center;
    /* gap: 8px; */
  }

  .headerrightinfo {
    flex-direction: column;
    gap: 1px;
  }

  /* Keep login as button in mobile too */
  .loginsection button {
    font-size: 14px;
    padding: 6px 14px;
    background: #ff9900;
  }
}

@media (max-width: 768px) {
 

 
  .headerleftinfo {
    
    padding-left: 0px;
    
  }
}



