@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

.logo-Img {
    width: 6rem;
}

.nav-bg {
    background: url('../assets/images/home/nav-bg.webp');
    background-size: cover;
    background-position: center;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.container-xxl {
    padding: 0 !important;
}

.nav-item a {
    color: #1E2447 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.3px;
    position: relative;
    padding: 10px 0 !important;
    text-align: start;
}

.nav-item a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    height: 2px;
    background: #1E2447;
    width: 0;
    transition: width 0.3s ease;
}

.nav-item:hover a::after {
    width: 100%;
}

.contact-btn {
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: #1E2447;
    padding: 10px 20px;
    border: 1.5px solid #1E2447;
    border-radius: 10px;
}

.heading-1 {
    font-family: "Asap", sans-serif !important;
    color: #1E2447;
    font-size: 2.3rem;
    font-weight: 700;
}
.asap{
    font-family: "Asap", sans-serif !important;
}
.heading-2 {
    font-family: "Asap", sans-serif !important;
    color: #1E2447;
    font-weight: 700;
}

.hero-Btn {
    border: none;
    background: #1E2447;
    padding: 12px 10px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: 0.4s linear;
    text-decoration: none;
}

.hero-Btn:hover {
    box-shadow: 2px 2px 5px #1E2447;
    transform: translateY(-2px);
}
.hero-Box h5,.hero-Box p {
    font-family: "Asap", sans-serif;
    color:#1E2447;
    transition: 0.2s linear;
}
.hero-Box:hover h5,
.hero-Box:hover p {
    color:white;
}

.hero-Box svg {
    transition:0.2s linear;
}
.hero-Box:hover svg {
    filter:invert(1) brightness(1.5);
}

.hero-Box {
    cursor: default;
    height: 300px;
    width: 100%;
    background: #b3d1fc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 0px 20px;
    transition: 0.2s linear;
}

.hero-Box:hover {
    background: #1E2447 !important;
}

.strike-svg {
    position: absolute;
    top: -35px;
    left: -20px;
    width: 25px;
}

.my-6 {
    margin: 70px 0px;
}

.sun-set {
    position: absolute;
    top: -60px;
    right: -20px;
    width: 40%;
    animation: sunset 10s linear infinite;
}

@keyframes sunset {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-carousel {
    max-width: 450px;
    width: 100%;
    height: auto;
    background: #1E2447;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-control-prev {
    left: -15px !important;
}

.carousel-control-next {
    right: -15px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border: 1.5px solid white !important;
    border-radius: 5px !important;
}

.carousel-item {
    background: #1E2447;
    cursor: default;
}

.img-box {
    position: absolute;
    z-index: -1;
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.img-box img.hide {
    opacity: 0;
}

#question-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-button {
    margin: 5px;
    padding: 15px 20px;
    background-color: transparent;
    color: #1E2447;
    border: 2px solid rgb(195, 195, 195);
    border-radius: 5px;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: 0.1s linear;
}

.option-button:hover {
    border: 2px solid #1E2447;
}

.options-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.current-active {
    border: 2px solid #1E2447;
}

.next-button,
.prev-button {
    background: #1E2447;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 50px;
    border: none;
    border-radius: 10px;
}

.nav-btn-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5px;
    margin-top: 25px;
    gap: 20px;
}

.option-radio {
    cursor: pointer;
    padding: 40px 5px;
    border: 1.3px solid rgb(195, 194, 194);
    transition: 0.2s linear;
}

.option-radio:hover {
    border: 1.3px solid #1E2447;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1.3px solid #1E2447 !important;
}

.roof-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.input-fields {
    width: 360px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide the radio buttons */
input.option-radio {
    display: none;
}

/* Style the labels */
label.option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1.5px solid #1E2447;
    border-radius: 5px;
    color: #1E2447;
    font-weight: 500;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    transition: 0.2s linear;
}

label.option-btn:hover {
    background: #1E2447;
    color: white;
}

/* Change the style when the radio button is checked */
input.option-radio:checked+label.option-btn {
    background: #1E2447;
    color: white;
}

button.option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1.5px solid #1E2447;
    border-radius: 5px;
    color: #1E2447;
    font-weight: 500;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    transition: 0.2s linear;
}

