* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html, body {
    overflow-x: hidden;
}

:root {
    --font-heading-1-size: 40px;
    --font-heading-2-size: 32px;
    --font-heading-3-size: 28px;
    --font-heading-4-size: 22px;
    --font-heading-5-size: 20px;
    --font-heading-6-size: 18px;
    --font-paragraph-size: 16px;
    --black: #000;
    --white: #fff;
    --primary: #1f345c;
    --secondary: #579434;
    --success: #e63d24;
    --warning: #fd9203;
}

body {
    --font-family: Nunito sans;
    --heading-font-family: Merriweather;
}

h1 {
    font-size: var(--font-heading-1-size);
}

h2 {
    font-size: var(--font-heading-2-size);
}

h3 {
    font-size: var(--font-heading-3-size);
}

h4 {
    font-size: var(--font-heading-4-size);
}

h5 {
    font-size: var(--font-heading-5-size);
}

h6 {
    font-size: var(--font-heading-6-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
}

p {
    font-size: var(--font-paragraph-size);
}


/* header */
.main-header {
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: var(--white);
    position: sticky;
    top: 0;
}

.header-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
}

.navbar {
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.navbar-brand img {
    height: 80px;
}

.menu-bar {
    border: 1px solid gray;
    border-radius: 15px;
    padding: 8px 35px;
    display: inline-flex;
    justify-content: center;
    gap: 25px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        color: var(--black);
        font-weight: 600;
        padding: 10px 5px;
        position: relative;
        transition: color 0.3s ease;
        text-decoration: none;
        white-space: nowrap;
    }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-item.show .nav-link {
            color: var(--primary);
            border-radius: 20px;
        }

.dropdown-section {
    margin-bottom: 15px;
}

    .dropdown-section:last-child {
        margin-bottom: 0;
    }

    .dropdown-section h6 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--secondary);
        display: inline-block;
        padding-bottom: 5px;
    }

.dropdown-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.dropdown-column {
    flex: 1;
    min-width: 150px;
}

.call-now-btn {
    color: var(--black);
    padding: 17px 25px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid gray;
    transition: all 0.3s ease;
}

    .call-now-btn:hover {
        color: var(--primary);
    }

.drawer-toggle {
    display: none;
}

.mobile-header {
    display: none;
}

.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}


#drawer-toggle:checked ~ .drawer-overlay {
    display: block;
    opacity: 1;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}


#drawer-toggle:checked ~ .drawer-menu {
right: 0;
}

#drawer-toggle,
.drawer-dropdown-toggle {
    display: none;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .drawer-header img {
        height: 50px;
    }

.drawer-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--black);
    padding: 0;
    line-height: 1;
}

.drawer-nav {
    padding: 20px 0;
}

    .drawer-nav .nav-link {
        padding: 15px 20px;
        display: block;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        position: relative;
    }

        .drawer-nav .nav-link:hover {
            background: linear-gradient(135deg, #0c36576e);
        }

    .drawer-nav .dropdown-toggle::after {
        content: '▼';
        float: right;
        transition: transform 0.3s;
    }

.drawer-dropdown-toggle:checked ~ .dropdown-toggle::after {
    transform: rotate(180deg);
}

.drawer-nav .dropdown-section h6 {
    padding: 10px 20px 5px 40px;
    margin: 0;
    letter-spacing: 0.5px;
}

.drawer-nav .dropdown-columns {
    flex-direction: column;
    gap: 0;
}

@media (min-width: 992px) and (max-width:1200px) {
    .navbar-nav {
        gap: 0;
    }
}

@media (max-width: 991px) {

    .mobile-header {
        display: flex;
        align-items: center;
    }


        .mobile-header .navbar-brand {
            order: 1;
        }

        .mobile-header .call-now-btn {
            order: 2;
            margin-left: auto;
        }

        .mobile-header .drawer-toggle {
            order: 3;
            margin-left: 15px;
        }


    .drawer-toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

        .drawer-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--black);
            display: block;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(2) {
        opacity: 0;
    }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .call-now-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .navbar-brand img {
        height: 90px;
    }
}

