/********** Template CSS **********/

:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.para-c {
    color: #343434 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.hero-pad {
    padding: 40px 0px 50px;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 45px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        left: -110px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }

    .font-main {
        font-size: 30px !important;
    }

    .container-solar {
        display: grid !important;
    }

    .high-list {
        height: 246px !important;
    }

    .taj-con {
        display: grid !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/breadcrumb.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }
    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + -5.25rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }
    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}





/*** Project Portfolio ***/

#portfolio-flters li {

    display: inline-block;

    font-weight: 500;

    color: var(--dark);

    cursor: pointer;

    transition: .5s;

    border-bottom: 2px solid transparent;

}



#portfolio-flters li:hover,

#portfolio-flters li.active {

    color: var(--primary);

    border-color: var(--primary);

}



.portfolio-img {

    position: relative;

}



.portfolio-img::before,

.portfolio-img::after {

    position: absolute;

    content: "";

    width: 0;

    height: 100%;

    top: 0;

    background: var(--dark);

    transition: .5s;

}



.portfolio-img::before {

    left: 50%;

}



.portfolio-img::after {

    right: 50%;

}



.portfolio-item:hover .portfolio-img::before {

    width: 51%;

    left: 0;

}



.portfolio-item:hover .portfolio-img::after {

    width: 51%;

    right: 0;

}



.portfolio-btn {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    z-index: 1;

    transition: .5s;

}



.portfolio-item:hover .portfolio-btn {

    opacity: 1;

    transition-delay: .3s;

}





/*** Quote ***/

@media (min-width: 992px) {

    .container.quote {

        max-width: 100% !important;

    }



    .quote-text {

        padding-right: calc(((100% - 960px) / 2) + .75rem);

    }

}



@media (min-width: 1200px) {

    .quote-text {

        padding-right: calc(((100% - 1140px) / 2) + .75rem);

    }

}



@media (min-width: 1400px) {

    .quote-text {

        padding-right: calc(((100% - 1320px) / 2) + .75rem);

    }

}





/*** Team ***/

.team-item {

    box-shadow: 0 0 45px rgba(0, 0, 0, .08);

}



.team-item img {

    border-radius: 8px 60px 0 0;

}



.team-item .team-social {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-end;

    background: #FFFFFF;

    transition: .5s;

}





/*** Testimonial ***/

.testimonial-carousel::before {

    position: absolute;

    content: "";

    top: 0;

    left: 0;

    height: 100%;

    width: 0;

    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);

    z-index: 1;

}



.testimonial-carousel::after {

    position: absolute;

    content: "";

    top: 0;

    right: 0;

    height: 100%;

    width: 0;

    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);

    z-index: 1;

}



@media (min-width: 768px) {



    .testimonial-carousel::before,

    .testimonial-carousel::after {

        width: 200px;

    }

}



@media (min-width: 992px) {



    .testimonial-carousel::before,

    .testimonial-carousel::after {

        width: 300px;

    }

}



.testimonial-carousel .owl-nav {

    position: absolute;

    width: 350px;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    justify-content: space-between;

    opacity: 0;

    transition: .5s;

    z-index: 1;

}



.testimonial-carousel:hover .owl-nav {

    width: 300px;

    opacity: 1;

}



.testimonial-carousel .owl-nav .owl-prev,

.testimonial-carousel .owl-nav .owl-next {

    position: relative;

    color: var(--primary);

    font-size: 45px;

    transition: .5s;

}



.testimonial-carousel .owl-nav .owl-prev:hover,

.testimonial-carousel .owl-nav .owl-next:hover {

    color: var(--dark);

}



.testimonial-carousel .testimonial-img img {

    width: 100px;

    height: 100px;

}



.testimonial-carousel .testimonial-img .btn-square {

    position: absolute;

    bottom: -19px;

    left: 50%;

    transform: translateX(-50%);

}



.testimonial-carousel .owl-item .testimonial-text {

    margin-bottom: 30px;

    box-shadow: 0 0 45px rgba(0, 0, 0, .08);

    transform: scale(.8);

    transition: .5s;

}



.testimonial-carousel .owl-item.center .testimonial-text {

    transform: scale(1);

}





/*** Contact ***/

@media (min-width: 992px) {

    .container.contact {

        max-width: 100% !important;

    }



    .contact-text {

        padding-left: calc(((100% - 960px) / 2) + .75rem);

    }

}



