@font-face {
    font-family: 'CustomStyle';
    src: url('../../fonts/Amplitude-Book Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

/* For Webkit Browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
}

body {
    overflow: auto;
    /* Allow scrolling */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer & Edge */
}


:root {
    --primary-color: #8BC34A;
    --secondary-color: #689F38;
    --text-dark: #333333;
    --text-light: #666666;
}

.heading_style {
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #2ecc71;
}

.phone-link {
    background-color: #acd106;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover {
    background-color: white;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a;
}

.phone-link i {
    font-size: 1rem;
}


.contact-link {
    background-color: #27b1cc;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-link:hover {
    background-color: white;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a;
}

.contact-link i {
    font-size: 1rem;
}

.get-quote-btn {
    background-color: #019541;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #019541;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.get-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: skewX(-15deg);
}

.get-quote-btn:hover::before {
    left: 100%;
}

.get-quote-btn:hover {
    background-color: #019541;
    border-color: #019541;
    color: white;
}

.custom-carousel-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-carousel-page {
    background-color: rgb(243, 244, 246);
    /* padding: 1rem; */
    font-family: 'Libre Baskerville', sans-serif;
}

.custom-carousel {
    position: relative;
    /* height: 300px; */
    /* border-radius: 1rem; */
    overflow: hidden;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
}

@media (min-width: 768px) {
    .custom-carousel {
        height: 600px;
    }

}

@media (max-width:1024px) {
    .custom-carousel-page {
        min-height: 55vh;
        background-color: rgb(243, 244, 246);
        font-family: 'Libre Baskerville', sans-serif;
    }

    /* .custom-caption {
        background: unset !important;
    } */

}

.custom-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.custom-slide.active {
    opacity: 1;
    z-index: 10;
}

.custom-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-caption {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0;
    /* background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%); */
    /* backdrop-filter: blur(4px); */
    color: white;
    padding: 1rem;
    z-index: 20;
    height: 100vh;

}

.custom-des {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 30px;
    max-width: 800px;
    font-family: 'IBM Plex Serif', sans-serif;
    left: 15%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    /* background: rgba(0, 0, 0, 0.2) ;
     backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); */

    /* background:  rgba(255, 255, 255, 0.4);
    color: #000; */
    border-radius: 10px;
    padding: 20px;
}

@media (max-width:426px) {
    .custom-des {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        font-size: 20px;
        max-width: 350px;
        font-family: 'IBM Plex Serif', sans-serif;
        left: 0;
    }
}

@media (min-width:427px) and (max-width:769px) {
    .custom-des {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        font-size: 30px;
        max-width: 500px;
        font-family: 'IBM Plex Serif', sans-serif;
        left: 0;
    }
}

.custom-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%);
    z-index: 30;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

@media (min-width: 330px) and (max-width: 1024px) {
    .custom-title {
        font-size: 2rem;
        top: 90%;
        left: 80%;
    }
}

@media (max-width: 426px) {
    .custom-title {
        font-size: 1.3rem;
        top: 93%;
        left: 75%;
    }
}

@media (min-width: 768px) {
    .custom-caption {
        padding: 1rem;
    }
}

.custom-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 9999px;
    padding: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 20;
}


.custom-carousel:hover {
    opacity: 1;
}

.custom-nav-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.custom-prev {
    left: 1rem;
}

.custom-next {
    right: 1rem;
}


.custom-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    z-index: 10;
    pointer-events: all;
    width: 100%;
    padding: 0;
}

.custom-indicator {
    flex: 1;
    height: 0.3rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* Add position to apply pseudo elements */
    overflow: hidden;
    /* To hide overflow animation */
    margin: 0 0.2rem;
    /* Add margin to create gap between indicators */
}

.custom-indicator::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* Start with no fill */
    background: linear-gradient(90deg, #de0e1b, #ffcc00, #00963f, #254091);
    /* Color of the animation fill */
    border-radius: 9999px;
    animation: none;
    /* Disable animation by default */
}