button.option-btn:hover {
    background: #1E2447;
    color: white;
}

button.prev-btn {
    background: #1E2447;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

/* Show the first tab by default */
#step1 {
    display: block;
}

.slider-container {
    position: relative;
    margin: 50px auto;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #002855;
    outline: none;
    transition: opacity .15s ease-in-out;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #002855;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #002855;
    cursor: pointer;
}

.slider-value {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: #002855;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-labels span {
    font-size: 14px;
    color: #002855;
}

.work-div {
    background: #E3E6ED;
    height: 320px;
    width: 150px;
    border-radius: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 10px 0 10px 0;
    box-shadow: inset 20px 20px 60px #E3E6ED,
        inset -20px -20px 60px #ffffff;
}

.work-div img {
    width: 100%;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.work-div:hover img {
    transform: translateY(107%);
}

.work-div .steps {
    transition: transform 0.4s ease;
}

.work-div:hover .steps {
    transform: translateY(-170%);
}

.steps {
    position: relative;
    z-index: 1;
    cursor: default;
}

.blue-div {
    background: #1E2447;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.work-div .blue-div {
    transition: transform 0.4s ease;
}

.work-div:hover .blue-div {
    transform: translate(-50%, -50%) rotate(135deg);
}

.work-div-2 {
    background: #E3E6ED;
    height: 320px;
    width: 150px;
    border-radius: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 23px 0 10px 0;
    box-shadow: inset 20px 20px 60px #E3E6ED,
        inset -20px -20px 60px #ffffff;
}

.work-div-2 img {
    width: 100%;
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.work-div-2:hover img {
    transform: translateY(-107%);
}

.work-div-2 .steps-2 {
    transition: transform 0.4s ease;
}

.work-div-2:hover .steps-2 {
    transform: translateY(172%);
}

.steps-2 {
    position: relative;
    z-index: 1;
    cursor: default;
}

.work-div-2 .blue-div {
    transition: transform 0.4s ease;
}

.work-div-2:hover .blue-div {
    transform: translate(-50%, -50%) rotate(135deg);
}

.p_content {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    text-align: justified;
}

.svg-icons {
    width: 50px;
    height: 50px;
}

.why-choose-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 270px;
    z-index: 4;
}

.why-choose-outer-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, -72%);
    width: 270px;
}

.height-mob {
    height: 50px;
}

.height-mob-2 {
    height: 150px;
}