@media (min-width: 1200px) {

    .contact-text {

        padding-left: calc(((100% - 1140px) / 2) + .75rem);

    }

}



@media (min-width: 1400px) {

    .contact-text {

        padding-left: calc(((100% - 1320px) / 2) + .75rem);

    }

}





/*** Footer ***/

.footer .btn.btn-social {

    margin-right: 5px;

    color: #9B9B9B;

    border: 1px solid #9B9B9B;

    border-radius: 38px;

    transition: .3s;

}



.footer .btn.btn-social:hover {

    color: var(--primary);

    border-color: var(--light);

}



.footer .btn.btn-link {

    display: block;

    margin-bottom: 5px;

    padding: 0;

    text-align: left;

    color: #9B9B9B;

    font-weight: normal;

    text-transform: capitalize;

    transition: .3s;

}



.footer .btn.btn-link::before {

    position: relative;

    content: "\f105";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    margin-right: 10px;

}



.footer .btn.btn-link:hover {

    color: #FFFFFF;

    letter-spacing: 1px;

    box-shadow: none;

}



.footer .copyright {

    padding: 25px 0;

    border-top: 1px solid rgba(256, 256, 256, .1);

}



.footer .copyright a {

    color: var(--light);

}



.footer .copyright a:hover {

    color: var(--primary);

}







/* my css start */



.slide-img {

    width: 100%;

    height: 650px;

}



.text-justify {

    text-align: justify;

}



.fs {

    font-size: 40px;

    color: #32c36c;

}



.solar-journey-feature {

    background: white;

    backdrop-filter: blur(10px);

    border-radius: 15px;

    padding: 25px;

    margin-bottom: 25px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.solar-journey-feature:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}



.solar-journey-icon {

    font-size: 2.5rem;

    margin-bottom: 15px;

    display: block;

}



.solar-journey-feature-title {

    font-size: 1.3rem;

    font-weight: 600;

    margin-bottom: 10px;

}



.solar-journey-feature-desc {

    font-size: 1rem;

    opacity: 0.9;

    line-height: 1.5;

}



.solar-journey-cta {

    background: linear-gradient(45deg, #FFD700, #FFA500);

    color: #333;

    border: none;

    padding: 15px 40px;

    font-size: 1.2rem;

    font-weight: 600;

    border-radius: 50px;

    margin-top: 30px;

    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}



.solar-journey-cta:hover {

    transform: scale(1.05);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

}



.solar-journey-sun {

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 5rem;

    color: #FFD700;

    animation: pulse 2s infinite;

}



@keyframes pulse {

    0% {

        transform: scale(1);

        opacity: 0.8;

    }



    50% {

        transform: scale(1.1);

        opacity: 1;

    }



    100% {

        transform: scale(1);

        opacity: 0.8;

    }

}



@media (max-width: 768px) {

    .solar-journey-title {

        font-size: 2.2rem;

    }



    .solar-journey-subtitle {

        font-size: 1.2rem;

    }



    .solar-journey-sun {

        font-size: 3rem;

        top: 10px;

        right: 10px;

    }

}



.why-image {

    width: 100%;

    height: 350px;

}



.why-image img {

    width: 100%;

    height: 100%;

}



.abot-image {

    width: 100%;

    height: 400px;

}



.abot-image img {

    width: 100%;

    height: 100%;

}



.mv-div {

    width: 100%;

    height: 320px;

    border: solid #32c36c 2px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    background-color: white;



    padding: 20px;

}



.main-logo {

    height: 100%;

    width: 18%;

}



.main-logo img {

    height: 100%;

    width: 400px;

    padding: 5px 0px 5px 45px;

}



.add-p {

    color: #FFFFFF;

}



.foot-logo {

    /* height: 100%; */

    width: 100%;



}



.foot-logo img {

    /* height: 100%; */

    background-color: #ffff;

    padding: 5px;

    width: 100%;

}



.add-col i {

    color: #32c36c;

}





/* Gallery css */

.tabs {

    display: block;

    justify-content: center;

    margin-bottom: 30px;

    border-bottom: 1px solid #ddd;

}



.tab-button {

    background: none;

    border: none;

    padding: 15px 30px;

    font-size: 18px;

    cursor: pointer;

    color: #7f8c8d;

    transition: all 0.3s ease;

    position: relative;

}



.tab-button.active {

    color: #3498db;

}



.tab-button.active::after {

    content: '';

    position: absolute;

    bottom: -1px;

    left: 0;

    width: 100%;

    height: 3px;

    background-color: #3498db;

}



.tab-button:hover {

    color: #3498db;

}



.tab-content {

    display: none;

    animation: fadeIn 0.5s ease;

}



.tab-content.active {

    display: block;

}



.gallery {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

    gap: 20px;

}



.gallery-item {

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    cursor: pointer;

    background-color: white;

}



.gallery-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

}



