/*  Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}
.header_bottom_strip {
  height: 4px;
  background: linear-gradient(to right, #EC1E30 11.54%, #EE402F 26.44%, #FAAF1D 47.6%, #499845 85.58%, #1176BC 100%);
}
.header_outer .logo a img {
    height: auto;
    width: 220px;
}

.header {
    padding: 12px 0px;
}
.header_outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_link {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav_link ul {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav_link ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    position: relative;
    text-decoration: none;
    padding: 0;
    font-family: "Schibsted Grotesk", sans-serif;
    display:flex;
}
.nav_link ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--red); /* Blue underline */
	transition: width 0.3s ease;
}

.nav_link ul li a:hover, .nav_link ul li a:focus {
    color: var(--red);
}
.nav_link ul li a:hover::after,
.nav_link ul li a:focus::after {
	width: 100%;
}
/* .search input {
    width: 150px;
    height: 36px;
    color: #000;
    padding: 8px 12px;
    outline: none;
    background: #E6E8E9;
    border: 1px solid #E6E8E9;
    border-radius: 100px;
} */
.search input::placeholder {
    color: #0E78B8;
}
.search {
    position: relative;
}
/* .search svg{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
} */
.header .nav_link .search_outer form .search {
    width: 155px;
    height: 40px;
    color: #000;
    outline: none;
    background: #E6E8E9;
    border: none;
    border-radius: 100px;
    padding: 2px;
}
.search input {
    width: 104px;
    height: 36px;
    color: #000;
    outline: none;
    background: #fff;
    border: 1px solid #E6E8E9;
    border-radius: 100px 0px 0px 100px;
    padding: 8px 12px;
    margin-right: 12px;
}
.search svg {
    position: static;
    transform: none;
}

.header_bottom_strip {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E23529 0%, #FAAD1F 20.5%, #179549 50%, #168C76 78.5%, #157AB1 100%);

}
@media (max-width: 1024px) {
    .bar {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    /* Hamburger animation - YE BHI ADD KARO */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
	.menu-toggle {
		display: flex !important;
		flex-direction: column;
		cursor: pointer;
		background: none;
		border: none;
		padding: 10px;
	}
 .nav_link.active {
        display: block; /* YE BHI ADD KARO */
    }
	 .nav_link {
        display: none; /* YE ADD KARO - by default hide */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav_link ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        display: flex
;
    }

    .search_outer {
        margin-left: 0;
        display: none;
        margin-top: 10px;
    }
}
button.menu-toggle {
    display: none;
}