/* 
.custom-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
} */

.custom-indicator.active::after {
    animation: underlineAnimation 5s linear forwards;
    /* Activate animation for active indicator */
}

.custom-indicator.active {
    flex: 1;
    /* Equal width for active indicator */
}

@keyframes underlineAnimation {
    0% {
        width: 0;
        left: 0;
    }

    40% {
        width: 100%;
        left: 0;
    }

    60% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}



.discover-our-brand-section {
    /* margin-top: 40px; */
    padding: 1rem;
}

.discover-our-brand-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* background: white; */
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.discover-our-brand-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: center;

}

.discover-our-brand-header h4 {
    color: #2ecc71;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.discover-our-brand-navigation {
    display: flex;
    border-bottom: 1px solid #eee;
}

.discover-our-brand-nav-item {
    padding: 1rem 2rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-family: 'Crimson Pro';
}

.discover-our-brand-nav-item:hover {
    color: #3498db;
}

.discover-our-brand-nav-item.active {
    color: #3498db;
    font-weight: 600;
    padding: 3px;
}

.discover-our-brand-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
}

.discover-our-brand-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.home-content-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.home-content-section.active {
    display: block;
    opacity: 1;
}

.home-content-section h3 {
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.para {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    word-spacing: -0.05em;
    line-height: 1.8;
    font-family: 'IBM Plex Serif', sans-serif;

}

@media (max-width:425px) {
    .para {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        text-align: justify;
        word-spacing: -0.15em;
        line-height: 1.8;
        font-family: 'IBM Plex Serif', sans-serif;
    }

    .discover-our-brand-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0rem;
    }

    .home-content-section h3 {
        color: #3498db;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid #ddd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h4 {
    font-size: 2rem;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.stat-item p {
    font-size: 0.9rem;
    color: black;
    margin: 0;
    font-family: 'IBM Plex Serif', sans-serif;
}

.read-more {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.discover-our-brand-carousel {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.discover-our-brand-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.discover-our-brand-carousel-item.active {
    opacity: 1;
}

.discover-our-brand-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-our-brand-carousel-item video {
    width: 100%;
    /* Ensure the video is responsive by default */
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio */
}

/* Media query for screens up to 426px */

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.carousel-caption h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    top: 95%;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    visibility: hidden;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background: white;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .discover-our-brand-navigation {
        flex-direction: column;
    }

    .discover-our-brand-nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .discover-our-brand-content-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 1.5rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/*why choose us */

.why-choose-wrapper {
    background-color: #f4f4f4;
    padding: 2rem 2rem;
}

.why-choose-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-heading {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.benefit-icon-svg {
    width: 100%;
    height: 100%;
    color: #145476;
}

.benefit-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

/* Staggered Fade In Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.staggered-fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.staggered-fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.staggered-fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.staggered-fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.staggered-fade-in:nth-child(6) {
    transition-delay: 0.6s;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-heading {
        font-size: 2rem;
    }
}


/* SOLAR LOAN SECTION */
.solar-loans {
    background-color: #8BC34A;
    color: white;
    padding: 4rem 2rem;
    overflow: hidden;
}

.solar-loans h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.loans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.loan-card {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color;
}

.loan-card-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loan-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loan-card h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loan-card .description {
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, max-height, transform;
}

.loan-card .description p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hover animations */
.loan-card:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-8px) translateZ(0);
}

.loan-card:hover .icon {
    transform: translateY(-5px);
}

.loan-card:hover h3 {
    transform: translateY(-2px);
}

.loan-card:hover .description {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

/* Active state */
.loan-card:active {
    transform: translateY(-4px) translateZ(0);
    transition: transform 0.1s;
}

@media (max-width: 768px) {
    .solar-loans h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .loans-container {
        grid-template-columns: 1fr;
    }

    .loan-card:hover {
        transform: translateY(-4px) translateZ(0);
    }
}

.testimonials {
    background-color: #1a4a6e;
    color: white;
    padding: 2rem 1rem;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #333;
}

.testimonial-image {
    /* width: 120px; */
    height: 235px;
    /* border-radius: 50%;*/
    margin: 0 auto 1rem;
    position: relative;
    /* cursor: pointer; */
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* background-size: cover; */
}



.testimonial-image:hover {
    opacity: 1;
}

.location {
    color: #666;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

/* Projects Section */
.projects {
    background-color: #1a4a6e;
    padding: 2rem 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
    background-color: #f4f4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 1rem;
}

.project-card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    /* padding: ; */
    background-color: #8BC34A;
    color: white;
    text-align: center;
    transition: bottom 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-overlay {
        padding: 0.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}




.solar-calc-wrapper {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 0, 255, 0.1) 50px, rgba(0, 0, 255, 0.1) 100px);
    background-color: #1a4a6e;
    padding: 40px;
    color: white;
    min-height: 85vh;
}

.solar-calc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solar-calc-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.solar-calc-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.solar-calc-content {
    display: flex;
    gap: 40px;
}

.solar-input-section {
    flex: 1;
    max-width: 400px;
}

.solar-input-group {
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.solar-input-field {
    width: 100%;
    padding: 8px;
    border: none;
    font-size: 16px;
}

.solar-info-section {
    flex: 2;
}

.solar-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.solar-info-card {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
}

.solar-info-label {
    font-size: 0.9em;
    color: #666;
}

.solar-info-value {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 5px;
}

.solar-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.solar-action-btn {
    background: #98c93c;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.solar-finance-details {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.solar-finance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.solar-finance-table th,
.solar-finance-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.solar-project-details {
    margin-bottom: 20px;
}

.solar-project-details p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .solar-calc-wrapper {
        padding: 20px;
    }

    .solar-calc-title {
        font-size: 2em;
    }

    .solar-calc-subtitle {
        font-size: 1em;
    }

    .solar-calc-content {
        flex-direction: column;
    }

    .solar-input-section {
        max-width: 100%;
    }

    .solar-info-grid {
        grid-template-columns: 1fr;
    }

    .solar-action-buttons {
        grid-template-columns: 1fr;
    }
}



/* customer section */

.customer-segments {
    /* background-color: #1a4a6e; */
    padding: 4rem 2rem;
    color: white;
}

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

.segment-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.segment-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.segment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-card:hover .segment-image {
    transform: scale(1.1);
}

.segment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.segment-card:hover .segment-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 40%,
            rgba(0, 0, 0, 0.4) 100%);
}

.segment-content {
    transform: translateY(30px);
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-card:hover .segment-content {
    transform: translateY(0);
    opacity: 1;
}

.segment-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.segment-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.segment-card:hover .segment-description {
    opacity: 1;
    transform: translateY(0);
}

.segment-btn {
    padding: 0.8rem 1.5rem;
    background-color: #8BC34A;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.segment-card:hover .segment-btn {
    opacity: 1;
    transform: translateY(0);
}

.segment-btn:hover {
    background-color: #9CCC65;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .segment-grid {
        grid-template-columns: 1fr;
    }

    .segment-title {
        font-size: 2rem;
    }

    .segment-content h3 {
        font-size: 1.75rem;
    }

    .segment-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .customer-segments {
        padding: 2rem 1rem;
    }

    .segment-title {
        font-size: 1.75rem;
    }

    .segment-content h3 {
        font-size: 1.5rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

.solar-steps {
    background-color: #8BC34A;
    padding: 4rem 2rem;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.steps-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: #2B6CB0;
}

.step-title {
    font-size: 1.25rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.step-description {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-button {
    background: #000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.step-button:hover {
    background: #333;
}

/* Process arrows */
.process-arrow {
    position: absolute;
    top: 30%;
    width: calc(100% - 4rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.arrow-path {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8, 8;
}

@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-title {
        font-size: 2rem;
        text-align: center;
    }

    .step-card {
        padding: 1.5rem;
    }
}

/* awards section */

.awards-section {
    padding: 4rem 0;
}

.award-card {
    border: 2px solid #8BC34A;
    border-radius: 8px;
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-bottom: 2rem;
}

.award-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
    color: black;
}

/* Investors Section */
.investors-section {
    background-color: #8BC34A;
    padding: 4rem 0;
}

.investor-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.investor-logo {
    background: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.investor-logo:hover {
    transform: scale(1.05);
}

.investor-wrapper {
    padding: 1rem;
}

.investor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Impact Section */
.impact-section {
    padding: 2rem 0;
    background: #f4f4f4;
}

.impact-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.impact-icon {
    font-size: 2.5rem;
    color: #145476;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: black;
}

.impact-text {
    color: black;
    font-size: 1rem;
}

/* News & Blogs Common Styles */
.news-section,
.blogs-section {
    background-color: white;
    padding: 4rem 0;
    color: black;
}

/* Enhanced Content Card Styles */
.content-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.content-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-card:hover .content-image {
    transform: scale(1.1);
}

.content-body {
    padding: 1.5rem;
    background: #fff;
    color: #333;
    height: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.content-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a4a6e;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.content-card:hover .content-title {
    color: #8BC34A;
}

.read-more-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #8BC34A;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Enhance main read more button */
.main-read-more {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: #8BC34A;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

.main-read-more:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(104, 159, 56, 0.6);
}

.main-read-more:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(104, 159, 56, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-card {
        margin-bottom: 1.5rem;
    }

    .content-title {
        font-size: 1.1rem;
    }

    .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .main-read-more {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
    }
}

.read-more-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #8BC34A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-2px);
}

.read-more-btn:active {
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: black;
}

.main-read-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #8BC34A;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.main-read-more:hover {
    background: #689F38;
    color: #fff;
    transform: translateY(-2px);
}

.main-read-more:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .investor-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }

    .impact-card {
        padding: 1.5rem;
    }

    .impact-number {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* .nav-item.dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
} */

/* .navstyles {
    color: #000;
} */

/* .navstyles:hover {
    background-color: #1a4a6e;
    color: rgb(249, 245, 245);
    border-radius: 10px;
} */

/* .nav-link {
    margin-inline-end: 10px;
} */

/*Quote Modal Styling */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 5px 20px;
    max-width: 100%;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.form-label {
    font-weight: 500;
}

.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

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

@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }

    .btn-success {
        width: 100%;
    }
}

/* frequently asked questions */
.container-class-styles {
    /* min-height: 80vh; */
    background: linear-gradient(-45deg, #FF6B6B, #FFD93D, #6BCB77, #4D96FF);
    background-size: 400% 400%;
    /* animation: gradientBG 15s ease infinite; */
    padding: 2rem;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-header {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    /* animation: pulse 2s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.faq-layout {
    display: flex;
    gap: 2rem;
}

.faq-questions {
    flex: 0 0 66.666%;
}

.question-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.9s ease;
    opacity: 0;
    transform: translateX(-100px);
}

.question-item:nth-child(even) {
    transform: translateX(100px);
}

.question-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.question-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.question-header:hover {
    background: rgba(255, 255, 255, 0.3);
}

.question-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'IBM Plex Serif', sans-serif;

}

.answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.answer-text {
    padding: 1.5rem;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    word-spacing: -0.15em;
    font-family: 'IBM Plex Serif', sans-serif;
}

@media (max-width:426px) {
    .answer-text {
        hyphens: auto;
    }

}

.question-item.active .question-header {
    background: rgba(255, 255, 255, 0.4);
}

.question-toggle {
    font-size: 30px;
    transition: transform 0.3s ease;
}

.question-item.active .question-toggle {
    transform: rotate(45deg);
}

.question-item.active .answer-content {
    max-height: 500px;
}

.faq-image {
    flex: 0 0 33.333%;
}


.circular-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1rem;
}

.circular-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width:767px) {
    .circular-image img {
        display: none;

    }

    .circular-image {

        margin: 0;
        padding: 0;
    }

}

/* .circular-image:hover img {
    transform: translate(-50%, -50%) scale(1.1);
} */

@keyframes spinGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-questions,
    .faq-image {
        flex: 0 0 100%;
    }

    /* .image-wrapper {
        position: static;
        margin-bottom: 2rem;
    } */

    .circular-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .faq-container {
        padding: 1rem;
    }

    .faq-header {
        font-size: 2rem;
    }

    .question-item,
    .question-item:nth-child(even) {
        transform: translateY(50px);
    }

    .question-item.animate {
        transform: translateY(0);
    }
}

.sesola-header {
    margin-top: 0px;
    padding: 0px;
}

.sesola-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

.sesola-branding {
    display: flex;
    flex-direction: column;
}

.sesola-company {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.sesola-tagline {
    font-size: 0.875rem;
    color: #1e3a8a;
}

.sesola-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    /* margin-bottom: 1.5rem; */
    /* margin-left: 15%; */
    /* margin-top: 5%; */
}

.sesola-section {
    background: #e0e7ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.sesola-section-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.sesola-section-icon {
    margin-right: 8px;
    color: #2563eb;
}

.sesola-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.sesola-field-wrapper {
    margin-bottom: 0.75rem;
}

.sesola-field-label {
    display: block;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.sesola-field {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.sesola-field:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.sesola-input-group {
    position: relative;
}

.sesola-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #1e3a8a;
    font-size: 0.875rem;
}

.sesola-input-with-icon {
    padding-left: 30px;
}

.sesola-radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.sesola-radio-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
}

.sesola-radio {
    margin-right: 0.25rem;
}

.sesola-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
    width: fit-content;
}

.sesola-submit:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.sesola-required {
    color: #dc2626;
}

@media (max-width: 640px) {
    .sesola-inner {
        padding: 1.5rem;
    }

    .sesola-section {
        padding: 1rem;
    }

    .sesola-grid {
        grid-template-columns: 1fr;
    }

    .sesola-submit {
        width: 100%;
    }
}

/* Benefits Of Solar */
.solar-benefits-container {
    background-color: #1e3a4e;
    min-height: 80vh;
    padding: 40px 20px;
    color: white;
    font-family: 'Libre Baskerville', sans-serif;
}

.solar-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.solar-benefits-subtitle {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.solar-benefits-main-title {
    font-size: 32px;
    margin: 0 0 30px;
    font-weight: bold;
    color: #ffcc00;
}

/* Grid container */
.solar-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Benefit card styling */
.solar-benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.solar-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon styling */
.solar-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-icon-container i {
    font-size: 28px;
    color: #ffcc00;
}

/* Title and description styling */
.solar-benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffcc00;
}

.solar-benefit-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Fade In */
.staggered-fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.staggered-fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.staggered-fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.staggered-fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.staggered-fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.staggered-fade-in:nth-child(6) {
    transition-delay: 0.6s;
}

.staggered-fade-in:nth-child(7) {
    transition-delay: 0.7s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solar-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .solar-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .solar-benefit-card {
        padding: 1.2rem;
    }

    .solar-benefits-main-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .solar-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .solar-benefits-main-title {
        font-size: 24px;
    }

    .solar-benefits-subtitle {
        font-size: 14px;
    }

    .solar-benefit-card {
        padding: 1rem;
    }

    .solar-icon-container {
        width: 60px;
        height: 60px;
    }

    .solar-icon-container i {
        font-size: 24px;
    }
}

/* scroll bar animatin styles */
.se-trusted-section {
    padding: 0.2rem 0;
    overflow: hidden;
    background-color: #f4f4f4;
}

/* Default styles for large screens */
.trusted-by {
    color: #2ecc71;
    letter-spacing: 1px;
    font-family: Chakra Petch;
    font-size: 25px;
    text-align: center;
}

/* Styles for small screens */
@media (max-width: 576px) {
    .trusted-by {
        transform: rotate(180deg);
        width: 45px;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: vertical-rl;
        text-align: center;
    }

    /* If you want to specifically style the icon as well */
    .trusted-by i {
        font-size: 20px;
        /* Adjust icon size for small screens if necessary */
    }
}


.se-trusted-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.heading_style {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0;
}

.se-trusted-wrapper {
    flex-grow: 1;
    padding: 0 1rem;
}

.se-trusted-scroll {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.se-scroll-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.se-client-logo {
    flex: none;
    width: 250px;
    height: 300px;
    /* margin-right: 1rem; */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.se-client-logo:hover {
    transform: translateY(-0.5rem);
    cursor: pointer;
}

.se-client-image {
    width: 60%;
    height: 50%;
    object-fit: contain;
    /* padding: 1rem 0.5rem; */
}

/* Scroll animation */
.scroll-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
    /* Higher z-index to ensure buttons appear above all content */
}

.scroll-to-top {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), rgba(26, 74, 110, 0.05));
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    /* Hidden by default */
    background-color: #1a4a6e;
    /* Adding a solid background color */
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    /* Becomes visible when scrolled down more than 200px */
}

.scroll-to-top:hover {
    background: #E31E24;
    transform: translateY(-3px);
}

.whatsapp-button {
    background: #25D366;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cunsoltation-button {
    position: fixed;
    top: 50%;
    right: 3px;
    transform: translateY(-50%) rotate(180deg);
    width: 37px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
    z-index: 1000;
    border-radius: 10px;
    background: #5db072;

}

.cunsoltation-icon {
    display: inline-block;
    transform: rotate(90deg);
    font-size: 22px;
    margin-right: 8px;
    padding-bottom: 5px;
}



/* .cunsoltation-button:hover {
    background: #d1551b; 
} */


/* .whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
} */

/* our offerings */

.offerings-section {
    background-color: #1a4a6e;
    padding: 4rem 1rem;
    min-height: 100vh;
}

/* Animation Keyframes */
@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for cards */
.offering-card:nth-child(1) {
    animation-delay: 0.1s;
}

.offering-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offering-card:nth-child(3) {
    animation-delay: 0.3s;
}

.offering-card:nth-child(4) {
    animation-delay: 0.4s;
}

.offering-card:nth-child(5) {
    animation-delay: 0.5s;
}

.offering-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Section title animation */
.section-title {
    color: #2ecc71;
    letter-spacing: 1px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}



.offering-card {
    background-color: #f4f4f4;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    height: 100%;
    padding: 1.5rem 1.5rem 0.0rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomOut 0.8s ease forwards;
}

.offering-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.offering-image {
    width: 100%;
    max-width: 320px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.offering-card:hover .offering-image {
    transform: scale(1.05);
}

/* Tooltip for hover message */
.image-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Tooltip arrow pointing down */
.image-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

.image-container:hover .image-tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

/* =================================
   GLOBAL IMAGE OVERLAY STYLES
================================= */

.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
}

.image-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s ease;
    cursor: default;
}

.image-overlay.active .overlay-image {
    transform: scale(1);
}

.close-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10001;
}

.close-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.overlay-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    max-width: 80%;
    text-align: center;
}