.gallery-item img,

.gallery-item video {

    width: 100%;

    height: 200px;

    object-fit: cover;

    display: block;

}



.gallery-item .caption {

    padding: 15px;

    text-align: center;

    font-weight: 500;

}



/* Modal Styles */

.modal {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.9);

    z-index: 1000;

    justify-content: center;

    align-items: center;

    animation: fadeIn 0.3s ease;

}



.modal.active {

    display: flex;

}



.modal-content {

    max-width: 90%;

    max-height: 90%;

    position: relative;

    animation: zoomIn 0.3s ease;

}



.modal-content img,

.modal-content video {

    width: 100%;

    height: auto;

    max-height: 80vh;

    border-radius: 8px;

}



.modal-caption {

    color: white;

    text-align: center;

    padding: 15px;

    font-size: 18px;

}



.close-button {

    position: absolute;

    top: 15px;

    right: 35px;

    color: #f1f1f1;

    font-size: 40px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}



.close-button:hover {

    color: #bbb;

}



.nav-button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    color: white;

    font-size: 30px;

    padding: 10px 15px;

    cursor: pointer;

    background-color: rgba(0, 0, 0, 0.5);

    border: none;

    border-radius: 5px;

    transition: 0.3s;

}



.nav-button:hover {

    background-color: rgba(0, 0, 0, 0.8);

}



.prev {

    left: 20px;

}



.next {

    right: 20px;

}



@keyframes fadeIn {

    from {

        opacity: 0;

    }



    to {

        opacity: 1;

    }

}



@keyframes zoomIn {

    from {

        transform: scale(0.8);

        opacity: 0;

    }



    to {

        transform: scale(1);

        opacity: 1;

    }

}



/* Responsive adjustments */

@media (max-width: 768px) {

    .gallery {

        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    }

    .main-logo img {
        width: 280px;
    }



    .tab-button {

        padding: 12px 20px;

        font-size: 16px;

    }



    .abot-image img {

        width: 100%;

        height: auto;

    }



    .abot-image {

        width: 100%;

        height: auto;

    }



    .mv-div {

        width: 100%;

        height: 415px;

    }

}



@media (max-width: 480px) {

    .gallery {

        grid-template-columns: 1fr;

    }



    .tab-button {

        padding: 10px 15px;

        font-size: 14px;

    }

}



.foot-about {

    padding-top: 20px;

    text-align: justify;

}



.hero-span-headings {

    color: #24be62;

}



.business-card {

    width: 100%;

    max-width: 500px;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 20px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

    overflow: hidden;

    transition: transform 0.3s ease;

}



.business-card:hover {

    transform: translateY(-10px);

}



