:root {
    --primary-green: #124025;
    --light-green: #d5d4b4de;
    --heading-colr: #3F7002;
    --accent-color: #f9a825;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    --primary: #2E8B57;
    --primary-light: #3cb371;
    --primary-dark: #1d6e45;
    --secondary: #f8f9fa;
    --accent: #FFC107;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --white: #ffffff;


}

/* Common CSS  */
/* NavBar CSS */
/*  Footer CSS*/
/* Solar Calculator CSS */


/* Index CSS */
/* 1)Our Services CSS */
/*  2)About Us CSS*/
/*  3)How It Works CSS*/
/* Stats CSS is common for whole website */
/*  4)Our Projects CSS*/
/* 5)FAQ Section CSS*/
/*  6)Contact Us CSS*/


/* Services Webpage CSS */
/*  1)Hero Section CSS */
/*  2)Our Recent Projects CSS */
/*  3)Our Solar Services CSS*/
/*  4)Installation Process CSS */
/*  5)Why Choose Us CSS */
/*  6)Testimonal CSS */
/*  7)Contact Us CSS */


/* About Us Webpage CSS */
/* 1)About Hero CSS */
/*  */



/* Common CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: visible;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F3F6E5;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /* Regular text */
}

button,
a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* General Styling (Common to all screen sizes) */
.nav-container {
    background-color: #d5d4b4de;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 80px;
    top: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 0px;
    /* padding: 0px; */
}

.logo-container img {
    height: 80px;
    width: 75px;
}

.logo-text {
    margin-left: 10px;
}

.logo-title {
    color: #0B6738;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
    margin: 0;
}

.logo-subtitle {
    color: #124025;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0;
}

.company-name {
    color: #e74c3c;
    font-size: 14px;
    margin-top: -5px;
}

.nav-links {
    display: none;
    /* Hidden by default for mobile view */
    flex-direction: column;
    /* Vertical layout for mobile */
    align-items: end;
    /* background-color: var(--light-green); */
    position: absolute;
    top: 80px;
    /* Adjust according to navbar height */
    right: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}

.nav-item {
    margin: 10px 20px;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: white;
    background-color: var(--primary-green);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #286e23;
    color: var(--white);
}

.contact-btn {
    display: block;
    text-align: center;
    margin: 10px 20px;
    color: white;
    padding: 10px 18px;
    background-color: var(--primary-green);
    border-radius: 20px;
    animation: pulse 2s infinite;
    text-decoration: none;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    /* margin-right: 20px; */
}

/* Tablet and Larger Screens */
@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        padding: 10px 30px;
    }

    .nav-links {
        /* display: flex; */
        /* Show links for tablet and larger screens */
        flex-direction: row;
        align-items: center;
        position: static;
        /* Remove absolute positioning */
        width: auto;
        box-shadow: none;
        padding: 0;
    }

    .nav-item {
        margin: 0 10px;
    }

    .contact-btn {
        margin: 0;
    }


}

/* Desktop and Larger Screens */
@media (min-width: 992px) {
    .nav-links {
        gap: 20px;
        /* Increase spacing between links */
    }

    .contact-btn {
        padding: 11px 33px;
    }

}


/* Footer Css */

/* footer-styles.css */
footer {
    background-color: #121212;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #28a745;
}

.contact-info {
    margin-bottom: 8px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
}

.instagram {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 8px;
    padding: 5px 8px;
}

.facebook {
    color: #fff;
    background-color: #3b5998;
    border-radius: 8px;
    padding: 5px 12px;
}

.footer-divider {
    margin: 15px 0;
    border-color: #333;
}

.copyright {
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.logo-text {
    color: #fff;
    font-weight: bold;
}

.logo-container .logo-text {
    display: flex;
    width: auto;
    flex-direction: column;
}

/* Solar calculator CSS */



.calculator-section {
    min-height: 100vh;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e9e9e9 100%);
}

.calculator-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--primary);
    padding: 15px;
    border-radius: 10px;
    color: white;
}

.calculator-title i {
    font-size: 2rem;
    margin-right: 15px;
}

.calculator-title h3 {
    margin: 0;
    font-weight: 600;
}

.calculator-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.calculator-form-group {
    margin-bottom: 25px;
    position: relative;
}

