/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Desktop Header Styling */
.desktop-header {
    display: flex;
    align-items: center;
    border-top: 2px solid #00bfff;
    border-bottom: 2px solid #00bfff;
    background-color: #fff;
    padding: 0 150px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 10px 10px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin-right: 100px;
}

.desktop-nav {
    display: flex;
    gap: 0;
}

.desktop-nav a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 30px;
    transition: background-color 0.3s, color 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background-color: #00bfff;
    color: #fff;
}

/* Mobile Header Styling */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #00bfff;
    border-bottom: 3px solid #00bfff;
    background-color: #fff;
    padding: 10px;
}

.logo img {
    height: 40px;
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin: 0 10px;
}

.mobile-toggle {
    font-size: 18px;
    color: #00bfff;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #00bfff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: bottom 0.4s ease;
    z-index: 10;
}

.mobile-nav a {
    color: #00bfff;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-nav a:hover {
    background-color: #00bfff;
    color: #fff;
}

.mobile-nav.active {
    bottom: 0;
}

/* Lead Section */
.lead2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color: #333;
    color: #fff;
    position: relative;
}

.content {
    max-width: 50%;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #26b1bb;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1b9a9e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #2984ce;
}

/* Icons */
.icons {
    position: absolute;
    top: 20%;
    left: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon img {
    width: 80px;
    height: 100px;
}

/* Hero Image */
.hero-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.hero-image img {
    width: 350px;
    border-radius: 50%;
}

/* Stats */
.stats {
    position: absolute;
    bottom: 20px;
    left: 5%;
    display: flex;
    gap: 30px;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #80dfe2;
}

.stat-item p {
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lead2-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
    }

    .content, .stats {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
    }

    .icons {
        position: static;
        flex-direction: row;
        gap: 10px;
    }

    .stat-item {
        text-align: center;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ddd;
}

/* Package Section */
.package-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px;
    background-color: #2b2b2b;
    color: #fff;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 40%;
}

.package-card {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.package-card h3 {
    font-size: 1.2rem;
    color: #8bc34a; /* Primary color for titles */
    margin-bottom: 10px;
}

.package-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
}

.package-card a {
    color: #8bc34a;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.package-card:hover {
    background-color: #444;
}

.package-card a:hover {
    color: #6fa629;
}

/* Main Content */
.main-content {
    max-width: 50%;
}

.subtitle {
    font-size: 0.9rem;
    color: #8bc34a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .packages-list {
        max-width: 100%;
    }

    .main-content {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* Kits Section */
.kits-section {
    padding: 100px 0;
    text-align: center;
    background-color: #1a1a1a;
}

.kits-title {
    font-size: 1.8rem;
    color: #8bc34a;
    margin-bottom: 40px;
}

.kits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.kit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.kit-item img {
    width: 100%;
    max-width: 80px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.kit-item p {
    font-size: 1rem;
    color: #aaa;
}

.kit-item:hover {
    transform: scale(1.1);
    color: #8bc34a;
}

.kit-item:hover p {
    color: #8bc34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kits-grid {
        gap: 20px;
    }
    
    .kit-item {
        max-width: 100px;
    }
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* Show Section */
.show-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

.section-title {
    font-size: 1.8rem;
    color: #8bc34a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
}

/* Project Grid */
.projects-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #2b2b2b;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    text-align: left;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 1.2rem;
    color: #8bc34a;
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 15px;
}

.project-category {
    font-size: 0.8rem;
    color: #8bc34a;
    font-weight: bold;
}

/* All Projects Link */
.all-projects {
    margin-top: 40px;
    text-align: center;
}

.all-projects-link {
    font-size: 1rem;
    color: #8bc34a;
    text-decoration: none;
    font-weight: bold;
}

.all-projects-text {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .project-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

/* PZ Energy Section */
.pzenergy-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 50px;
    background-color: #111;
}

.pzenergy-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Content Styling */
.pzenergy-content {
    max-width: 600px;
}

.section-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pzenergy-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pzenergy-content p {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Contact Button Styling */
.contact-button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #111;
    background-color: #fff;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: #00bfff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pzenergy-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .pzenergy-image img {
        max-width: 100%;
    }

    .pzenergy-content h2 {
        font-size: 1.8rem;
    }

    .pzenergy-content p {
        font-size: 0.9rem;
    }

    .contact-button {
        width: 100%;
        max-width: 250px;
    }
}