.card-header {

    background: linear-gradient(to right, #32c36c, #4a6491);

    color: white;

    padding: 25px 20px;

    text-align: center;

    position: relative;

}



.card-header::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(to right, #fdbb2d, #b21f1f);

}



.company-name {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 5px;

    letter-spacing: 1px;

    color: #FFFFFF;

}



.company-tagline {

    font-size: 14px;

    opacity: 0.9;

    font-weight: 300;

}



.card-body {

    padding: 25px;

}



.contact-info {

    margin-bottom: 25px;

}



.info-group {

    display: flex;

    margin-bottom: 15px;

    align-items: flex-start;

}



.info-icon {

    width: 40px;

    height: 40px;

    background: #32c36c;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    margin-right: 15px;

    flex-shrink: 0;

}



.info-content {

    flex: 1;

}



.info-label {

    font-size: 20px;

    color: #32c36c;

    font-weight: 600;

    margin-bottom: 3px;

}



.info-value {

    font-size: 16px;

    color: #2c3e50;

    line-height: 1.4;

}



.phone-numbers {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

}



.phone-number {

    background: #f1f2f6;

    padding: 5px 10px;

    border-radius: 5px;

    font-size: 14px;

}



.email-link {

    color: #3498db;

    text-decoration: none;

    transition: color 0.3s;

}



.email-link:hover {

    color: #2980b9;

    text-decoration: underline;

}



.card-footer {

    background: #f8f9fa;

    padding: 15px 25px;

    text-align: center;

    border-top: 1px solid #eaeaea;

    font-size: 12px;

    color: #7f8c8d;

}



@media (max-width: 480px) {

    .business-card {

        max-width: 100%;

    }



    .card-body {

        padding: 20px 15px;

    }



    .company-name {

        font-size: 24px;

    }

}





.form-floating>.form-select {

    padding-top: 1.625rem;

    padding-bottom: 0.625rem;

}



.hero-sec-img {

    padding: 40px;

}



.hero-sec-rev {

    padding: 10px 40px;

    display: flex;

    gap: 30px;

}



.fam-card h2 {

    margin: 0;

}



.fam-card h4 {

    margin: 0;

}



.fam-card h6 {

    margin: 0;

}



.hero-sec-img img {

    width: 90%;

    border-radius: 5px;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}



/* hero - table */

.subsidy-page {

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 0px;

}



.subsidy-container {

    width: 100%;

    max-width: 1000px;

    background-color: white;

    /* border-radius: 12px; */

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    overflow: hidden;

}



.tsubs-color {

    color: darkblue;

}



.table>:not(:last-child)>:last-child>* {

    border-bottom-color: rgb(243 19 19);

    background-color: #32c36c;

    color: #fff;

}



/* Targets all <tr> inside table with class 'tab-sec' */

.table.tab-sec tr {

    background-color: #f0f0f0;

    /* Example style */

}



/* Targets all <td> inside a table with class 'tab-sec' */

table.tab-sec tr td {

    font-size: 14px;

    font-weight: 500;

    color: #303030;

}





/* .hero-table-heading-sec th:nth-child(2) {

    background-color: #f4f4f4;

    color: #000;

    font-weight: bold;

} */





.subsidy-header {

    background: linear-gradient(to right, #3498db, #2c3e50);

    color: white;

    padding: 25px 30px;

    text-align: center;

}



.subsidy-title {

    font-size: 28px;

    font-weight: 600;

    margin-bottom: 5px;

}



.subsidy-subtitle {

    opacity: 0.9;

    font-size: 16px;

}



.subsidy-table-container {

    overflow-x: auto;

}



.subsidy-table {

    width: 100%;

    border-collapse: collapse;

}



.subsidy-table-head {

    background-color: #2c3e50;

    color: white;

}



.subsidy-table-header {

    padding: 18px 15px;

    text-align: left;

    font-weight: 600;

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.subsidy-table-row {

    border-bottom: 1px solid #e1e1e1;

    transition: all 0.3s ease;

}



/* .subsidy-table-row:hover {

    background-color: #f8f9fa;

    transform: translateY(-2px);

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

} */



.subsidy-table-data {

    padding: 16px 15px;

    font-size: 15px;

    color: #333;

}



.capacity-cell {

    font-weight: 600;

    color: #2c3e50;

}



.unit-cell {

    color: #3498db;

}



.currency-value {

    font-weight: 600;

}



.central-subsidy {

    color: #27ae60;

}



.state-subsidy {

    color: #e74c3c;

}



.total-subsidy {

    color: #9b59b6;

    font-weight: 700;

}



.subsidy-table-row:nth-child(even) {

    background-color: #f8f9fa;

}



.subsidy-table-row:nth-child(even):hover {

    background-color: #f1f3f4;

}



.subsidy-footer {

    padding: 15px 30px;

    text-align: center;

    background-color: #f8f9fa;

    color: #666;

    font-size: 14px;

    border-top: 1px solid #e1e1e1;

}



@media (max-width: 768px) {



    .subsidy-table-header,

    .subsidy-table-data {

        padding: 12px 10px;

        font-size: 14px;

    }



    .subsidy-title {

        font-size: 24px;

    }



    .subsidy-subtitle {

        font-size: 14px;

    }

}



@media (max-width: 480px) {

    .subsidy-container {

        border-radius: 8px;

    }



    .subsidy-table-header {

        font-size: 13px;

        padding: 10px 8px;

    }



    .subsidy-table-data {

        padding: 10px 8px;

        font-size: 13px;

    }

}



/* popup tbn */



/* .hero-pop-btn-sec {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);

    padding: 20px;

} */



.main-container {

    text-align: left;

    color: white;

    max-width: 500px;

    width: 100%;

}



.page-title {

    margin-bottom: 30px;

    font-weight: 300;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

    font-size: 2.5rem;

}



.page-description {

    margin-bottom: 40px;

    font-size: 1.1rem;

    line-height: 1.6;

    opacity: 0.9;

}



.popup-trigger {

    background: #32c36c;

    color: white;

    border: none;

    padding: 12px 30px;

    font-size: 1.1rem;

    border-radius: 5px;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);

    display: inline-flex;

    align-items: center;

    gap: 10px;

}



.popup-trigger:hover {

    background: #24be62;

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);

}



.popup-trigger:active {

    transform: translateY(1px);

}



.form-overlay {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(0, 0, 0, 0.7);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999999;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

}



.form-overlay.active {

    opacity: 1;

    visibility: visible;

}



.form-container {

    background: white;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    width: 90%;

    max-width: 450px;

    transform: scale(0.9);

    transition: transform 0.4s ease;

    overflow: hidden;

}



.form-overlay.active .form-container {

    transform: scale(1);

}



.form-header {

    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */

    background-color: #2b3abc;

    color: white;

    padding: 25px 20px;

    text-align: center;

    position: relative;

}



.form-title {

    font-size: 1.8rem;

    font-weight: 500;

    margin-bottom: 5px;

}



.form-subtitle {

    font-size: 0.9rem;

    opacity: 0.9;

}



.close-button {

    position: absolute;

    top: 15px;

    right: 15px;

    background: rgba(255, 255, 255, 0.2);

    border: none;

    color: white;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: background 0.3s ease;

}



.close-button:hover {

    background: rgba(255, 255, 255, 0.3);

}



.form-body {

    padding: 20px;

}



.input-group {

    margin-bottom: 5px;

    text-align: left;

}



.input-label {

    display: block;

    margin-bottom: 5px;

    color: #555;

    font-weight: 500;

    font-size: 14px;

}



.form-input {

    width: 100%;

    padding: 5px 6px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-size: 12px;

    transition: all 0.3s ease;

}



.form-input:focus {

    border-color: #6a11cb;

    box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.2);

    outline: none;

}



