* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 1. Reset HTML globally and lock horizontal scroll */
html {
    scroll-behavior: smooth;
}
 
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
   
	/* From your Header.css */
	background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(6, 5, 82, 1) 7%, rgba(9, 9, 121, 1) 21%, rgba(4, 130, 201, 1) 56%, rgba(0, 212, 255, 1) 89%) !important;

    color: #ffffff !important;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white!important;
	/* remove */
    /* backdrop-filter: blur(20px); */
    padding: 15px 0;
    z-index: 1040 !important; 
}
/* Ensure the collapsed menu has a background so content doesn't bleed through */
@media (max-width: 991px) {
	.navbar {
        backdrop-filter: none !important; /* Removes the heavy rendering on mobile */
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-right: 0 !important;
    }
}

#logo {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.navbar-collapse {
	margin-right: 40px;
}

.navbar-nav .nav-link {
	font-weight: 500;
	color: #5d636e !important;
	padding: 12px 20px !important;
	border-radius: 12px;
	transition: all 0.3s ease;
	font-size: 0.98rem;
	margin-right: 15px;
	white-space: nowrap;
}

.navbar-nav .nav-link:hover {
	color: #ffffff !important;
	background: #2563eb;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(69, 117, 219, 0.4);
}

.search-container {
	position: relative;
}

.search-input-wrapper {
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	/* backdrop-filter: blur(10px); */
	border: 1px solid rgba(37, 99, 235, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	max-width: 280px;
}

.search-input-wrapper:hover,
.search-input-wrapper:focus-within {
	box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateY(-2px);
}

.search-input {
	border: none !important;
	background: rgba(255, 255, 255, 0.95) !important;
	color: #1e293b !important;
	font-weight: 500;
	padding: 12px 20px !important;
	font-size: 0.95rem;
	outline: none;
}

.search-input::placeholder {
	color: #94a3b8 !important;
	font-weight: 400;
}

.search-icon {
	background: linear-gradient(135deg, #2563eb, #4675db) !important;
	border: none !important;
	color: white !important;
	padding: 12px 16px !important;
	transition: all 0.3s ease;
	cursor: pointer;
}

.search-icon:hover {
	background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
	transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
	.search-container {
		margin-top: 1rem;
		width: 100%;
	}
	.search-input-wrapper {
		margin: 15px 0;
		max-width: 100% !important;
	}
	.navbar-nav {
		text-align: center;
	}
	.navbar-brand {
		max-width: 70%;
	}
}
/* Speeds up the mobile menu opening/closing animation */
.collapsing {
    transition: height 0.15s ease-out !important; 
}