 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding-top: 10rem; /* Space for fixed header */
}

.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
}

header {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 2rem; /* Below the top bar */
    left: 0;
    z-index: 1000;
}

header .logo {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: flex;
    flex-direction: column;
    align-items: left;
    line-height: 1; /* Adjust this to decrease space between lines */
    margin-left: 10px
}

header .logo span {
    display: block;
    line-height: 1; 
    margin: -0.2rem 0; 
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: left;
    gap: 2rem;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.search-login {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 20px;
}

.search-login input[type="text"] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-login a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 2.5rem;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    vertical-align:auto;

}
   

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.carousel-text h1 {
    font-size: 2.5rem;
}

.carousel-text p {
    font-size: 1rem;
    margin: 1rem 0;
}

.carousel-text button {
    background-color: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

header .logo a {
    text-decoration: none;
    color: inherit; /* Ensures the link inherits the color of its parent */
}