.message-input {

    resize: vertical;

    min-height: 100px;

}



.submit-button {

    background: linear-gradient(135deg, #2D357A 0%, #2a3ac5 100%);

    color: white;

    border: none;

    padding: 14px 20px;

    width: 100%;

    border-radius: 8px;

    font-size: 1rem;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;

    margin-top: 10px;

}



.submit-button:hover {

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);

}



.form-footer {

    padding: 15px 25px 25px;

    text-align: center;

    color: #777;

    font-size: 0.85rem;

}



@media (max-width: 480px) {

    .form-container {

        width: 95%;

    }



    .form-body {

        padding: 20px;

    }



    .page-title {

        font-size: 2rem;

    }

}



.our-presence-sec {

    padding: 60px 0px 60px;

    background-color: rgb(245, 245, 245)
}



.our-presence-sec .our-pre-div h2 {

    font-size: 44px;

    text-align: center;

    padding: 0px 0px 30px;

    font-weight: 400;

    color: #24be62;

}



.our-presence-sec .our-pre-div h2 span {

    font-weight: 800;

}



.presence-cities h4 {

    text-align: center;

    font-size: 20px;

    color: #2C7AB6;

    margin: 15px 0px;

}



/* ====================== mobile resolution ========================= */



@media (max-width: 991.98px) {

    .hero-sec-img img {

        width: 100%;

    }



    .hero-sec-img {

        padding: 0;

    }



    .hero-sec-rev {

        padding: 20px 0px;

        display: flex;

        gap: 20px;

    }



    .main-logo img {

        padding: 5px 0px 5px 10px;

    }



    .hero-sec-rev img {

        width: 60%;

    }

}





/* wp button */



.content-section {

    background: white;

    padding: 25px;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    margin-bottom: 20px;

}



/* WhatsApp button styles */

.wa-floating-container {

    position: fixed;

    bottom: 6%;

    right: 40px;

    z-index: 1000;

}