.calculator-form-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.calculator-form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.calculator-form-group .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.calculator-form-group .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(14, 127, 60, 0.2);
}

.calculator-result {
    display: none;
    padding: 20px;
    border-radius: 10px;
    background-color: #e8f5e9;
    margin-top: 20px;
    text-align: center;
}

.calculator-result h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.calculator-result .result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #bbb;
}

.calculator-result .result-item:last-child {
    border-bottom: none;
}

.calculator-result .result-value {
    font-weight: 600;
    color: var(--primary);
}

.btn-calculate {
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-calculate i {
    margin-right: 10px;
}

.btn-calculate:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 127, 60, 0.3);
}


/* Home Css Start */

/* Page1 Css */
.Home {
    /* margin-top: 20vh; */
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-item {
    max-height: 100vh;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.carousel-caption {
    color: #590b0b;
}

.carousel-caption h5 {
    font-size: 3rem;
}

.carousel-caption p {
    margin: auto;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}

.text-overlay .heading {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 4rem;

}

.downarrow {
    cursor: pointer;
    font-size: 30px;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 50%;
}

span {
    color: hsl(356, 58%, 39%);
}

.para {
    color: whitesmoke;
}

/* Our Services CSS */

.page2 {
    min-height: 100vh;
    width: 100%;
}


.heading {
    font-size: 64px;
    font-weight: 600;
}

.heading-colour {
    color: var(--heading-colr);
}

.card-title {
    font-size: 40px;
    color: var(--heading-colr);
    font-weight: 600;
}

.card {
    border: 8px solid #3C7202;
    background-color: #F3F6E5;
    min-height: 516px;
}

.card img {
    max-height: 250px;
}

.btn {
    border-radius: 40px;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    /* background-color: #085116; */
    transform: translateY(3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #252F24;

}

/* About US CSS */
.page3 {
    min-height: 100vh;
    width: 100%;

}

.About-div-3 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.About-div-3 h1 {
    font-size: 50px;
    font-weight: 750;
}

.About-div-3 p {
    font-size: 20px;
}

/* How it Works Section */
.how-it-works {
    padding: 10px 0;
    text-align: center;
    background-color: #f0f7ef;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}




.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #286e23;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 10px;
    color: #286e23;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* Stats CSS */
.stats {
    padding: 10px 0;
    width: 100%;
    margin-top: 3px;
}

.stat-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-card {
    background-color: #3D7103;
    color: white;
    flex: 1;
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.stat-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    /* color: white; */
}

.stat-text {
    /* color: white; */
    font-size: 18px;
    line-height: 1.4;
}


/* Our Projects CSS */
.page4 {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.Projects-div-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0;
    background-image: url(/oneness-website/images/Our\ Projects.png);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

.overlay {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.18);
    z-index: 1;
    /* max-height: max-content; */
}

.content {
    position: relative;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.546);
    z-index: 2;
    margin: 20px;
    padding: 20px 30px;

}

.header-title {
    color: #102041;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-title {
    color: #102041;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    color: #102041;
    font-size: 20px;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.location {
    color: #102041;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-title-main {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 3px;
    /* text-align: center; */
}

.project-name {
    color: #102041;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.features-section {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #102041;
    font-weight: bold;
}

.feature::before {
    content: "✓";
    color: #102041;
    margin-right: 10px;
    font-weight: bold;
}

.btn-contact {
    background-color: #0a5589;
    color: white;
    padding: 12px 28px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #083e66;
    color: white;
}

/* FAQ section CSS */
.faq {
    padding: 10px 0;
    background-color: #f0f7ef;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-answer p {
    padding: 5px 0;
    color: #666;
    line-height: 1.6;
    font-size: small;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.FAQ-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 20px 25px;
    height: 150px;
    display: none;
    transition: all 1.5s ease;
    background-color: white;
}

/* Contact us form Section */
.contact {
    padding: 10px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #286e23;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-icon {
    min-width: 50px;
    height: 50px;
    background-color: #f0f7ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #286e23;
    font-size: 20px;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-content p {
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #286e23;
}

.form-group {
    margin-bottom: 20px;
}



.form-group label {
    display: block;
    margin-bottom: 8px;
    padding-left: 1rem;
    color: #000000;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #286e23;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1c5119;
}


/* Services CSS start */
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(139, 211, 162, 0.475), rgba(255, 246, 246, 0.452)), url(/oneness-website/images/Services\ Front\ Img.png) center/cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.Services-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/Services-Front-Image.png);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #106b21;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: #085116;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Projects Section */
/* Our recent Projects */
.projects {
    background-color: #e9f4e9;
}

.project-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.project-img {
    height: 250px;
    /* background-color: #1212125c; */
    opacity: 0.7;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.project-item:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    min-height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.564);
    color: white;
    padding: 10px;
    transform: translateY(80%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-title {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: rgba(11, 2, 2, 0.758);
}

.project-details {
    font-size: 0.9rem;
    color: #ddd;
}

.section-title {
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 10px;
    color: #106b21;
    position: relative;
}

.section-title:not(.exclude) :after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #f9a825;
    margin: 2px auto 8px;

    border-radius: 2px;
}

/* Our Solar Services Section */
.services {
    background-color: #e9f4e9;
}


.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width:991px) {
    .service-card {
        border: 7px solid black;
        margin-bottom: 20px;
    }
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #106b21;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
}


/* Installation Process Styles */
.process {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-title span {
    color: #28a745;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-item.left,
.timeline-item.right {
    text-align: start;
}

.timeline-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-content {
        width: 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-item {
        /* display: none; */
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 13px;
    }

}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
    /* margin: 3rem; */
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;

}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #106b21;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 850;
}

.feature-box p {
    color: #666;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width:576px) {
    .feature-box {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.256);
    }

}

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 15px;

}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: #e9f4e9;
    padding: 30px;
    border-radius: v8px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}


