﻿:root {
    --primary-color: #28a745;
    --secondary-color: #f8f9fa;
    --dark-color: #343a40;
    --light-gray: #e9ecef;
    --text-color: #555;
    --font-family: 'Poppins', sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    font-weight: 700;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .section-heading h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

    .btn-primary:hover {
        background-color: #218838;
    }

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--light-gray);
    margin-left: 15px;
}

    .btn-secondary:hover {
        background-color: var(--light-gray);
    }

/* Header & Navigation */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;

}
.logo .logo-img {
    height: 60px; /* Adjust this value as needed to fit the design */
}
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

    .logo-text .sub-text {
        display: block;
        font-size: 0.8rem;
        font-weight: 400;
        color: var(--text-color);
        margin-top: -5px;
    }

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

    .nav-menu a::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: var(--primary-color);
        transition: width 0.3s;
        position: absolute;
        bottom: -8px;
        left: 0;
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }

.social-icons a {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: var(--primary-color);
    }

.hamburger-menu {
    display: none;
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background-color: #f4f6f9;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        opacity: 0.2;
        pointer-events: none;
    }

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

    .hero-content .text-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--text-color);
        margin-bottom: 40px;
    }

    .hero-content .visual-content {
        flex: 1;
        text-align: right;
    }

        .hero-content .visual-content img {
            max-width: 100%;
            height: auto;
        }

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

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

.product-card {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: scale(1.03);
    }

    .product-card i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .product-card h3 {
        margin-bottom: 10px;
    }

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

    .contact-info li i {
        color: var(--primary-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        order: 3;
    }

        .nav-menu.active {
            display: block;
        }

        .nav-menu ul {
            flex-direction: column;
            text-align: center;
            margin-top: 20px;
        }

        .nav-menu li {
            margin-bottom: 15px;
        }

    .social-icons {
        margin-left: auto;
        margin-right: 15px;
    }

    .hamburger-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-color);
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

        .hero-content .text-content,
        .hero-content .visual-content {
            flex: none;
            width: 100%;
        }

    .cta-buttons {
        display: flex;
        justify-content: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}
