body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #000000;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    margin-right: 10px;
    width: 110px;
    height: auto;
}

.slogan {
    margin: 0;
    font-size: 1em;
    color: #ccc; /* Adjust the color as needed */
}
.scrolling-text {
    padding: 10px;
    background-color: #f8f9fa; /* Background color for scrolling text */
    overflow: hidden; /* Hide overflow */
}

.scrolling-text marquee {
    font-size: 1em; /* Adjust font size as needed */
    color: #000000; /* Text color */
    white-space: nowrap; /* Prevent line breaks */
}

/* Navigation Links */
.navigation {
    background-color: #f9fafc;
    text-align: center;
    padding: 10px 0;
}

.navigation a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    padding: 6px 12px;
    background-color: #6495ED;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.navigation a:hover {
    background-color: #1e7e34;
}

/* Additional styling for better appearance */
.scrolling-text marquee:hover {
    animation-play-state: paused; /* Pause animation on hover */
}

h1 {
    margin-right: 20px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1em;
    margin-left: 20px;
    padding: 6px 5px;
    background-color: #218838;
    border-radius: 6px;
}

.contact-link:hover {
    background-color: #1e7e34;
}

.section-title {
    text-align: center;     /* Center the text */
    font-size: 2em;         /* Adjust the font size */
    margin: 20px 0;         /* Add some vertical margin */
    color: #333;            /* Set the text color */
    font-weight: bold;      /* Make the text bold */
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px; /* Reduced padding */
    text-align: center;
    margin: 5px; /* Reduced margin */
    background-color: white;
    flex: 1 0 31%; /* Adjusted flex basis */
    box-sizing: border-box;
    transition: transform 0.3s ease; /* Add transition effect */
}

.product:hover {
    transform: translateY(-5px); /* Move the box up on hover */
    background-color: #58c268; /* Change background color on hover */
}

.product img {
    width: 190px;
    height: 190px; /* Fixed height for all images */
    max-width: 100%; /* Ensure images don't exceed their container */
}

.product h2 {
    font-size: 1em;
    margin: 10px 0;
}

.product p {
    font-size: 1.3em;
    margin: 10px 0;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

.address-section {
    margin-top: 20px;
}

.address-section h2 {
    margin-top: 0;
}

.address-section p {
    margin: 5px 0;
}

.social-link {
    display: inline-block;
    margin-top: 10px;
}

.social-logo {
    width: 50px; /* Adjust the size as needed */
    height: auto;
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.social-link:hover .social-logo {
    transform: scale(1.1); /* Slightly increase the size on hover */
}

.map-container {
    width: 100%;
    padding: 0;
    margin: 0;
}













/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .product {
        flex: 1 0 48%; /* Two items per row on tablets */
    }

    .logo {
        width: 100px; /* Adjust the logo size for tablets */
    }

    .contact-link {
        font-size: 0.9em;
        padding: 5px;
    }

    .navigation {
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        margin: 10px 20px; /* Add margin between links */
        width: 100%; /* Make links full width */
    }


}

@media (max-width: 480px) {
    .product {
        flex: 1 0 40%; /* Two items per row on mobile */
        margin: 10px 0; 
    }

    .logo {
        width: 80px; /* Adjust the logo size for mobile */
    }

    header {
        padding: 10px 0;
    }

    .logo-container {
        flex-direction: column;
    }

    .logo-container h1 {
        margin-top: 10px;
    }

    .contact-link {
        margin-top: 10px;
    }

    .address-section p {
        width: 90%;
        max-width: 300px;
        margin: 5px auto; /* Center the address text on mobile */
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .navigation {
        flex-direction: column;
        align-items: center;
        display:block;
        padding: 10px 20px;
        
    }

    .navigation a {
        margin: 10px 20px; /* Increase the margin between links */
       
    }


}
