@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    height: 100%;
    background-color: #f8f9fa;
    color: #343a40;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header img {
    max-width: 180px;
}

/* Navigation */
nav {
    background-color: #343a40;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    margin: 0 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

.intro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/background.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
}

.intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Featured Services & Products */
.featured-services, .featured-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service, .product {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    max-width: 320px;
    flex: 1 1 320px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}


.service i {
    margin-bottom: 20px;
    color: #007bff;
}


/* Contact */
.contact {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    align-self: center;
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1 1 220px;
    text-align: left;
}

.footer-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.footer-section a {
    color: #adb5bd;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 30px;
    margin-top: 30px;
}