.wa-button-main {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    /* background-color: #25D366; */

    border-radius: 50%;

    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);

    cursor: pointer;

    transition: all 0.3s ease;

    animation: wa-pulse 2s infinite;

}



.wa-button-main:hover {

    transform: scale(1.1);

    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);

}



.wa-button-icon {

    width: 50px;

    height: 50px;

    /* filter: brightness(0) invert(1); */

}



.wa-tooltip {

    position: absolute;

    right: 70px;

    top: 50%;

    transform: translateY(-50%);

    background-color: #075E54;

    color: white;

    padding: 8px 12px;

    border-radius: 4px;

    font-size: 14px;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

}



.wa-button-main:hover .wa-tooltip {

    opacity: 1;

    visibility: visible;

}



/* Animation for the button */

@keyframes wa-pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);

    }



    70% {

        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);

    }



    100% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);

    }

}



/* Responsive styles */

@media (max-width: 768px) {

    .wa-button-main {

        width: 55px;

        height: 55px;

    }



    .wa-button-icon {

        width: 40px;

        height: 40px;

    }



    .wa-floating-container {

        bottom: 40px;

        right: 40px;

    }

    .estimateMenuBtn {
        margin-bottom: 10px;
        margin-left: 20px;
        margin-top: -16px;
    }

}



@media (max-width: 480px) {

    .wa-button-main {

        width: 50px;

        height: 50px;

    }



    .wa-button-icon {

        width: 50px;

        height: 50px;

    }



    .wa-floating-container {

        bottom: 40px;

        right: 40px;

    }



    .wa-tooltip {

        font-size: 12px;

        padding: 6px 10px;

    }

}

/*get-an-estimate start*/
.calculator-section {
    padding: 40px 0;
    background-color: #2c7ab6;
}

.calculator-box {
    background: #fff;
    color: #333;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* height: 100%; */
}

.tab-buttons {
    display: flex;
    background: #1f4f68;
    border-radius: 40px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}

.tab-buttons button {
    border: none;
    outline: none;
    padding: 10px 25px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tab-buttons button.active {
    background: #32c36c;
    color: #ffffff;
    border-radius: 30px;
}

.input-box {
    background: #fff;
    color: #252525;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.1rem;
    /* text-align: center; */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #fff;
    font-weight: 500;
}

.toggle-switch input {
    accent-color: #00b894;
}

.heading-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cal-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.data-value {
    font-size: 24px;
    font-weight: 700;
    color: #285a78;
    word-wrap: break-word;
}

.data-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #252525;
}

.icon-box img {
    max-height: 120px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #32c36c;
    transition: 0.4s;
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 6px;
    bottom: 6px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #1bac55;
}

input:checked+.slider::before {
    transform: translateX(26px);
}

@media (max-width: 768px) {
    .calculator-box {
        margin-top: 10px;
        position: relative;
    }

    .icon-box img {
        max-height: 110px;
        position: absolute;
        right: 0;
        top: 10px;
    }

    .toggle-switch {
        margin-bottom: 10px;
    }
    .mobile-foot {
        display: none;
    }
}

.electricity-bill-amount {
    border: none;
    outline: none;
    width: 92%;
}

/*get-an-estimate closed*/



/* Keyword pages start */

.about-services-section {
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
}

/* Left Image */
.about-image-box {
    overflow: hidden;
    border-radius: 10px;
}

.about-main-image {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

/* Title */
.about-title {
    color: #1a2a36;
    letter-spacing: 0.5px;
    font-size: 29px;
    border-bottom: 4px solid #2c7ab6;
    display: inline-block;
}

/* Description */
.about-description p {
    font-size: 0.95rem;
    color: #343434;
    line-height: 1.7;
}

/* Right Side Boxes */
.about-right-box,
.services-right-box,
.contact-right-box {
    transition: all 0.3s ease;
}

.about-right-box:hover,
.services-right-box:hover,
.contact-right-box:hover {
    transform: translateY(-4px);
}

/* Subheadings */
.about-subheading {
    color: #ffffff;
    /* border-left: 6px solid #3368c7; */
    background: #2c7ab6;
    padding-left: 8px;
    padding: 10px;
}

.professional {
    font-size: 0.95rem;
}

/* ===== Services Links ===== */
.service-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-link {
    display: block;
    text-decoration: none;
    color: #343434;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
    border-left: 4px solid #2c7ab6;
}

.service-link:hover {
    background-color: #3368c7;
    color: black;
}

/* ===== Contact Box ===== */
.contact-list li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #1a2a36;
}