.yellow-blur {
    background: #FFD964;
    filter: blur(60px);
    width: 70%;
    height: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.yellow-blur-2 {
    background: #FFD964;
    filter: blur(60px);
    width: 40%;
    height: 60%;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.yellow-blur-3 {
    background: #FFD964;
    filter: blur(30px);
    width: 60px;
    height: 60px;
    opacity: 1;
    position: absolute;
    top: 35%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.leafs {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
}

.leafs img:nth-child(1) {
    animation: leaf-blow 4s ease-in-out infinite;
}

@keyframes leaf-blow {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.leafs img:nth-child(2) {
    animation: leaf-blow-right 4s ease-in-out infinite;
}

@keyframes leaf-blow-right {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.light-bulb {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0);
    width: 150px;
    animation: bulb-up 4s ease-in-out infinite;
}

@keyframes bulb-up {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.transparent-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.width-set {
    width: 120px;
    animation: person-up 4s ease-in-out infinite;
}

@keyframes person-up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.width-set-2 {
    width: 190px;
}

.wheel-img {
    position: absolute;
    bottom: 30px;
    left: 150px;
    width: 45px;
    animation: wheel-spin 4s linear infinite;
}

@keyframes wheel-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.left-bush {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 66px;
    z-index: 0;
    animation: wind 4s ease-in-out infinite;
}

.right-bush {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    z-index: 0;
    animation: wind 4s ease-in-out infinite;
}

@keyframes wind {
    0% {
        transform: skew(0deg);
    }

    50% {
        transform: skew(11deg);
    }

    100% {
        transform: skew(0deg);
    }
}

.svg-mob-arrow {
    position: absolute;
    bottom: -20%;
    left: 42%;
    transform: rotate(90deg) translateX(-70%);
}

.svg-mob-arrow-2 {
    position: absolute;
    top: 0%;
    left: 42%;
    transform: rotate(90deg) translateX(-70%);
}

.questionMark-set {
    animation: question 2s ease-in-out infinite;
}

@keyframes question {
    0% {
        transform: scale(0.8) rotate(10deg);
    }

    50% {
        transform: scale(1) rotate(15deg);
    }

    100% {
        transform: scale(0.8) rotate(10deg);
    }
}

.why-heading-set {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    font-size: 17px;
    color: #1E2447;
    transform: translate(-50%, -50%);
}

.why-choose-box {
    position: relative;
    z-index: -1;
}

.mix-border-mob {
    position: absolute;
    top: 0;
    left: 50%;
    width: 145px;
    transform: translate(-50%, -50%);
}

.border-sider {
    position: relative;
    z-index: 2;
}

.bg-fixed {
    background: url('../assets/images/home/fixed-solar.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.interstellar-box {
    position: relative;
}

.world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.interstellar-rotate {
    animation: interstellar 18s ease-in-out infinite;
}

@keyframes interstellar {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.interstellar-box h5 {
    z-index: 3;
}

.hovered-img {
    perspective: 1000px;
}

.hovered-img img {
    /* transition: transform 0.5s ease; */
    animation: home3d 3s ease-in-out infinite;
}

/* .hovered-img:hover img {
    transform: rotateY(10deg) rotateX(17deg) scale(1.1);
    transform-origin: center center;
} */

@keyframes home3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }

    50% {
        transform: rotateY(10deg) rotateX(17deg) scale(1.1);
    }

    100% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }
}

#znrgswap {
    cursor: pointer;
}

.click_me {
    position: absolute;
    top: 58%;
    left: 58%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    padding: 5px;
    border-radius: 40px;
    z-index: 1;
}

.input-styled {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 2px solid #1E2447;
}

.input-styled:focus {
    outline: none;
}

.swiper-slide {
    transform: scale(0.9) !important;
    pointer-events: none;
}

.scaled .swiper-slide-next {
    transition: 0.3s ease-in-out;
    transform: scale(1.17) !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: calc(100% - 40px) !important;
    transform: translateY(150%) !important;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
}

.swiper-button-next {
    color: #1E2447 !important;
    left: 70% !important;
}

.swiper-button-prev {
    color: #1E2447 !important;
    left: auto !important;
    right: 70% !important;
}

.swiper-pagination-bullet-active {
    background: #1E2447 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px !important;
}

/* About */
.about-bg {
    background: url('../assets/images/home/about-bg.webp');
    background-size: cover;
    background-position: center center;
}

.about-svg svg {
    transition: 0.3s ease-in-out;
}

.about-svg:hover svg {
    transform: rotate3d(1, 1, 1, 45deg);
}

.about-fixed {
    background: url('../assets/images/home/about-fixed.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.toggle-button-cover {
    position: relative;
    box-sizing: border-box;
}

.button-cover {
    height: 100px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px -8px #c5d6d6;
    border-radius: 4px;
}

.button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1.8px solid #1E2447;
}

.button {
    position: relative;
    top: 50%;
    width: 69px;
    height: auto;
    padding: 2px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

.button.r,
.button.r .layer {
    border-radius: 100px;
}

#button-3 .knobs:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #b3d1fc;
    border-radius: 50%;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active+.knobs:before {
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active+.knobs:before {
    margin-left: -26px;
}

#button-3 .checkbox:checked+.knobs:before {
    content: "";
    left: 42px;
    background-color: #1E2447;
}

.zip-code-input {
    width: 100%;
    padding: 8px 6px;
    border: 2px solid #1E2447;
    border-radius: 5px;
}

.zip-code-input:focus {
    outline: none;
}

.option-radio-selected {
    border: 2px solid #1E2447;
    background-color: #f0f8ff;
}

.custom-input-style{
    padding: 15px 10px;
    width: 100%;
    background: #eeeded;
    border: none;
}
.custom-input-style:focus{
    border:none;
    outline:none;
}