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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.nav-container {
    background-color: #333;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}



/* Main navigation */
.nav {
    max-width: 1200px;
    margin: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation header (Logo/title) */
.nav-header .nav-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding-left: 20px;
}

/* Navigation links */
.nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Links style */
.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-links a:hover {
    background-color: #575757;
    color: #f1f1f1;
}

/* For mobile menu button */
.nav-btn {
    display: none;
}

/* Responsive Design for mobile */
@media (max-width: 768px) {
    .nav-header {
        flex-grow: 1;
    }

    /* Menu button visible on mobile */
    .nav-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 18px;
    }

    .nav-btn label {
        cursor: pointer;
    }

    .nav-btn span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background-color: #fff;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
    }

    /* Hiding links initially on mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    /* Show links when checkbox is checked */
    #nav-check:checked + .nav-btn + .nav-links {
        display: flex;
    }
}


/* login/registration form */

.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

/* Login container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

/* Login form */
.login-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.login-form h3 {
    font-weight: 600;
    color: #333;
}

/* Form input styling */
.login-form form .form-group {
    margin-bottom: 20px;
}

.login-form .btn {
    font-size: 16px;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.login-form .btn:hover {
    background-color: #0056b3;
}

/* Text center alignment */
.login-form .text-center {
    margin-top: 20px;
}

.login-form .text-center p {
    font-size: 14px;
    color: #666;
}



a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.hero-section {
    background-color: #f9f9f9;
    color: #333;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.about-us-section, 
.products-services-section, 
.testimonials-section, 
.locate-us-section {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 50px 30px;
}

.about-us-section h2, 
.products-services-section h2, 
.testimonials-section h2, 
.locate-us-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

h2:after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #007bff;
    display: block;
    margin: 10px auto;
}

.about-us-section p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-item {
    background-color: #f1f1f1;
    padding: 30px;
    width: 30%;
    margin: 15px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.product-item p {
    font-size: 1.1em;
    color: #555;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 1.1em;
    color: #333;
    font-weight: 700;
}

.locate-us-section .location-details {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    margin-bottom: 0;
    font-size: 1em;
}