.contact-list a {
    color: #343434;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}




/* Responsive */
@media (max-width: 991px) {
    .about-main-image {
        height: 240px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .service-link {
        font-size: 14px;
    }

    .solar-img img {
        height: auto !important;
        width: 100%;
        margin-bottom: 15px;
    }
}



/* onnn */

/* -funnels-Css--- */
/*mobile footer css starts*/

.navbar-footer a {
    float: left;
    display: none;
    width: 25%;
    color: #fff;
    text-align: center;
    padding: 25px 22px 38px 20px;
    text-decoration: none;
    font-size: 21px;
    /* margin-right: 22px;
    margin-left: 21px; */
}

.navbar-footer a:hover {
    background: #F1F1F1;
    color: black;
}

.w_app>i {
    color: #fff;
}

.w_app {
    background-color: #28A745;
}

.e_mail>i {
    color: #fff;
}

.e_mail {
    background-color: #DC3545;
}

.ems_call>i {
    color: #fff;
}

.ems_call {
    background-color: #007BFF;
}

.ems_enquiry>i {
    color: #fff;
}

.ems_enquiry {
    background-color: #FFC107;
}

.upside {
    display: none;
}

.mobile-hidden i {
    color: white;
}

@media screen and (min-width :315px) and (max-width :768px) {
    .upside {
        display: block;
    }

    .funnal-mobile {
        display: none !important;
    }

    .mobile-footer {
        display: block !important;
    }

    .social-mobile li a .fa {
        display: none;
    }

    .navbar-footer {
        overflow: scroll;
        z-index: 9999999 !important;
        background-color: #ccc;
        position: fixed;
        bottom: -16px;
        width: 100%;
    }

    .navbar-footer a:hover {
        background: #f1f1f1;
        color: black;
    }

    .main {
        padding: 0px;
        margin-bottom: 54px;
    }

    .navbar-footer {
        display: block !important;
    }

}

.mobile-hidden a {
    font-size: 16px;
}

/* mobile footer css end*/
@media only screen and (max-width:768px) {


    .mobile-hidden {
        display: none !important;
    }

    .tab {
        margin: 4px 4px !important;
    }

    .brochures-prgs .fa-plus {
        margin-right: 30px !important;
    }
}

/* Funnel css start */
.btn-success {
    color: #fff !important;
    background-color: #5cb85c;
    border-color: #4cae4c;
    padding: 15px 30px;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-danger {
    color: #fff !important;
    background-color: #d9534f;
    border-color: #d43f3a;
    padding: 15px 30px;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-warning {
    color: #fff !important;
    background-color: #f0ad4e;
    border-color: #eea236;
    padding: 15px 30px;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

/* .btn-primary {
      color: #fff!important;
      background-color: #0084bd;
      border-color: #0d668d;
      padding: 15px 30px;
    }
    .btn-primary:hover {
      color: #fff;
      background-color: #0d668d;
      border-color: #204d74
    } */
.pb-20 {
    padding-top: 10px;
    padding-bottom: 30px;
}


/* -funnels-Css-Ends--- */

/* ----Faq---- */
.faq .brochures-prgs {
    cursor: pointer;
    border-top: 4px solid #2c7ab6;
    border-left: 3px solid #2c7ab6;
    padding: 11px;
    color: #ffffff;
    border-radius: 9px;
    background: #2c7ab6;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.faq .disp {
    display: none;
    padding: 20px;
}


.faq .rotate {
    transform: rotate(180deg);
}

.faq .brochures-prgs .fa {
    font-size: 18px;
    right: 12px;
    position: absolute;
    padding: 15px 15px;
    border-radius: 6px;
    border-top-left-radius: 0%;
    margin-top: -11px;
    margin-right: 0px;
    background: rgba(241, 183, 183, 0.664);
    background: #2c7ab6;
    color: var(--bs-white);
}

@media (max-width: 768px) {
    .faq .brochures-prgs .fa {
        font-size: 18px;
        right: 0;
        position: absolute;
        padding: 9px;
        border-radius: 6px;

        border-top-left-radius: 0%;
        top: 10px;
    }
}

/* ----Faq-End---- */


.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

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

.card i {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 1px solid white;
    background: #32c36c;
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* top: -55px; */
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.card p {
    color: #555;
    line-height: 1.5;
}

.highlight {
    border: 2px solid #ff8c00;
}


.subsidy-table {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.subsidy-table th,
.subsidy-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.subsidy-table th {
    background-color: #4CAF50;
    color: #fff;
    font-weight: 600;
}

.subsidy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.subsidy-table tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

@media screen and (max-width: 600px) {

    .subsidy-table th,
    .subsidy-table td {
        padding: 8px 10px;
    }
}

.card-solar i {
    height: 100px;
    width: 100px;
    font-size: 35px;
    border-radius: 50%;
    border: 1px solid white;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    color: #32c36c;
}

.card-solar {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

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

.card-solar h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.card-solar p {
    color: #555;
    line-height: 1.5;
}

.card-container-solar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    /* margin: auto; */
    margin-top: 60px;
}

.container-solar {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    /* margin: auto; */
    margin-top: 60px;
}

.solar-box {
    margin-top: 45px;
}

.solar-box-list {
    margin-top: 45px;
}

.solar-box-list h3 {
    text-align: center;
    font-size: 18px;
}

.solar-box-list p {
    text-align: center;
}

.section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.cards-list {
    background-color: #fff;
    flex: 1 1 300px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cards-list h2 {
    color: #1a2a36;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cards-list ul {
    list-style-type: none;
    padding-left: 0px;
}

.cards-list ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cards-list i {
    color: #2c7ab6;
    padding-right: 20px;
}

.highlights {
    color: #2c7ab6;
    font-weight: bold;
}

.font-main {
    font-size: 3rem;
}

.high-list {
    height: 360px;
}




:root {
    --bg: #f6fbff;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #0f766e;
    --accent-2: #065f46;
    --glass: rgba(255, 255, 255, 0.6);
    --shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
    --radius: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px
}

.feature-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f8fffd)
}

.icon-f {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700
}

.feature-box h4 {
    margin: 0;
    font-size: 15px
}

.feature-box p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px
}

@media (max-width:520px) {
    .features {
        grid-template-columns: 1fr
    }
}

.taj-con {
    display: flex;
}

/* Testimonial css start */
#quote-carousel {
    padding: 0 10px 30px 10px;
    margin-top: 60px;
}

#quote-carousel .carousel-control {
    background: none;
    color: #000000;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
}

#quote-carousel .carousel-indicators {
    position: relative;
    right: 50%;
    top: auto;
    bottom: 0px;
    margin-top: 20px;
    margin-right: -19px;
}

#quote-carousel .carousel-indicators li {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid #000000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 0.4;
    overflow: hidden;
    transition: all .4s ease-in;
    vertical-align: middle;
}

#quote-carousel .carousel-indicators .active {
    width: 128px;
    height: 128px;
    opacity: 1;
    transition: all .2s;
}

