/* aboutus.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #34331C;
    line-height: 1.6;
}

header {
    background-color: #FFFFFF;
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
}

.logo, .footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .logo-image, .footer-logo-image {
        height: 30px;
    }
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #34331C;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    margin: 0; /* Remove default margin */
}

.nav-links a {
    text-decoration: none;
    color: #34331C;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Navbar Styles */
.nav-links a.active {
    background-color: #21871E;
    color: #FFFFFF;
}

.nav-links a:hover {
    color: #FFFFFF;
    background-color: #21871E;
}

.apply-btn {
    background-color: #21871E;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.apply-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.hero, .journey, .team, .experience, .impact, .trusted-by, .awards, .cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    color: #34331C;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero {
    position: relative;
    background: url('path/to/hero-image.jpg') no-repeat center center/cover;
    color: #FFFFFF;
    text-align: left;
    padding: 80px 20px;
    height: 400px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #34331C;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    color: #34331C;
    margin-bottom: 20px;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn.primary {
    background-color: #34331C;
    color: #FFFFFF;
    border: none;
}

.hero-btn.primary:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.hero-btn.secondary {
    background-color: #FFFFFF;
    color: #34331C;
    border: 1px solid #34331C;
}

.hero-btn.secondary:hover {
    background-color: #F5F5F5;
    transform: scale(1.05);
}

.partnership {
    background-color: white;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.partnership-content {
    flex: 1;
    text-align: left;
}

.partnership-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partnership-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #34331C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partnership-btn {
    background-color: #21871E;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.partnership-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.partnership-image {
    flex: 1;
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    overflow: hidden;
}

.partnership-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .partnership {
        flex-direction: column;
        padding: 40px 20px;
    }

    .partnership-content h2 {
        font-size: 28px;
    }

    .partnership-content p {
        font-size: 16px;
    }

    .partnership-image {
        padding-bottom: 100%;
    }

}

.journey {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.journey h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    color: #34331C;
    margin-bottom: 20px;
}

.journey p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 30px;
}

.journey-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.journey-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.journey-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.journey-image {
    width: 100%;
    height: 400px;
    background-color: #E0E0E0; /* Fallback color if image fails to load */
    margin: 20px 0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

/* If using <img> tag instead of background-image, uncomment this */
/*
.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
*/

.experience {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.experience-image {
    width: 100%;
    height: 400px;
    background-color: #E0E0E0;
    margin: 20px 0;
    background-size: cover;
    background-position: center;
}

.experience-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    font-family: 'Syne', sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.experience-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

/* Updated Power Quality Section */
.power-quality {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.power-quality-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.power-quality-text {
    flex: 1;
    text-align: left;
}

.power-quality h2 {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #34331C;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.power-quality h3 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    color: #21871E;
    margin: 30px 0 15px;
}

.intro-text, .closing-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #34331C;
    margin-bottom: 20px;
    line-height: 1.5;
}

.power-quality-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.power-quality-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #21871E;
    border-radius: 50%;
    margin-right: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('path/to/icon-sprite.svg') no-repeat; /* Replace with actual sprite or individual SVGs */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-icon[data-feature="protection"]::after { background-position: 0 0; }
.feature-icon[data-feature="uptime"]::after { background-position: -20px 0; }
.feature-icon[data-feature="efficiency"]::after { background-position: 0 -20px; }
.feature-icon[data-feature="safety"]::after { background-position: -20px -20px; }

.feature-icon:hover {
    transform: scale(1.2);
    background: #065401;
}

.feature-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #34331C;
    display: block;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #34331C;
    margin: 0;
}

.power-quality-btn {
    background: #34331C;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.power-quality-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(33, 135, 30, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.power-quality-btn:hover::before {
    width: 200px;
    height: 200px;
}

.power-quality-btn:hover {
    transform: scale(1.05) translateY(-2px);
}

.power-quality-visual {
    flex: 1;
    display: none; /* Hidden on mobile by default */
    position: relative;
    cursor: pointer; /* Indicates interactivity */
}

.power-wave {
    width: 100%;
    height: 200px;
}

.wave-1 {
    animation: wave1 4s infinite ease-in-out;
}

.wave-2 {
    animation: wave2 5s infinite ease-in-out;
}

.power-node {
    transition: cy 0.2s ease; /* Smooth vertical movement */
    animation: pulse 2s infinite ease-in-out;
}

.power-quality-visual:hover .power-node {
    transform: scale(1.3); /* Retains hover scaling */
}

@keyframes wave1 {
    0%, 100% { d: path("M0,50 Q50,20 100,50 T200,50"); }
    50% { d: path("M0,50 Q50,80 100,50 T200,50"); }
}

@keyframes wave2 {
    0%, 100% { d: path("M0,60 Q50,30 100,60 T200,60"); }
    50% { d: path("M0,60 Q50,90 100,60 T200,60"); }
}

@keyframes pulse {
    0%, 100% { r: 5; opacity: 1; }
    50% { r: 8; opacity: 0.7; }
}

/* Updated Impact Section */
.impact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.impact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.impact-text {
    flex: 1;
    text-align: left;
}

.impact-subheading {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: #21871E;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.impact h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    color: #34331C;
    margin-bottom: 20px;
}

.impact p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 30px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.impact-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    color: #21871E;
    margin-bottom: 10px;
}

