body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.signup-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.signup-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.signup-container form {
    display: flex;
    flex-direction: column;
}

.signup-container label {
    margin-bottom: 5px;
    font-weight: bold;
}

.signup-container input, 
.signup-container select {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.signup-container button {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.signup-container button:hover {
    background-color: #2980b9;
}

.signup-container a {
    color: #3498db;
}
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.login-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container label {
    margin-bottom: 5px;
    font-weight: bold;
}

.login-container input {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.login-container button {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #2980b9;
}

.login-container a {
    color: #3498db;
}
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Light background for a modern look */
    color: #333; /* Dark text for contrast */
}

header {
    width: 100%; /* Full width */
}

.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo and links */
    align-items: center;
    padding: 20px;
    height:208px;
    background-color: #ffffff; /* White background for navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; /* Sticky navbar */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it stays on top of other content */
}

.logo {
    flex-grow: 1; /* Allow logo to take remaining space */
    display: flex;
    justify-content: center; /* Center logo */
}

.logo img {
    height: 207px;
    width: 252px; /* Resize logo */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px; /* Increased spacing between menu items */
}

nav ul li a {
    color: #333; /* Dark color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s; /* Smooth transition effect */
}

nav ul li a:hover {
    color: #3498db; /* Change color on hover */
}

.intro {
    background-color: #ffffff; /* Light background for contrast */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.intro h1 {
    font-size: 2.5em; /* Large heading */
    color: #2c3e50; /* Dark text color */
    text-align: center; /* Centered heading */
}

.intro h2 {
    font-size: 2em; /* Subheading size */
    color: #2980b9; /* Bright color for subheading */
    margin-top: 20px; /* Space above subheading */
}

.intro p {
    font-size: 1.2em; /* Body text size */
    line-height: 1.6; /* Increased line height for readability */
    color: #34495e; /* Dark gray color for text */
    text-align: justify; /* Justified text for a clean look */
}

.about-us {
    padding: 40px;
    background-color: #ffffff; /* Light background for contrast */
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.reviews {
    padding: 20px;
    background-color: #ffffff; /* Light reviews section */
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-container {
    overflow: hidden; /* Ensure that content doesn't overflow */
    position: relative; /* Allow absolute positioning for scrolling */
    height: 150px; /* Increased height for better visibility */
}

.scrolling-reviews {
    display: flex; /* Use flex to allow horizontal alignment */
    position: absolute; /* Positioning for scrolling */
    animation: scroll 15s linear infinite; /* Infinite scrolling */
}

.scrolling-reviews.left-to-right {
    animation: scroll-left 25s linear infinite; /* Scroll from left to right */
}

.scrolling-reviews.right-to-left {
    animation: scroll-right 25s linear infinite; /* Scroll from right to left */
}

.review-box {
    min-width: 250px; /* Minimum width for each review box */
    min-height: 80px; /* Minimum height to hold text and stars */
    background-color: #e1f7d5; /* Light gray for review boxes */
    border: 1px solid #ddd; /* Border for review boxes */
    border-radius: 10px; /* Rounded corners */
    padding: 15px; /* Increased padding for more space */
    margin: 0 15px; /* Margin for spacing between boxes */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    transition: transform 0.3s; /* Smooth hover effect */
}

.review-box:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.stars {
    font-size: 20px; /* Increased font size for better visibility */
    color: #f39c12; /* Color for stars */
    margin-top: 5px; /* Space above stars */
}

/* Animation for scrolling */
@keyframes scroll {
    0% { transform: translateX(100%); } /* Start off-screen */
    100% { transform: translateX(-100%); } /* Move off-screen */
}

@keyframes scroll-left {
    0% { transform: translateX(100%); } /* Start off-screen */
    100% { transform: translateX(-100%); } /* Move off-screen */
}

@keyframes scroll-right {
    0% { transform: translateX(-100%); } /* Start off-screen */
    100% { transform: translateX(100%); } /* Move off-screen */
}




@keyframes scroll-left {
    from {
        transform: translateX(100%); /* Start from the right */
    }
    to {
        transform: translateX(-100%); /* Move to the left */
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-100%); /* Start from the left */
    }
    to {
        transform: translateX(100%); /* Move to the right */
    }
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
}

.footer-content p {
    margin: 0;
}