.item blockquote {
    border-left: none;
    margin: 0;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}

.testimonial-section {
    background-color: #000000;
}

.testimonial-section h2 {
    color: #ffffff;
}

.testimonial-section p {
    color: #ffffff;
}

.testimonial-heading {
    font-family: 'Playfair Display', serif;
    /* Elegant serif font */
    font-size: 2.5rem;
    /* Adjust size */
    font-weight: 700;
    /* Bold */
    color: #333;
    /* Dark grey */
    position: relative;
    margin-bottom: 40px;
}

.testimonial-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #32c36c;
    /* Stylish underline color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.testimonial-heading:hover {
    color: #32c36c;
    /* Subtle hover effect */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Testimonial css end */


.contact-l li {
    list-style: none;
}

.contact-l {
    padding-left: 0px !important;
}

.contact-l i {
    color: #2c7ab6;
}

.solar-img {
    height: 100%;
    width: 100%;
}

.solar-img img {
    height: 255px;
    width: 100%;
}

.home-were {
    line-height: 2rem;
    list-style: none;
    padding-left: 0px !important;
}

.home-were i {
    color: #32c36c;
    padding-right: 15px;
}


.dropdown-menu {
    position: static;
    float: none;
}

.fsize {
    font-size: 2rem;
}

.colour a {
    color: #9B9B9B;
}

.co-head a {
    color: #ffffff;
}