/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f7f8;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: white;
    text-align: center;
    padding: 10px 0; /* Reduced padding to make header more compact */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Center Language Selector */
.language-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9em;
    color: #5b9e40;
    margin-bottom: 5px; /* Reduced margin */
}

/* Language Link Styling */
.language-selector .language-link {
    color: #5b9e40;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.language-selector .language-link:hover {
    background-color: #e8f5e9;
    color: #3e7a2e;
}

/* Center Logo Styling */
header img {
    max-height: 280px; /* Doubled logo size */
    width: auto;
    margin: 5px 0; /* Reduce extra spacing */
}

/* Navigation Menu */
header nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 5px; /* Closer to the logo */
}

header nav a {
    color: #5b9e40;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

header nav a:hover {
    color: #fff;
    background-color: #5b9e40;
}

/* Hero Section Styling */
.hero {
    text-align: center;
    padding: 30px 0;
    background-color: #edf4e1;
}

.hero h1 {
    font-size: 2.5em;
    color: #5b9e40;
}

.hero p {
    color: #555;
    font-size: 1.2em;
}

.cta-button {
    color: white;
    background-color: #5b9e40;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #4a8033;
}

/* Process and Form Sections */
.process-form-canvas {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    gap: 20px;
}

.left, .right {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 48%;
}

h2 {
    color: #5b9e40;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.left p, .right p {
    color: #333;
}

.left strong, .right strong {
    color: #3e7a2e;
}

/* Form Styles */
form input[type="text"],
form input[type="email"],
form input[type="file"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

form input[type="submit"] {
    width: 100%;
    background-color: #5b9e40;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #4a8033;
}

/* 3D Viewer Styling */
#viewer {
    width: 100%;
    max-width: 100%;
    height: 400px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #edf4e1;
    color: #555;
    font-size: 0.9em;
    margin-top: 40px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #5b9e40;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #4a8033;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .process-form-canvas {
        flex-direction: column;
        align-items: center;
    }

    .left, .right {
        width: 90%;
    }

    header nav {
        flex-direction: column;
        gap: 15px;
    }

    #viewer {
        height: 300px;
    }
}

/* Product Section */
.product-section {
    text-align: center;
    padding: 40px 0;
    background-color: #f5f7f8;
}

.product-section h2 {
    font-size: 2.2em;
    color: #5b9e40;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.5em;
    color: #5b9e40;
    margin: 10px 0;
}

.product-item p {
    color: #333;
    font-size: 1em;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #5b9e40;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #4a8033;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}
/* Process Section Styling */
.process-overview, .details {
    text-align: center;
    padding: 40px 0;
    background-color: #f5f7f8;
}

.process-overview h2, .details h2 {
    font-size: 2.2em;
    color: #5b9e40;
    margin-bottom: 20px;
}

.process-overview p, .details p {
    color: #333;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px;
}

.process-overview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Detailed Process Flow Styling */
.details .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.details h3 {
    font-size: 1.8em;
    color: #5b9e40;
    margin-top: 20px;
}

.details ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.details ul li {
    margin: 10px 0;
}

.details ul li strong {
    color: #3e7a2e;
    font-weight: bold;
}

.details ul li span {
    color: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #edf4e1;
    color: #555;
    font-size: 0.9em;
    margin-top: 40px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .details .container {
        text-align: center;
    }

    .details ul {
        text-align: left;
        padding: 0;
    }
}
/* About Us Section */
.about-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f7f8;
}

.about-section h2 {
    font-size: 2.2em;
    color: #5b9e40;
    margin-bottom: 20px;
}

.about-section p {
    color: #333;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6em;
}

/* Emphasize strong text */
.about-section strong {
    color: #5b9e40;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #5b9e40;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #4a8033;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-section p {
        font-size: 1em;
        max-width: 90%;
    }
}
/* Contact Section Styling */
.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f7f8;
}

.contact-section h2 {
    font-size: 2.2em;
    color: #5b9e40;
    margin-bottom: 20px;
}

.contact-section p {
    color: #333;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form input[type="submit"] {
    background-color: #5b9e40;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #4a8033;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #5b9e40;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #4a8033;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-section p {
        font-size: 1em;
        max-width: 90%;
    }
}