.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    /* overflow: hidden; */
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-name {
    font-weight: 600;
    color: #106b21;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-rating {
    color: #f8ce0b;
    font-size: 1.2rem;
    margin: 10px 0;
}

.testimonial-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px;
    text-align: center;
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbc02d;
    /* Gold color for stars */
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    margin: 15px 0;
}

.testimonial-name {
    font-weight: bold;
    margin-top: 10px;
}

.testimonial-location {
    color: #777;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-control {
    width: 40px;
    height: 40px;
    background-color: #106b21;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.slider-control:hover {
    background-color: #085116;
}

/* Contact Us CSS */
.Contact-Us-Image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/ContactUs.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.9);
}

.Contact-Us-Page-1 {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), no-repeat center center;
    background-size: cover;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.Contact-Us-Page-1-Content {
    z-index: 1;
}

.Contact-Us-Page-1-Content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Contact info section */

.contact-info-section {
    padding: 30px 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.contact-card {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #0e7f3c;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #ffc107;
    transform: rotate(360deg);
}

.contact-card h4 {
    font-weight: 600;
    color: #0e7f3c;
    margin-bottom: 15px;
}

.contact-us-info {
    margin-top: 10px;
    color: #444;
}

.callnow-btn {
    margin-top: 20px;
    background-color: #0e7f3c;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.callnow-btn:hover {
    background-color: #26a550;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 127, 60, 0.3);
}


/* Connect Us Form */
.form-section {
    padding: 10px 0;
    background: #f9f9f9;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #0e7f3c;
    position: relative;
}

/* .section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ffc107;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0e7f3c;
    box-shadow: 0 0 15px rgba(14, 127, 60, 0.2);
}

.form-control.required {
    position: relative;
}

.form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}



.form-check-label {
    font-weight: 400;
    color: #555;
}

.btn-submit {
    background-color: #0e7f3c;
    color: white;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-submit:hover {
    background-color: #26a550;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 127, 60, 0.3);
}

.btn-reset {
    background-color: #6c757d;
    color: white;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-reset:hover {
    background-color: #5a6268;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3);
}


/* About Hero Section */
.about-hero {
    max-height: 100vh;
    width: 100%;
    padding-top: 80px;
    position: relative;
    overflow-y: hidden;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.4rem;
    color: white;
}

video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.cta-section {
    padding: 15px 0;
    background: linear-gradient(rgba(9, 77, 40, 0.9), rgba(9, 77, 40, 0.9)), url(images/Agricultural-solar.png) center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: #fa7900;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
}

.btn-cta:hover {
    background-color: white;
    color: #0b6b38;
    transform: translateY(-3px);
}


/* About Content Section */
.about-content {
    padding: 10px 0;
}

.about-content p {
    font-size: 20px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.244);
    margin-bottom: 10px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0b6b38;
}