@media (max-width: 767px) {

    .header-wrapper {
        height: 80px;
        padding: 5px 0px;
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 575px) {
    .main-header {
        height: 60px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .drawer-menu {
        width: 250px;
    }
}

@media (max-width: 400px) {

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .drawer-menu {
        width: 220px;
    }
}


/* announcement bar */
.announcement-toggle {
    display: none;
}

.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: var(--font-paragraph-size);
    height: 40px;
    top: 0;
    z-index: 1001;
    transition: transform 0.4s ease, height 0.3s ease, opacity 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
}

.announcement-toggle:checked + .announcement-bar {
    transform: translateY(-100%);
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.announcement-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 9px 0;
}

.announcement-center {
    letter-spacing: 0.4px;
}

.announcement-right {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

    .announcement-right a {
        color: var(--white);
        font-size: var(--font-paragraph-size);
        text-decoration: none;
    }

        .announcement-right a:hover {
            color: var(--secondary);
        }

.announcement-close {
    display: none;
    position: absolute;
    right: 0px;
    top: 6px;
    cursor: pointer;
}

/* Tablet View */
@media (max-width: 991px) {
    .announcement-bar {
        border-radius: 0px;
        height: auto;
        font-size: 12px;
    }

    .announcement-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4px 0;
    }

    .announcement-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .announcement-close {
        display: block;
    }

    .announcement-right a {
        font-size: 12px;
    }
}

/* Hero Section */
.hero-section {
    background-image: url(https://res.cloudinary.com/duyfir2iw/image/upload/v1771838538/solar-hero_sc8kes.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    position: relative;
    display: flex;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

.hero-content {
    position: relative;
    color: var(--white);
    padding-bottom: 60px;
}

    .hero-content h1 {
        font-size: var(--font-heading-1-size);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: var(--font-paragraph-size);
        margin-bottom: 20px;
        line-height: 1.6;
    }

.hero-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid var(--secondary);
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 991px) {
    .hero-section {
        height: 480px;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .hero-section {
        height: 420px;
        background-size: cover;
        background-position: 70% center;
    }

    .hero-content {
        padding-bottom: 40px;
    }

        .hero-content h1 {
            font-size: 26px;
        }

        .hero-content p {
            font-size: 14px;
        }
}

/*2*/

.booking-section {
    padding-top: 50px;
    padding-bottom: 30px;
}

.cab-booking-section {
    padding: 30px 0;
}

.booking-box {
    height: auto;
}

.ride-box .booking-tags {
    justify-content: left;
}

.booking-card {
    background: var(--text-white);
    padding: 18px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 12px 30px rgba(31, 52, 92, 0.25);
}

    .booking-card h4 {
        font-weight: 600;
        text-align: center;
    }

    .booking-card h6 {
        text-align: center;
    }

.form-label {
    font-weight: 600;
    color: #666;
    display: block;
}

.form-input,
.form-select {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
}

.error-border {
    border: 1px solid #f0644f !important;
}

.error-message {
    color: #f0644f;
    font-size: 12px;
    margin-top: 4px;
}

.btn-call {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-whatsapp {
    background: var(--secondary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.booking-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.booking-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
}

    .booking-tags span {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 15px;
        background: #0c365730;
        border: 1px solid var(--text-primary);
    }

    .booking-tags a {
        color: inherit;
        text-decoration: none
    }

.btn-call,
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    width: 250px;
}

@media (max-width: 991px) {
    .booking-section {
        display: block;
    }

    .booking-box {
        height: auto;
    }
}

@media (max-width: 767px) {
    .form-select {
        font-size: 14px;
        padding: 8px 12px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {

    .booking-card .row > [class*="col-3"] {
        width: 50%;
        flex: 0 0 50%;
    }

    .booking-card .btn-call,
    .booking-card .btn-whatsapp {
        width: 100%;
        margin-top: 20px;
    }

    .cab-select {
        position: relative;
        z-index: 10;
    }

    select {
        font-size: 16px !important;
        max-width: 100%;
    }

    .booking-card {
        overflow: visible;
    }

    body {
        overflow-x: hidden;
    }
}

/* about section */
.benefits-section {
    padding: 50px 20px 0px 20px;
}

    .benefits-section h2 {
        font-size: var(--font-heading-2-size);
        text-align: center;
        color: var(--secondary);
    }

/* countbar */
.journey {
    padding: 0px 20px 20px 20px;
}

    .journey h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
    }

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

.journey-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 12px 30px rgba(31, 52, 92, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #569432, #1f345c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

.journey-card h3 {
    font-size: var(--font-heading-3-size);
    font-weight: 600;
    color: var(--primary);
}

.journey-card p {
    font-size: var(--font-paragraph-size);
    color: var(--secondary);
}

@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* solar-epc-process */

.solar-epc-process {
    padding: 3rem 0rem;
}

    .solar-epc-process h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
    }

    .solar-epc-process p {
        font-size: var(--font-paragraph-size);
    }

@media screen and (max-width: 768px) {
    .solar-epc-process {
        padding: 1rem 0rem;
    }
}

/* 6 */

.timeline-section {
    margin: 10px 0px;
}

.pm-timeline {
    max-width: 1024px;
    position: relative;
}

.pm-step {
    position: relative;
    margin-bottom: 3rem;
}

    .pm-step:last-child {
        margin-bottom: 0;
    }


.pm-node-wrap {
    position: relative;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-node {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    background: #111827;
    box-shadow: 0 0 0 6px rgba(17, 24, 39, .08), 0 8px 20px rgba(0, 0, 0, .12);
}

.pm-connector {
    position: absolute;
    width: 2px;
    height: 80%;
    background: repeating-linear-gradient(to bottom, rgba(17, 24, 39, .25) 0 10px, rgba(17, 24, 39, .05) 10px 20px);
    top: calc(50% + 16px);
}

.gradient-primary {
    background: linear-gradient(to top, var(--primary), #9bc4fb);
}

.gradient-secondary {
    background: linear-gradient(to top, var(--secondary), #8ddbb0);
}

.gradient-success {
    background: linear-gradient(to top, var(--success), #f59a88);
}

.gradient-warning {
    background: linear-gradient(to top, var(--warning), #ffeaa3);
}


.pm-card {
    border: 1px solid rgba(17, 24, 39, .05);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 6px 30px rgba(17, 24, 39, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pm-step-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
}

.pm-step-index {
    --size: 42px;
    width: var(--size);
    height: var(--size);
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: #111827;
    color: var(--white);
    font-weight: 600;
    letter-spacing: .03em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 6px 14px rgba(0, 0, 0, .18);
}


.pm-bullets {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

    .pm-bullets li {
        position: relative;
        padding-left: 28px;
        margin: .4rem 0;
    }

        .pm-bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .45rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #111827;
            box-shadow: 0 0 0 6px rgba(17, 24, 39, .08);
        }


@media (max-width: 991.98px) {

    .pm-node-wrap {
        padding: 1rem 0;
    }

    .pm-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 991.98px) {
    .pm-connector {
        display: block;
        position: absolute;
        top: calc(50% + 16px);
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: calc(100% - 40px);
        background: repeating-linear-gradient(to bottom, rgba(17, 24, 39, .25) 0 10px, rgba(17, 24, 39, .05) 10px 20px);
    }

    .pm-node-wrap {
        padding: 1rem 0;
        position: relative;
    }
}


.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f0ff, #f9fbff);
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.microcopy {
    color: #555;
}

.feature-card {
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 15px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-4px);
        background: #fdfdfd;
    }

.dashed-line {
    border-top: 1px dashed rgba(0, 0, 0, 0.25);
    margin: 1.5rem 0 1rem;
}

.sub-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555555;
    position: relative;
    display: inline-block;
}

section {
    overflow-x: hidden;
}

.trust-features {
    padding: 40px 0px;
}

/*Project card*/
.project {
    margin: 24px 0px;
}

    .project h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
        margin-bottom: 15px;
        text-align: center;
    }

    .project p {
        font-size: var(--font-paragraph-size);
        color: var(--secondary);
        margin-bottom: 30px;
        text-align: center;
    }

.project-box {
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    transition: all 0.3s ease;
}

    .project-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6), 0 8px 20px rgba(0, 0, 0, 0.12);
    }


    .project-box img {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
        border-radius: 15px;
        transition: transform 0.4s ease;
    }

    .project-box:hover img {
        transform: scale(1.05);
    }

    .project-box h3 {
        font-size: var(--font-heading-3-size);
        color: var(--primary);
        text-align: left;
        min-height: 48px;
        line-height: 34px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .project-box h4 {
        font-size: var(--font-heading-4-size);
        text-align: left;
        color: var(--secondary);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 3em;
    }

@media screen and (max-width: 768px) {
    .project {
        margin: 0px;
    }

    .project-box {
        margin: 0px 15px 10px 15px;
    }
}

/* slider */
.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

    .slider-container h2 {
        font-size: var(--font-heading-2-size);
        text-align: center;
        margin-bottom: 10px;
        color: var(--text-primary);
    }

    .slider-container p {
        font-size: var(--font-paragraph-size);
        text-align: center;
    }

.carousel-wrapper {
    display: block;
    position: relative;
}

.product-row {
    display: none;
}

.product-card {
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .product-card a {
        text-decoration: none;
        color: inherit;
    }

.product-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .product-img-wrapper img {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 15px;
    }

.product-card h5 {
    font-size: var(--font-heading-5-size);
    color: #000;
    min-height: 40px;
    display: flex;
    text-align: left;
}

.product-card p {
    font-size: var(--font-paragraph-size);
    color: var(--black);
    text-align: left;
}

.slider-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.image-slider-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.image-slider-btn {
    font-size: 13px;
    padding: 6px 25px;
    background-color: #0c3657;
    color: #fff !important;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

@media (max-width: 767px) {
    .carousel-wrapper {
        display: none;
    }

    .slider-btn-row {
        gap: 16px;
    }

    .image-slider-btn-row {
        gap: 16px;
        justify-content: flex-start;
    }

    .product-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid #e5e5e5;
        background: var(--white);
        cursor: pointer;
    }

        .product-row a {
            text-decoration: none;
            color: inherit;
        }

    .product-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .product-row img {
        width: 70px;
        height: 50px;
    }

    .product-text h4 {
        font-size: var(--font-heading-4-size);
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--black);
    }

    .product-text p {
        font-size: var(--font-paragraph-size);
        margin: 2px 0 0;
        text-align: left;
        color: #777;
        white-space: nowrap;
    }

    .arrow {
        font-size: 22px;
        color: var(--black);
    }
}

/* footer */

.footer {
    background: var(--primary);
    color: var(--white);
}

    .footer a {
        color: inherit;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer a:hover {
            color: var(--secondary);
        }

    .footer h5 {
        margin-bottom: 12px;
        font-weight: 600;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

.footer-middle {
    display: flex;
}

.footer-left {
    width: 80%;
    display: flex;
}

.footer-colum {
    width: 25%;
}

.footer-right {
    width: 25%;
}

.social-icon {
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .social-icon i {
        font-size: 16px;
    }

    .social-icon:hover {
        color: var(--secondary);
        border-color: var(--secondary);
    }

.verified-box {
    margin-top: 20px;
}

.verified-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .verified-row img {
        height: 28px;
    }

.footer-right a {
    text-align: center;
    line-height: 1.6;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: var(--font-paragraph-size);
    color: var(--white);
}


@media (max-width: 767px) {

    .footer-middle {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        text-align: left;
    }

    .footer-colum {
        width: 48%;
    }

    .footer-right {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

        .social-icon i {
            font-size: 14px;
        }

    .d-flex.gap-2 {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-right: 50px;
    }

        .footer-logo img {
            max-width: 130px;
            margin-bottom: 12px;
        }

    .footer-desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .footer-middle {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-colum {
        width: 100%;
    }

        .footer-colum h5 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .footer-colum ul li {
            font-size: 15px;
            line-height: 1.6;
        }

    .footer-right {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

        .footer-right h5 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .footer-right p,
        .footer-right a {
            font-size: 15px;
            line-height: 1.7;
        }

    .verified-box {
        margin-top: 30px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-desc {
        font-size: 13.5px;
        line-height: 1.6;
    }
}




/* faq */

.faq-section {
    background: linear-gradient(135deg, #0c36576e, #ffffff);
}

    .faq-section h2 {
        font-size: var(--font-heading-2-size);
    }




/* error page */

.error-container {
    text-align: center;
}

    .error-container img {
        width: 300px;
    }


/* contact us */

.contact-wrapper {
    padding: 0px 20px 50px 20px;
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 310px;
    transition: 0.3s;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 40px;
    justify-content: center;
}

.info-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #222;
}

.info-desc {
    color: #555;
    font-size: 0.95rem;
}


.location-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0px 20px 50px 20px;
    max-width: 1350px;
    margin: 0 auto;
}

.location-details {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background: var(--white);
    border-radius: 6px;
    padding: 70px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

    .location-details p {
        margin: 5px 0;
        color: #444;
    }

.location-map {
    flex: 2;
    min-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

    .location-map iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
        border: none;
    }

.contact-form-wrapper {
    max-width: 850px;
}

    .contact-form-wrapper h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
    }

/* tabination */
#industryTabs {
    gap: 0.5rem;
}

/* tabination */
#assessment-tab.active {
    background-color: #2c4a7a !important;
    --bs-bg-opacity: 1;
}

#design-tab.active {
    background-color: #6fb24d !important;
    --bs-bg-opacity: 1;
}

#procurement-tab.active {
    background-color: #f0644f !important;
    --bs-bg-opacity: 1;
}

#installation-tab.active {
    background-color: #ffae42 !important;
    --bs-bg-opacity: 1;
}

#approvals-tab.active {
    background-color: #2c4a7a !important;
    --bs-bg-opacity: 1;
}

#maintenance-tab.active {
    background-color: #6fb24d !important;
    --bs-bg-opacity: 1;
}

@media screen and (max-width:992px) {
    #industryTabs {
        flex-wrap: nowrap !important;
        justify-content: start !important;
        white-space: nowrap !important;
    }

        #industryTabs::-webkit-scrollbar {
            display: contents;
        }

    .scroll {
        overflow-x: auto;
    }
}


/* reviews */
.review-card {
    background: #f9fbfd;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: var(--font-paragraph-size);
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 4);
}

p.review-text {
    text-align: center;
}

.review-author {
    border-top: 1px solid #e5e5e5;
    padding-top: 12px;
    text-align: center;
}

    .review-author strong {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 15px;
        color: var(--primary);
        min-height: 48px;
    }

    .review-author span {
        font-size: 13px;
        color: #777;
    }

.review-stars {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: 14px;
}

    .review-stars .fa {
        margin-right: 3px;
    }


@media (max-width: 767px) {
    .owl-nav {
        display: none !important;
    }
}


/* icons */
.share-toggle {
    display: none;
}


.share-bar {
    position: fixed;
    top: 40%;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}


.main-btn {
    width: 15px;
    height: 100px;
    background: linear-gradient(135deg, #569432, #1f345c);
    cursor: pointer;
    border-radius: 8px;
    position: absolute;
    margin-left: -73px;
    transform: translateX(-80px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    top: 20%;
}

    .main-btn::before {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 65%;
        width: 1px;
        background-color: #fff;
        border-radius: 2px;
        transform: translateX(-50%);
    }


.close-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0;
    color: var(--text-red);
    font-size: 20px;
    background-color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-80px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 6px;
}


.share-bar a:not(.main-btn):not(.close-btn) {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    transform: translateX(-80px);
    opacity: 0;
    pointer-events: none;
}


.share-toggle:checked ~ .close-btn,
.share-toggle:checked ~ a:not(.main-btn):not(.close-btn) {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}

.share-toggle:checked ~ .main-btn {
    transform: translateX(-80px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: 0s;
}


.share-toggle:not(:checked) ~ .main-btn {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: 0.3s;
}


@media (min-width: 769px) {

    .share-bar .main-btn,
    .share-bar .close-btn {
        display: none;
    }

    .share-bar a:not(.main-btn):not(.close-btn) {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
}


/* calculator */

.solar-calculator {
    padding: 60px;
    text-align: center;
}

    .solar-calculator h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
    }

    .solar-calculator p {
        font-size: var(--font-paragraph-size);
        color: var(--secondary);
    }

.calculator-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin-top: 30px;
    flex-wrap: wrap;
}

.field {
    text-align: left;
}

    .field label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #555;
        margin-left: 10px;
    }

    .field select,
    .static-input {
        padding: 14px 18px;
        min-width: 220px;
        border-radius: 18px;
        border: 1px solid #dcdcdc;
        background: #fff;
        font-size: 15px;
    }

.static-input {
    cursor: default;
}

.calculator-form button {
    padding: 14px 28px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, #569432, #1f345c);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.results {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.calcy-box {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .calcy-box h5 {
        font-size: var(--font-heading-5-size);
        color: var(--primary);
    }

    .calcy-box h6 {
        font-size: var(--font-heading-6-size);
        color: var(--secondary);
        font-weight: 600;
    }

.hidden {
    display: none;
}

/* Service detail page */
.booking-image {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

    .booking-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.overlay-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-breadcrumb ul {
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
}

.overlay-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
}

.overlay-breadcrumb span {
    opacity: 0.9;
}

.image-overlay-wrap {
    position: relative;
}

.image-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    padding: 20px;
}

@media (max-width: 768px) {
    .overlay-heading {
        font-size: 24px;
    }

    .overlay-breadcrumb {
        font-size: 13px;
    }
}

/* modules */
.module-section {
    padding: 40px 0;
    background-color: var(--white);
}

    .module-section h2 {
        font-size: var(--font-heading-2-size);
        color: var(--primary);
    }

.img-stack {
    position: relative;
    text-align: center;
}

    .img-stack img:first-child {
        width: 80%;
        height: auto;
    }


/* project detail page */
.project-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 20px auto;
    gap: 30px;
    box-sizing: border-box;
    align-items: stretch;
}

.project-gallery {
    width: 70%;
    display: flex;
    gap: 20px;
    padding: 0;
    box-sizing: border-box;
}

.thumb-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100px;
}

    .thumb-list img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        cursor: pointer;
        border-radius: 6px;
        border: 2px solid transparent;
        transition: border 0.3s;
    }

        .thumb-list img.active {
            border-color: var(--primary-color)e;
        }

