/*------- Professional Header Fixed ---------*/
:root {
  --header-height: 60px;
  --header-bg: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height); /* Height fix kardi */
  z-index: 2000;
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

.header .header-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Logo container and images fix */
.web-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Logo ko chota hone se rokega */
}

.web-logo img {
  height: 35px;    /* Fix height */
  width: auto;     /* Aspect ratio maintain rahega */
  max-width: 150px; /* Zyada bada na ho jaye */
  object-fit: contain;
  display: block;
}

.logo_name {
  height: 25px !important;
  margin-left: 8px;
}

/* Search bar fix */
.web-search {
  flex-grow: 1;
  max-width: 500px;
  margin: 0 20px;
  position: relative;
}

.web-search input {
  width: 100%;
  height: 38px;
  padding: 0 40px 0 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

/* Icons/Login fix */
.web-login {
  display: flex;
  align-items: center;
  gap: 15px;
}

.web-login a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.web-login a img {
  height: 28px !important; /* Icons ki height lock kardi */
  width: 28px !important;
  object-fit: contain;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
  .web-search, .logo_name {
    display: none;
  }
}