/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #020617;
}
.bag-dark
{
    color: #020617;
}
.fw-medium {
    font-weight: 500 !important;
}

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

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


.body-font{
    font-size: .75rem;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.text-green
{
    color: #32C36C;
}

/*** 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-logo {
    height: 40px;       /* CONTROL LOGO SIZE */
    width: auto;
    object-fit: contain;
}

/* Navbar text */
.navbar-title {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Navbar height control */
.navbar {
    min-height: 70px;
}

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

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

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

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

.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;
    }

    .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;
    }
}

.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/carousel-1.jpg) 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) + .75rem);
    }
}

@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);
}


/*** 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;
}


/*** 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);
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
    background: radial-gradient(circle at top left, #0b1c2d, #040b16);
    color: #fff;
}

.trusted-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #3fa9f5;
    font-weight: 600;
}

.text-green {
    color: #2ecc71;
}

/* Feature boxes */
.why-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.why-box i {
    font-size: 26px;
    color: #2ecc71;
    margin-bottom: 10px;
}

.why-box h6 {
    color: #fff;
    font-weight: 600;
}

.why-box p {
    font-size: 14px;
    color: #cfd8dc;
}

/* Image card */
.why-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-image-card img {
    width: 100%;
    height: auto;
}

/* Floating stats card */
.why-stats-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 16px;
    width: 260px;
}

.why-stats-card h6 {
    font-weight: 700;
}

@media (max-width: 991px) {
    .why-stats-card {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
}

/* Solar ROI Calculator */
.solar-roi-section {
    background: radial-gradient(circle at top, #0b1c2d, #050a14);
}

.roi-card {
    background: linear-gradient(180deg, #101c2f, #0a1220);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.roi-card.highlight {
    background: linear-gradient(180deg, #142640, #0b1528);
}

.roi-card.savings {
    background: linear-gradient(180deg, #0d2440, #081526);
}

.roi-card label {
    font-size: 14px;
}

.recommended {
    background: rgba(46, 204, 113, 0.1);
    padding: 12px;
    border-radius: 12px;
    color: #cfd8dc;
}

.form-range::-webkit-slider-thumb {
    background: #2ecc71;
}

.text-green {
    color: #2ecc71;
}

/* Subsidy Card */
.subsidy-card {
    background: linear-gradient(135deg, #1a1f26, #0f141b);
    border-radius: 18px;
    padding: 22px;
    color: #fff;
}

.subsidy-amount {
    color: #ffb703;
    font-weight: 800;
}

/* Impact Card */
.impact-card {
    background: radial-gradient(circle at top right, #0d3a70, #06162a);
    border-radius: 22px;
    padding: 28px;
    color: #fff;
    position: relative;
}

.impact-title {
    color: #5fa8ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.impact-amount {
    font-size: 46px;
    font-weight: 800;
}

.impact-amount span {
    font-size: 32px;
    font-weight: 700;
}

.impact-text {
    color: #cfd8dc;
    margin-top: 10px;
    font-size: 14px;
}

/* CO2 Badge */
.co2-badge {
    position: absolute;
    right: 20px;
    top: 80px;
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

/* CTA Button */
.btn-light {
    background: #ffffff;
    color: #000;
    border: none;
}

.btn-light:hover {
    background: #f1f1f1;
}
/* Government Subsidy Section */
.govt-subsidy-section {
    background: radial-gradient(circle at top, #0b1c2d, #050a14);
    color: #fff;
}

/* Top pill */
.pill-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(255,255,255,0.08);
    color: #cfd8dc;
}

/* Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.section-title span {
    color: #0d6efd;
}

.section-desc {
    max-width: 720px;
    color: #9fb3c8;
    font-size: 15px;
}

/* Scheme Card */
.scheme-card {
    background: linear-gradient(180deg, #141d2b, #0b1220);
    border-radius: 20px;
    padding: 26px;
    height: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Header */
.scheme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.scheme-header h5 {
    margin: 0;
    font-weight: 700;
}

.scheme-header small {
    color: #9fb3c8;
}

/* Icon */
.scheme-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.scheme-icon.blue {
    background: rgba(13,110,253,0.15);
    color: #0d6efd;
}

.scheme-icon.green {
    background: rgba(46,204,113,0.15);
    color: #2ecc71;
}

/* Badge */
.scheme-badge {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.scheme-badge.blue {
    background: rgba(13,110,253,0.15);
    color: #0d6efd;
}

.scheme-badge.green {
    background: rgba(46,204,113,0.15);
    color: #2ecc71;
}

/* Body rows */
.scheme-body .scheme-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #cfd8dc;
}

.scheme-body strong {
    color: #fff;
}

/* Footer */
.scheme-footer {
    margin-top: 22px;
    padding: 16px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}

.scheme-footer p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #cfd8dc;
}

.scheme-footer.blue {
    background: rgba(13,110,253,0.12);
    color: #0d6efd;
}

.scheme-footer.green {
    background: rgba(46,204,113,0.12);
    color: #2ecc71;
}