.about-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: #0b6b38;
    margin-bottom: 20px;
}

/* Feedback Section */
.feedback-section {
    padding: 15px 0;
    background-color: #f8f9fa;
}

.feedback-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.feedback-title span {
    color: #0b6b38;
}

.feedback-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feedback-form h4 {
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0b6b38;
}

.btn-submit {
    background-color: #0b6b38;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #094d28;
}

/* Timeline section */
.about-us-timeline-section {
    padding: 15px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #0b6b38;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 0;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #fa7900;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.timeline-content {
    padding: 20px 30px;
    background-color: rgb(219, 219, 219);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.447);
}

.timeline-content h3 {
    color: #9D2A31;
    font-weight: 600;
}

@media (max-width:576px) {
    .timeline::after {
        display: none;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-item {
        width: 100%;
        position: static;
    }

    .right,
    .left {
        left: 0;
        width: 100%;
    }

    .left::after {
        /* right: 0; */
        left: 0;
    }

    .right::after {
        /* left: 0; */
        right: 0;

    }
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -12px;
}

.timeline-year {
    font-weight: 700;
    color: #0b6b38;
    margin-bottom: 10px;
}

/* Hero Section */
.hero-section {

    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/industrial-solar.png) center/cover no-repeat;
    color: #f8fafc;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Project Experience Section */
.project-experience {
    padding: 50px 0;
    background-color: #f8fafc;
}

.project-experience h2 {
    color: #166534;
    font-weight: 700;
    margin-bottom: 20px;
}

.experience-img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 350px;
    width: 600px;
    object-fit: cover;
}

@media (max-width:576px) {
    .project-experience {
        text-align: center;
    }
}

/* Project Cards */
.projects-section {
    padding: 20px 0;
}

.projects-section h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.project-color {
    color: #166534;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    height: 100%;
    background-color: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-img {
    height: 200px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.project-details {
    padding: 20px;
}

.project-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
    font-size: 14px;
}

.project-capacity {
    display: flex;
    align-items: center;
    color: #f59e0b;
    font-weight: 600;
}

.project-location {
    display: flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 600;
}

/* Featured Projects */
.featured-projects {
    padding: 20px 0;
    background-color: #f8fafc;
}

.featured-projects h2 {
    font-weight: 700;
    margin-bottom: 50px;
}

.featured-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.42);
    transition: transform 0.3s;
    margin-bottom: 10px;
    height: 100%;
    background-color: white;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-content {
    padding: 30px;
}

.featured-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #166534;
}

.featured-description {
    color: #6b7280;
    margin-bottom: 20px;
}

.featured-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #166534;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

@media(max-width:576px) {
    .featured-title {
        text-align: center;
    }

}

/* Commmercial Solar CSS */
/* Hero Section */
.hero-section-solar {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100vh;
}