.impact-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #34331C;
}

.impact-buttons {
    display: flex;
    gap: 15px;
}

.impact-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.impact-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.impact-image-wrapper {
    flex: 1; /* Matches flex layout of other sections */
    width: 100%;
    max-width: 100%; /* Ensures it doesn’t exceed container */
    overflow: hidden; /* Prevents overflow issues */
}

.impact-image {
    width: 100%; /* Scales to container width */
    height: auto; /* Maintains aspect ratio */
    max-width: 1200px; /* Caps at site’s max-width */
    display: block; /* Removes inline spacing */
    border-radius: 5px; /* Consistent with other images */
}

/* Updated Team Section */
.team {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
}

.team h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 20px;
}

.team p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #34331C;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.team-card {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px; /* Caps card width */
}

.team-card:hover {
    transform: scale(1.05);
}

.team-image {
    width: 100%;
    height: auto;
    max-width: 200px; /* Limits image size */
    max-height: 200px; /* Ensures square fit */
    border-radius: 50%; /* Circular style, remove if square is preferred */
    margin: 0 auto 15px;
    display: block;
    object-fit: contain; /* Prevents cropping for square images */
}

.team-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #34331C;
    margin-bottom: 5px;
}

.team-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #34331C;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #21871E;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #065401;
}

.team-btn {
    background-color: #21871E;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.team-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures it’s above other content */
}

.modal.active {
    display: flex; /* Shown when active */
}

.modal-content {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 20px;
}

/* Loader Styles */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Space between dots */
    height: 20px; /* Fixed height for alignment */
    margin: 0 auto;
}

.loader span {
    width: 10px;
    height: 10px;
    background-color: #21871E; /* Your green color */
    border-radius: 50%; /* Circular dots */
    display: inline-block;
    animation: typing 1.2s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s; /* Staggered timing */
}

.loader span:nth-child(3) {
    animation-delay: 0.4s; /* Staggered timing */
}

@keyframes typing {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-5px); /* Moves up slightly */
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .team h2 {
        font-size: 28px;
    }

    .team p {
        font-size: 16px;
    }

    .team-card {
        max-width: 100%;
    }

    .team-image {
        max-width: 150px; /* Smaller on mobile */
        max-height: 150px;
    }

    .modal-content {
        padding: 15px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .loader {
        width: 30px;
        height: 30px;
    }

    .loader span {
        width: 8px;
        height: 8px;
    }
}

.team-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.team-btn:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.trusted-by {
    background-color: #FFFFFF;
    color: #34331C;
    padding: 40px 20px;
}

.trusted-by h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    color: #34331C;
    margin-bottom: 20px;
}

.trusted-grid-wrapper {
    overflow: hidden; /* Hide overflowing logos for the carousel effect */
}

.trusted-grid {
    display: flex;
    white-space: nowrap; /* Prevent wrapping */
    will-change: transform; /* Optimize for animation performance */
}

.trusted-logo {
    flex-shrink: 0; /* Prevent logos from shrinking */
    width: 120px; /* Adjusted width to fit logos */
    height: 60px; /* Adjusted height to fit logos */
    margin-right: 30px; /* Use margin-right for consistent gap */
    display: inline-flex; /* Use inline-flex to align logos in a row */
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Indicate the logo is clickable */
}

.trusted-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure logos fit without distortion */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.trusted-logo:hover img {
    transform: scale(1.1); /* Slight zoom on hover for visual feedback */
}

.awards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.awards-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.awards-text {
    max-width: 50%;
}

