.top-nav {
background: linear-gradient(to right, #214985, #102e4f);
  padding: 8px 0;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.social-icons a {
  color: #ccc;
  margin-right: 12px;
  font-size: 16px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ffd700;
}
/*.top-links a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}*/
.top-links a i {
  margin-right: 5px;
}
.top-links .login-link:hover,
.top-links .search-icon:hover {
  color: #00c3ff;
}

/* Search Box Below Strip */
.search-box-container {
  display: none;
  background: #f1f5f9;
  padding: 20px 10px;
  animation: fadeInDown 0.4s ease-in-out;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.search-input {
  width: 50%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    
.link-separator {
  color: #ccc;
  margin: 0 10px;
  font-weight: 300;
  font-size: 16px;
  user-select: none;
}   
    
/* Responsive */
@media(max-width: 768px) {
  .search-input {
    width: 80%;
  }
}

    .search-box-container {
  display: none;
  background: #f1f5f9;
  padding: 20px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: fadeInDown 0.4s ease-in-out;
}

.search-input-wrapper {
  position: relative;
  display: inline-block;
  width: 50%;
}

.search-input {
  width: 100%;
  padding: 10px 15px;
  padding-right: 45px; /* space for the button */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #214985;
  border: none;
  color: white;
  padding: 7px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #1a3c6e;
}

.search-btn i {
  font-size: 18px;
}

    
    
    
    
.new-header {

  border-bottom: 1px solid #ddd;
}

.header-wrapper {
  gap: 10px;
}

.left-logos,
.right-logo {
  flex-shrink: 0;
}

.header-title {
  min-width: 280px;
}
	
/*	.storein-title {
   font-size: 28px;
    font-weight: 800;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #1e3a8a, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-align: center;
    margin-bottom: 15px;

    position: relative;
}

.storein-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
}*/
	
.storein-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    color: #1e3a8a;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
	
	
}

/* Background highlight strip */
.storein-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: rgba(37, 99, 235, 0.15);
    z-index: -1;
    border-radius: 4px;
}	
	
	
	

/* Optional subtitle feel (agar neeche kuch text ho) */
.storein-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
	

/*.storein-title {
  font-size: 18px;
  font-weight: 500;
  color: #214985;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(to right, #1e3a8a, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}

.storein-title {
  font-weight: 700;
  font-size: 24px;
}*/

.storein-title strong {
  font-size: 20px;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: initial;
  color: #0f172a;
}

/* Responsive Tuning */
@media (max-width: 767px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .left-logos,
  .right-logo {
    justify-content: center;
    margin: 5px 0;
  }
  .header-title {
    order: -1;
  }
}

    
/* Enable dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    display: none; /* optional: hide default arrow */
  }
}
    
 .dropdown-menu {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}
   
  .custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  text-decoration: none;
  color: #fff;

  padding: 8px 14px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
    
    
    
}

    .search-icon {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}
    
.custom-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 180px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.custom-dropdown:hover .custom-menu {
  display: block;
}

.custom-item {
  display: block;
  padding: 10px 15px;
  color: #13293a;
  text-decoration: none;
  transition: background 0.3s;
}

.custom-item:hover {
  background-color: #f0f0f0;
}

.custom-divider {
  margin: 5px 0;
  border: none;
  border-top: 1px solid #ccc;
}
  