body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
}

.logo img {
    height: 50px;
}

.nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 5px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
}

.search-bar button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    background-color: #ff9900;
    color: white;
    cursor: pointer;
}

.user-options {
    display: flex;
    align-items: center;
}

.user-options .cart,
.user-options .user-account {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

.user-options .cart img,
.user-options .user-account img {
    height: 30px;
    margin-right: 5px;
}
.user-options .cart img:hover,
.user-options .user-account img:hover{
    transform: scale(1.1);
}

.user-options .cart-count {
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
}

.hero {
    background: url('back.png') no-repeat center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
   
   
}

.hero-content h1 {
    font-size: 48px;
   margin-top: -5px;
}

.hero-content p {
    font-size: 24px;
    margin: 10px 0;
}
.logo img:hover{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.contact-info {
    padding: 40px 20px;
    text-align: center;
    margin-top: -10%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-form {
    padding: 40px 20px;
    text-align: center;
   background-color: #000000;
   color: whitesmoke;
   width:500px;
   margin-left: 33%;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #cc7a00;
}

.map {
    padding: 40px 20px;
    text-align: center;
}

.map h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.map #map {
    height: 400px;
    width: 100%;
}

.faqs {
    padding: 40px 20px;
    text-align: center;
}

.faqs h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.social-media {
    padding: 40px 20px;
    text-align: center;
}

.social-media h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 50px;
    height: 50px;
}
footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ff9900;
}

.contact-info p {
    margin: 5px 0;
}

.footer-newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer-newsletter button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.footer-newsletter button:hover {
    background-color: #cc7a00;
}
