/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
    background-color: #f8fdf8;
    color: #222;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: 0.3s ease-in-out;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #008c4a;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #008c4a;
    border-bottom: 2px solid #008c4a;
    padding-bottom: 3px;
}

/* Call To Action Button */
.cta-btn {
    padding: 10px 18px;
    background-color: #008c4a;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: #006f39;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #008c4a;
    transition: 0.3s;
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("https://images.pexels.com/photos/885350/pexels-photo-885350.jpeg") no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 20px;
}

/* Overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 20, 0.55); /* green transparent overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-content h1 span {
    color: #00d26a; /* green highlight */
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    color: #f0f0f0;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.primary-btn {
    background-color: #00b85c;
    color: #fff;
}

.primary-btn:hover {
    background-color: #00994d;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.secondary-btn:hover {
    background: #fff;
    color: #008c4a;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
/* About Us Section */
.about {
    padding: 80px 10%;
    background-color: #f8fff8; /* Light green background */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Image Styling */
.about-img img {
    width: 500px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* Right Content Styling */
.about-content {
    flex: 1;
    max-width: 550px;
    animation: fadeIn 1.5s ease-in-out;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.about-content h2 span {
    color: #00b85c; /* Green Highlight */
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Stats Section */
.about-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat {
    background: #fff;
    padding: 15px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 1.8rem;
    color: #00b85c;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
}

/* Button Styling */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #00b85c;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background-color: #00994d;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img img {
        width: 90%;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* Our Services Section */
.services {
    padding: 80px 10%;
    background-color: #f8fff8; /* Light green background */
    text-align: center;
}

/* Section Title */
.services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.services-container h2 span {
    color: #00b85c; /* Green Highlight */
}

.services-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Service Card Styling */
.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 184, 92, 0.2);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-container h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px 15px;
    }
}
/* Green Energy Sources Section */
.energy {
    padding: 80px 10%;
    background-color: #f8fff8;
    text-align: center;
}

/* Section Title */
.energy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.energy-container h2 span {
    color: #00b85c; /* Eco Green */
}

.energy-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Energy Grid */
.energy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Energy Card */
.energy-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Image Styling */
.energy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.4s ease-in-out;
}

/* Card Title */
.energy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

/* Card Description */
.energy-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hover Effects */
.energy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 184, 92, 0.25);
}

.energy-card:hover img {
    transform: scale(1.08);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .energy-container h2 {
        font-size: 2rem;
    }

    .energy-card img {
        height: 160px;
    }
}
/* Schemes Section */
.schemes {
    padding: 80px 10%;
    background-color: #f8fff8;
    text-align: center;
}

/* Section Title */
.schemes-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.schemes-container h2 span {
    color: #00b85c;
}

.schemes-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Schemes Grid */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Scheme Card */
.scheme-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.scheme-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.scheme-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.scheme-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Learn More Button */
.scheme-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #00b85c;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.scheme-btn:hover {
    background-color: #00994d;
}

/* Hover Effects */
.scheme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 184, 92, 0.25);
}

.scheme-card:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .schemes-container h2 {
        font-size: 2rem;
    }

    .scheme-card {
        padding: 20px 15px;
    }
}
/* Featured Projects Section */
.featured-projects {
    padding: 80px 10%;
    background-color: #f8fff8;
    text-align: center;
}

/* Section Title */
.projects-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.projects-container h2 span {
    color: #00b85c;
}

.projects-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
    background: #fff;
}

/* Project Image */
.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* Hover Effect */
.project-card:hover img {
    transform: scale(1.1);
}

/* Project Content Overlay */
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 184, 92, 0.85);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    text-align: left;
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.project-content p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* View Project Button */
.project-btn {
    display: inline-block;
    padding: 8px 14px;
    background-color: #fff;
    color: #00b85c;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.project-btn:hover {
    background-color: #00b85c;
    color: #fff;
}

/* Hover Animation for Card */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 184, 92, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .projects-container h2 {
        font-size: 2rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }
}
/* Advantages & Disadvantages Section */
.advantages-disadvantages {
    padding: 80px 10%;
    background-color: #f7fff9;
    text-align: center;
}

/* Section Title */
.advantages-disadvantages h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.advantages-disadvantages h2 span {
    color: #00b85c;
}

.subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Grid Layout */
.adv-dis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Advantages & Disadvantages Cards */
.adv-card,
.dis-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    text-align: left;
}

/* Advantages Card Style */
.adv-card {
    background: #e6fff2;
    border-top: 6px solid #00b85c;
}

/* Disadvantages Card Style */
.dis-card {
    background: #fff0f0;
    border-top: 6px solid #ff4c4c;
}

/* Hover Effects */
.adv-card:hover,
.dis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 184, 92, 0.25);
}

/* Headings */
.adv-card h3,
.dis-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* List Items */
.adv-card ul,
.dis-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adv-card li,
.dis-card li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

/* Custom Icons */
.adv-card li::before,
.dis-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #00b85c;
}

.dis-card li::before {
    content: "✖";
    color: #ff4c4c;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .advantages-disadvantages h2 {
        font-size: 2rem;
    }

    .adv-card,
    .dis-card {
        padding: 20px;
    }

    .adv-card h3,
    .dis-card h3 {
        font-size: 1.3rem;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 80px 10%;
    background-color: #f8fff8;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.testimonials h2 span {
    color: #00b85c;
}

.testimonials .subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Slider */
.testimonials-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 300px;
    max-width: 350px;
    margin: 0 15px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Star Ratings */
.stars {
    color: #ffc107;
    font-size: 1rem;
}

/* Slider Buttons */
.slider-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-buttons button {
    background-color: #00b85c;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-buttons button:hover {
    background-color: #00994d;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .testimonial-card {
        min-width: 250px;
        margin: 0 10px;
    }

    .testimonials h2 {
        font-size: 2rem;
    }
}
/* Contact Us Section */
.contact {
    padding: 80px 10%;
    background-color: #f8fff8;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.contact h2 span {
    color: #00b85c;
}

.contact .subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00b85c;
    box-shadow: 0 0 5px rgba(0,184,92,0.3);
}

.contact-form button {
    padding: 12px 20px;
    background-color: #00b85c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00994d;
}

/* Map Styling */
.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    min-height: 350px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form, .contact-map {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact h2 {
        font-size: 2rem;
    }
}
/* Footer Section */
.footer {
    background-color: #f8fff8;
    padding: 60px 10% 30px 10%;
    color: #222;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

/* Footer Logo */
.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo h2 span {
    color: #00b85c;
}

.footer-logo p {
    font-size: 0.95rem;
    color: #555;
}

/* Quick Links */
.footer-links h3,
.footer-social h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00b85c;
}

/* Social Icons */
.footer-social .social-icons a {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 12px;
    color: #555;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #00b85c;
}

/* Newsletter Form */
.footer-newsletter p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 0.95rem;
}

.footer-newsletter input:focus {
    border-color: #00b85c;
    box-shadow: 0 0 5px rgba(0,184,92,0.3);
}

.footer-newsletter button {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background-color: #00b85c;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-newsletter button:hover {
    background-color: #00994d;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-newsletter form {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
img {
  width: 100%;  /* image fits phone screen */
  height: auto;
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 10px;
  }
}
.container {
  display: flex;
  flex-direction: column; /* stack items on small screens */
}



/* Mobile Responsive Styling */
@media screen and (max-width: 900px) {
    .nav-links,
    .cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 65px;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 10px 0;
    }

    .cta-btn {
        display: none;
    }
}