.hero-image-solar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-overlay-solar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content-solar {
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content-solar h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content-solar p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Installation Steps */
.installation-section-solar {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.section-title-solar {
    text-align: center;
    margin-bottom: 40px;
    /* margin-left: 20px; */
}


.section-title-solar p {
    font-size: 1.5rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-image {
    height: 200px;
    background-color: #dddddd6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffc107;
}

.step-content {
    padding: 25px;
}

.step-number {
    display: inline-block;
    background-color: #ffc107;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.466);
}

.benefit-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
}



.popup {
    height: 50px;
    width: 150px;
    background-color: #a5613e;
    top: 50%;
    left: -100px;
    /* Default position: slightly outside the view */
    transform: translateY(-40%);
    z-index: 20;
    position: fixed;
    transition: left 0.5s ease;
    /* Smooth transition for hover and click */
}

.popup:hover {
    left: 0;
    /* Move fully into view on hover */
}

@media (max-width: 576px) {
    .popup {
        left: -100px;
        /* Adjust position for smaller screens */
    }
}

@media (max-width: 768px) {
    .popup {
        left: -100px;
        /* Adjust position for tablet screens */
    }
}

.popup a h1 {
    font-size: 16px;

}

.popup a i {
    font-size: 30px;
    /* padding: 2px; */
}

.popup a {
    text-decoration: none;
    color: white;
    /* font-size: 25px; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* text-align: center; */
}



/* Login css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.loginPage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {

    position: relative;
    width: 750px;
    height: 450px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    overflow: hidden;
}


.wrapper .form-box {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.wrapper .form-box.login {
    left: 0;
    padding: 0 60px 0 40px;
}

.form-box h2 {
    margin-bottom: 10px;
    position: relative;
    font-size: 32px;
    color: #000;
    text-align: center;
}

.form-box h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #000;
}

.form-box .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 25px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    border-bottom: 2px solid #000;
    transition: .5s;
    padding-right: 23px;
}

.input-box input:focus,
.input-box input:valid {
    border-bottom-color: #17a;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000;
    pointer-events: none;
    transition: 0.5s;
}


.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
    color: #17a;
}


.input-box i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    transition: 0.5s;
}

.input-box input:focus~i,
.input-box input:valid~i {
    color: #17a;
}

form button {
    width: 100%;
    height: 45px;
    background-color: #000;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

form button:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

form .linkTxt {
    font-size: 14px;
    color: #000;
    text-align: center;
    margin: 20px 0 10px;
}

.linkTxt p a {
    color: blue;
    text-decoration: none;
    font-weight: 600;
}

.wrapper .form-box.login .animation {
    transform: translateX(0);
    transition: 0.7s ease;
    opacity: 1;
    filter: blur(0);
    transition-delay: calc(.1s * var(--j));
}

.wrapper.active .form-box.login .animation {
    transform: translateX(-120%);
    opacity: 0;
    filter: blur(10px);
    transition-delay: calc(.1s * var(--i));
}

.wrapper .info-text {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper .info-text.login {
    right: 0;
    text-align: right;
    padding: 0 40px 60px 150px;

}

.wrapper .info-text h2 {
    font-size: 36px;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
}

.wrapper .info-text h3 {
    font-size: 26px;
    color: #fff;
}


.wrapper .info-text.login .animation {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition: 0.7s ease;
    transition-delay: calc(.1s * var(--j));
}

.wrapper.active .info-text.login .animation {
    transform: translateX(120px);
    opacity: 0;
    filter: blur(10px);
    transition: 0.7s ease;
    transition-delay: calc(.1s * var(--i));
}


.wrapper .rotate-bg {
    position: absolute;
    top: -4px;
    right: 0;
    width: 850px;
    height: 600px;
    background: #000;
    transform: rotate(10deg) skewY(40deg);
    transform-origin: bottom right;
    transition: 1.5s ease;
    transition-delay: 1.6s;
}

.wrapper.active .rotate-bg {
    transform: rotate(0) skewY(0);
    transition-delay: 0.5s;
}

.wrapper .form-box.register {
    padding: 0 40px 0 60px;
    right: 0;
}

.wrapper.active .form-box.register {
    pointer-events: auto;
}


.wrapper .form-box.register .animation {
    transform: translateX(120%);
    opacity: 0;
    filter: blur(10px);
    transition: .7s ease;
    transition-delay: calc(.1s * var(--j));
}

.wrapper.active .form-box.register .animation {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition-delay: calc(.1s * var(--i));
}



.wrapper .info-text.register {
    left: 0;
    text-align: left;
    padding: 0 150px 60px 40px;
    pointer-events: none;
}

.wrapper.active .info-text.register {
    pointer-events: auto;
}


.wrapper .info-text.register .animation {
    transform: translateX(-120%);
    opacity: 0;
    filter: blur(10px);
    transition: .7s ease;
    transition-delay: calc(.1s * var(--j));
}

.wrapper.active .info-text.register .animation {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition-delay: calc(.1s * var(--i));
}

.wrapper .rotate-bg2 {
    position: absolute;
    top: 100%;
    left: 250px;
    width: 850px;
    height: 700px;
    background: #fff;
    transform: rotate(0) skewY(0);
    transform-origin: bottom left;
    transition: 1.5s ease;
    transition-delay: 0.5s;
}

.wrapper.active .rotate-bg2 {
    transform: rotate(-11deg) skewY(-40deg);
    transition-delay: 1.2s;
}

#loginModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}