.main-photo {
    flex: 1;
    height: 500px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .main-photo img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        border-radius: 10px;
    }

.main-photo {
    position: relative;
    flex: 1;
    height: 500px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.date-display {
    padding: 12px 14px;
    border: 1px solid #aaa;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 12px;
    background: #f9f9f9;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0c3657;
    color: #fff;
    border-radius: 13px;
    width: 40px;
    height: 50px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
}

    .gallery-arrow:hover {
        background: #092a44;
        transform: translateY(-50%) scale(1.05);
    }

    .gallery-arrow.prev {
        left: 15px;
    }

    .gallery-arrow.next {
        right: 15px;
    }


@media (max-width: 768px) {
    .project-heading {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .project {
        padding: 1px 0 1px 0 !important;
    }
}


@media (max-width: 480px) {
    .project-heading {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
        margin-top: 0;
    }


    .project-gallery {
        width: 100%;
    }

    .thumb-list {
        display: none;
    }

        .thumb-list img {
            width: 80px;
            height: 60px;
            flex-shrink: 0;
        }

    .main-photo {
        width: 100%;
        height: 300px !important;
        margin: 0 auto;
        position: relative;
        margin-top: 0;
    }

        .main-photo img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            border-radius: 10px;
        }
}

/* 2 */
.rotate-180 {
    transform: rotate(180deg);
}

.feature-box {
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

/* 3 */

.choose-area {
    position: relative;
    z-index: 1;
    color: var(--white);
}


    .choose-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background-image: url(https://res.cloudinary.com/duyfir2iw/image/upload/v1771222546/shape-4_nmzdbm.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        opacity: 0.08;
        z-index: -1;
    }

.bg-blue {
    background: linear-gradient(135deg, #0c3657d4);
}

.master-hero {
    padding: 20px;
}

.master-card {
    border: 1px solid #e7eef6;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20, 40, 80, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.master-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    color: var(--primary);
    font-size: 1.4rem;
}

.feature-list li {
    margin-bottom: .45rem;
    font-weight: bold;
}

.policy-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

/* what's up btn */
.wh-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1060;
}

.wh-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #569432, #1f345c);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
}

    .wh-floating-btn i {
        font-size: 24px;
    }

    .wh-floating-btn.close-mode {
        background: linear-gradient(135deg, #569432, #1f345c);
    }

        .wh-floating-btn.close-mode i::before {
            content: "\f00d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

.wh-panel {
    width: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    overflow: hidden;
    transform-origin: bottom right;
    transition: all .35s ease-out;
    opacity: 0;
    transform: translateY(30px) scale(.85);
    margin-bottom: 12px;
    position: absolute;
    right: 0;
    bottom: 70px;
    display: none;
    flex-direction: column;
    max-height: 600px;
}

    .wh-panel.show {
        display: flex;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.wh-header {
    background: var(--secondary);
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .wh-header .title {
        font-weight: 600;
        font-size: 15px;
    }

    .wh-header .subtitle {
        font-size: 12px;
        opacity: .95;
    }

.wh-bubble {
    background: linear-gradient(135deg, #0c36576e);
    border-radius: 15px 15px 15px 5px;
    padding: 12px 15px;
    font-size: 14px;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px;
    line-height: 1.4;
}

.wh-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px;
    overflow: visible;
}

.wh-q-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px 8px 0 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

    .wh-q-btn:hover {
        background: var(--primary);
        color: #fff;
    }

.wh-btn {
    background: var(--secondary);
    color: #fff;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.whClose {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
}


/*Success popup*/
.success-popup {
    border-radius: 15px;
    padding: 25px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-weight: bold;
}

.success-popup h4 {
    font-weight: 600;
}

.success-popup p {
    color: var(--black);
    font-size: var(--font-paragraph-size);
}

.success-popup-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid var(--primary);
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}