* {
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
     background-color: rgb(221, 194, 194); 
}
.container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    background-color: #e2c5c5;
    padding: 10px 0;
    width: 100%;
    position: fixed; /* Make the navbar sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
}

.logo img {
    height: 50px;
    /* Adjust to control logo height */
    /* width: auto; */
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin: 0 15px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: white;
    /* font-weight: bold; */
    transition: color 0.3s;
}

.navbar nav ul li a:hover {
    color: #f0a500;
    /* Change color on hover */
}


.slides img {
    width: 100%; /* Full viewport width */
    height: 100%; /* Half viewport height */
    object-fit: fill; /* Cover the area */
     border-radius: 25px;
}




section {
    padding: 50px;
    text-align: center;
}

 /* video styling  */



.video-container {
    max-width: 800px;
    margin: 20px auto;
    align-items: center;
    text-align: center;
}

.video-container h1 {
    margin-bottom: 20px;
}

video {
    width: 100%;
    border-radius: 8px;
}

.description {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}


  /* new  product css  */

  .product-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.product {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 10px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #0071e3; /* Apple blue */
}

button {
    background-color: #0071e3; /* Apple blue */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005bb5; /* Darker blue */
}


/* About Section  */

.ceo-section {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #f4f4f4; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ceo-photo {
    margin-right: 20px; /* Space between photo and text */
}

.ceo-image {
    width: 150px; /* Set a fixed width for the image */
    height: 150px; /* Set a fixed height for the image */
    border-radius: 50%; /* Make the image circular */
    object-fit: cover; /* Ensure the image covers the area */
}

.ceo-info {
    flex: 1; /* Allow the text to take the remaining space */
}

.ceo-info h2 {
    margin: 0; /* Remove default margin */
    font-size: 24px; /* Adjust font size */
}

.ceo-info h3 {
    margin: 5px 0; /* Space below the title */
    font-size: 18px; /* Adjust font size */
    color: #555; /* Darker color for the title */
}

.ceo-info p {
    line-height: 1.6; /* Improve readability */
    color: #333; /* Darker color for the paragraph */
}



/* Contact section  */

.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.contact-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #007BFF; /* Change color as needed */
}

.contact-item span {
    font-size: 18px;
}

.contact-item a {
    color: #007BFF;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.qr-code {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-left: 10px;
}


/* foooter section  */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h2 {
    margin-bottom: 10px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0071e3; /* Apple blue */
}

.footer-bottom {
    background-color: #9c8383;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
}

/* new contract us  */

.contact-us {
    max-width: 400px;
    margin: 0 auto;
}

.contact-us h2 {
    margin-bottom: 10px;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us input,
.contact-us textarea {
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.contact-us input::placeholder,
.contact-us textarea::placeholder {
    color: #666;
}

.contact-us button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.contact-us button:hover {
    background-color: #ff8800;
}

#form-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ffcc00;
}