body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    
}

header {
	background-color: #f4f4f4;
    padding: 10px;
    
}

footer {
    background-color: #333;
    color: white;
    padding: 3px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Navbar Styling  */
.navbar-container {
 	display: flex;
	justify-content: space-between;
	align-items: center;	
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 15px;
}

.nav-links {
	margin-right: 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	padding: 10px 15px; 
	border-radius: 5px; 
	transition: background-color 0.3s, color 0.3s; 
}

/* nav ul li a.active{ 
	background-color: white;
	color: #333;
} */

/* nav ul li a:hover { 
	background-color: white;
	color: #333;
} */


.brand {
    font-family: Futura;
    font-size: 24px;
    margin-left: 20px; 
    padding-right: 20px; 
    color: #f4f4f4;
    display: flex; 
    align-items: center; 
}
.brand img {
	height: 50px; 
	width: auto; 
	cursor: pointer; 
	vertical-align: middle; 
}

hr{
	width:60%;text-align:center;margin:center
}

/* Search bar */
.search-container {
            position: relative;
            width: 300px;
            margin-left:auto;
        }

        .search-input {
            width: 85%;
            padding: 12px 20px;
            border: none;
            border-radius: 30px; /* Curved shape */
            font-size: 16px;
            outline: none;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        .search-button {
            position: absolute;
            right:10px;
            top: 55%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: #555;
        }