body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 90%;
    margin: 0 auto;
}
header {
    background: #ffffff;
    color: #333;
    padding: 0.5rem 0;
}
header table {
    width: 100%;
}
header img {
    height: 80px;
}
nav {
    text-align: right;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
nav ul li {
    margin-left: 1rem;
}
nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}
nav ul li a:hover {
    color: #ff5733;
}
.hero {
    text-align: center;
    padding: 5rem 0;
    background-color: #ffffff; /* Added background color for hero section */
}
.hero img {
    width: 396px; /* Setting a fixed width */
    height: 163px; /* Setting a fixed height */
}
.hero p {
    font-size: 1.2rem;
    color: #333; /* Changing text color to dark */
    margin: 1rem auto; /* Centering the text */
    width: fit-content;
    text-shadow: 1px 1px 3px #ff5733; /* Adding subtle orange shadow */
}
.hero .btn {
    background: #ff5733;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}
.hero .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero .search-container input[type="text"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
    max-width: 300px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.hero .search-container button {
    background: #ff5733;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}
.hero .search-container button:hover {
    background: #e04e2b;
}
section {
    padding: 2rem 0;
    background: #fff;
    margin-bottom: 1rem;
}
.about {
    background: #ff5733;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.about h2 {
    margin-bottom: 1rem;
}
.about p {
    font-size: 1.2rem;
    line-height: 1.6;
}
.testimonials {
    background: #f4f4f4;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.testimonial-banner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}
.testimonial p {
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0.5rem 0;
}
.testimonial .emoji {
    font-size: 2rem;
}
.testimonial-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.testimonial-navigation span {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem 1rem;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
.social a {
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    header table {
        width: 100%;
    }
    header img {
        height: 80px;
    }
    nav {
        text-align: left;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul li {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .hero .search-container input[type="text"] {
        width: 100%;
    }
    .hero .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .hero .search-container button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}






