/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

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

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    text-decoration: none;
    color: rgb(82, 78, 78);
    font-size: 16px;
}

.logo img {
    height: 90px;
    width: 160px;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* Slider */
.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: 0.5s;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

/* Navigation Arrows */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



body {
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    margin-top: 20px;
}

.products {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}

.product {
    background-color: #3f51b5;
    color: white;
    padding: 20px;
    margin: 10px;
    width: 200px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product:hover {
    background-color: #5c6bc0;
}

#product-details {
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f1f1;
    display: none;
}

.details-hidden {
    display: none;
}


.details-hidden {
    display: none;
}

#about-us-details {
    margin-top: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.about-text {
    padding: 20px;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header.about-header {
    background: url('images/background-image.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(211, 253, 248);
    text-align: center;
}

header.about-header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-container {
    display: flex;
    margin: 20px;
    padding: 20px;
    background-color: rgb(190, 255, 252);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-info {
    flex: 2;
    padding-right: 20px;
}

.about-info h2 {
    color: #333;
    margin-bottom: 10px;
}

.about-info p {
    margin-bottom: 15px;
    color: #666;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-info ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about-info ul li {
    margin-bottom: 10px;
    color: #555;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #c2f8ec;
    color: #333;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #9aeaf8;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
}

.about-header {
    margin-bottom: 20px;
}

.about-header h1 {
    text-align: center;
    color: #333;
}

/* Form Container Styling */
.form-container {
    width: 80%;
    margin: 0 auto;
    background-color: #545857;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-title h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Flexbox to align form fields in two columns */
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-right: 10px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: none;
}

.form-group:last-child {
    margin-right: 0;
}

.submit-btn {
    background-color: #b1d7fa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 10%;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #262b2a;
}

/* Responsive Design: On smaller screens, stack the form fields vertically */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        margin-right: 0;
    }
}



/* Footer styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 40px;
}

/* Footer content layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Footer logo */
.footer-logo img {
    width: 150px; /* Adjust the size of the logo */
    height: 90px;
    margin-right: 10px;
}

/* Contact section */
.footer-contact {
    text-align: left;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
}

.footer-phone, .footer-whatsapp {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
}

/* Designer and copyright */
.footer-copyright {
    text-align: right;
    font-size: 12px;
}

/* For responsiveness */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 80px 100px;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 15px;
    }

    .footer-contact {
        margin-bottom: 20px;
    }
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}
.modal-content {
    background: white;
    padding: 20px;
    margin: 10% auto;
    width: 50%;
}


/* Hide product details by default */
.details-hidden {
    display: none;
}

/* Show details when active */
.product-detail {
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.product {
    cursor: pointer;
}


/* CSS for Product Details Image */
.product-image {
    max-width: 60%; /* Adjust the width to 60% of its container */
    height: auto;   /* Maintain the aspect ratio */
    display: block;
    margin: 20px auto; /* Center the image and add some space above and below */
    border-radius: 8px; /* Optional: add rounded corners for a softer look */
}