/* =================================
   GLOBAL TOOLTIP STYLES
================================= */

.clickable-image {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
}

.clickable-image::before {
    content: 'Click for full size view';
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.clickable-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.clickable-image:hover::before {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.clickable-image:hover::after {
    opacity: 1;
    visibility: visible;
    top: -15px;
}

.clickable-image[data-tooltip]::before {
    content: attr(data-tooltip);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .clickable-image::before {
        font-size: 0.8rem;
        padding: 6px 12px;
        top: -40px;
    }

    .clickable-image:hover::before {
        top: -45px;
    }
}

.offering-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    /* font-family: 'Chakra Petch', sans-serif; */
}

.offering-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    flex-grow: 1;
}

/* Mobile adjustments for overlay */
@media (max-width: 768px) {
    .close-overlay {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .overlay-caption {
        bottom: 20px;
        font-size: 1rem;
        padding: 12px 20px;
        max-width: 90%;
    }

    .overlay-image {
        max-width: 95vw;
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    .offerings-section {
        padding: 3rem 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 100px;
        margin: 10px auto 0;
    }

    .offering-card {
        padding: 1.2rem 1.5rem 1rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .offering-image {
        max-width: 100%;
        height: 160px;
        margin-bottom: 1rem;
    }

    .offering-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .offering-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .offerings-section {
        padding: 2rem 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .offering-card {
        padding: 1rem 1.2rem 0.8rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    .offering-image {
        height: 140px;
    }

    .offering-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .offering-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    /* .offering-card {
        padding: 1.8rem 2.2rem 1.5rem 2.2rem;
    } */

    .offering-image {
        height: 200px;
        max-width: 340px;
    }

    .offering-title {
        font-size: 1.4rem;
        margin-bottom: 0.9rem;
    }

    .offering-description {
        font-size: 1rem;
    }
}

/* for projects carousel margin */

@media (max-width:424px) {
    .margin-head {
        margin-top: 30px;
    }
}

@media (max-width:424px) {
    .c {
        margin-top: 30px;
    }
}

/*  
        .bg-cool {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            position: relative;
        }
        .bg-cool::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }


      
        .bg-nature {
            background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
            position: relative;
        }
        .bg-nature::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, transparent, rgba(46, 204, 113, 0.1));
            z-index: 1;
        } */













/* Active page navigation styles */
/* .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
} */

/* Active page underline effect */
/* .navbar-nav .nav-link.active {
    color: #1B75BC !important;
    padding: 3px;
    background-color: #3b82f61a ;
    border-radius: 5px;
    border: 1px #1B75BC !important;
} */

/* .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1B75BC;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    display: none !important;
} */

/* Hover effect for non-active links */
/* .navbar-nav .nav-link:not(.active):hover {
    color: #1B75BC;
} */

/* .navbar-nav .nav-link:not(.active):hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1B75BC;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1B75BC;
    transform: scaleX(0);
    transition: transform 0.3s ease;
} */

/* Dropdown parent active state */
/* .navbar-nav .nav-item.dropdown.active>.nav-link {
    color: #1B75BC !important;
}

.navbar-nav .nav-item.dropdown.active>.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1B75BC;
    transform: scaleX(1);
    transition: transform 0.3s ease;
} */

/* Active dropdown item */
/* .dropdown-menu .dropdown-item.active {
    background-color: #1B75BC;
    color: white !important;
} */

/* Mobile responsive adjustments */
/* @media (max-width: 1199px) {

    .navbar-nav .nav-link::after,
    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
        bottom: 0;
        height: 1px;
        display: none !important;
    }
} */




/* bootstrap tooltip  */
 .tooltip.show {
      opacity: 1;
    }

    .tooltip.bs-tooltip-top .tooltip-arrow::before,
    .tooltip.bs-tooltip-bottom .tooltip-arrow::before,
    .tooltip.bs-tooltip-start .tooltip-arrow::before,
    .tooltip.bs-tooltip-end .tooltip-arrow::before {
      background: rgba(30, 30, 30, 0.9);
    }

    .tooltip-inner {
      background: rgba(30, 30, 30, 0.9);
      color: #fff;
      font-size: 14px;
      padding: 10px 14px;
      border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(4px);
      transition: all 0.3s ease;
    }

    