
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #0a0a0a;
    padding: 1rem 0;
    border-bottom: 2px solid #007bff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px; /* Adjusted for better inline appearance */
    margin-right: 10px;
    vertical-align: middle; /* Align with text */
}

header .logo h1 {
    color: #007bff;
    margin: 0;
    font-size: 1.8rem;
    display: inline-block; /* Make h1 inline with image */
    vertical-align: middle; /* Align with image */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #0056b3;
}

/* Section Styles */
.section {
    padding: 50px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 30px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-item, .service-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

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

.product-item h3, .service-item h3 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-item p, .service-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* About Page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.about-content .text-block {
    flex: 1;
    min-width: 300px;
}

.about-content img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-info, .contact-form {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: left;
}

.contact-info h3, .contact-form h3 {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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

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

.contact-form label {
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #f0f0f0;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.map-container {
    margin-top: 30px;
    height: 400px;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: #f0f0f0;
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid #007bff;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px; /* Limit width for better alignment */
    margin: 0 auto; /* Center the container */
}

footer .logo img {
    height: 50px;
    margin-bottom: 10px;
}

footer h4 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.nowrap {
    white-space: nowrap;
}

/* Multi-column Footer */
.footer-grid {
    display: flex; /* Use flexbox for single row alignment */
    justify-content: space-around; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Reduced gap for single row */
    text-align: left;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column; /* Stack columns on small screens */
        align-items: center;
        text-align: center;
    }
}

.footer-column h5 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #f0f0f0;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