.awards-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    color: #34331C;
    margin-bottom: 20px;
}

.awards-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 30px;
}

.awards-buttons {
    display: flex;
    gap: 15px;
}

.awards-btn {
    background-color: #FFFFFF;
    color: #34331C;
    border: 1px solid #34331C;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.awards-btn:hover {
    background-color: #F5F5F5;
    transform: scale(1.05);
}

.awards-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1; /* Flexible growth within flex container */
    min-width: 300px; /* Minimum width to prevent collapse */
}

.award-image {
    background-color: #E0E0E0; /* Fallback color */
    height: 150px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.award-image-1 {
    background-image: url('../image/hero1.png'); /* Adjust path as needed */
}
.award-image-2 {
    background-image: url('../image/hero2.png');
}
.award-image-3 {
    background-image: url('../image/hero3.png');
}
.award-image-4 {
    background-image: url('../image/hero4.png');
}

.cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #FFFFFF;
}

.cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    color: #34331C;
    margin-bottom: 20px;
}

.cta p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #34331C;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
}

.cta-btn.primary {
    background-color: #34331C;
    color: #FFFFFF;
    border: none;
    text-decoration: none; /* Removes underline */
    display: inline-block; /* Ensures padding works like a button */
}

.cta-btn.primary:hover {
    background-color: #065401;
    transform: scale(1.05);
}

.cta-btn.secondary {
    background-color: #FFFFFF;
    color: #34331C;
    border: 1px solid #34331C;
}

.cta-btn.secondary:hover {
    background-color: #F5F5F5;
    transform: scale(1.05);
}

footer {
    background-color: #FFFFFF;
    color: #34331C;
    width: 100%;
    padding: 40px 0;
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #34331C;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #21871E;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.subscribe-btn {
    background-color: #044201;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #065401;
}

.privacy-text {
    font-size: 12px;
    color: #34331C;
}

.privacy-text a {
    color: #21871E;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.bottom-left {
    display: flex;
    gap: 15px;
}

.bottom-left a {
    color: #34331C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-left a:hover {
    color: #21871E;
}

.bottom-right {
    color: #34331C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #E0E0E0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .apply-btn {
        width: 100%;
        margin-top: 10px;
        padding: 10px 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    .hero {
        padding: 60px 20px;
        height: 300px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    .journey h2 {
        font-size: 24px;
    }

    .journey p {
        font-size: 14px;
    }

    .journey-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .journey-btn {
        width: 100%;
    }

    .journey-image {
        height: 200px;
    }

    /* Power Quality Responsive */
    .power-quality-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .power-quality h2 {
        font-size: 32px;
    }

    .power-quality h3 {
        font-size: 20px;
    }

    .intro-text, .closing-text {
        font-size: 16px;
    }

    .power-quality-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .power-quality-btn {
        width: 100%;
        padding: 10px;
    }

    .power-quality-visual {
        display: none; /* Remains hidden on mobile */
    }

    /* Impact Responsive */
    .impact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .impact-text {
        margin-bottom: 30px;
    }

    .impact h2 {
        font-size: 24px;
    }

    .impact p,
    .impact-card p {
        font-size: 14px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-buttons {
        flex-direction: column;
    }

    .impact-btn {
        width: 100%;
    }

    .impact-image-wrapper {
        width: 100%;
    }

    .impact-image {
        max-width: 100%; /* Full width on mobile */
    }

    .trusted-logo {
        width: 100px;
        height: 50px;
        margin-right: 20px;
    }

    .awards-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .awards-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .awards-images {
        grid-template-columns: repeat(2, 1fr);
        width: 100%; /* Full width on mobile */
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }

    .bottom-left, .bottom-right {
        text-align: left;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 70px 20px;
        height: 350px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .journey h2 {
        font-size: 28px;
    }

    .journey-image {
        height: 300px;
    }

    /* Power Quality Responsive */
    .power-quality h2 {
        font-size: 40px;
    }

    .power-quality-visual {
        display: block;
    }

    /* Impact Responsive */
    .impact h2 {
        font-size: 28px;
    }

    .impact-image-wrapper {
        max-width: 350px;
    }

    /* Team Responsive */
    .team h2 {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-logo {
        width: 100px;
        height: 50px;
        margin-right: 25px;
    }

    .awards-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .awards-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-left {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }
}

/* Additional Power Quality Responsive */
@media screen and (min-width: 769px) {
    .power-quality-visual {
        display: block;
    }
}