:root {
    /* --color-white: #ffffff;
    --color-black: #000000;
    --color-primary: #0073e6;
    --color-primary-dark: #005bb5;
    --color-secondary: #ffc954;
    --color-accent: #ff9233;
    --color-dark-accent: #F2483A;
    --color-gray-light: #f8f9fa;
    --color-gray: #333;
    --color-gray-dark: #222;
    --color-faded-gray: rgba(0, 0, 0, 0.1);
    --color-border: #ccc;
    --color-green: rgb(43, 183, 90);
    --color-mid-green: #218838;
    --color-dark-green: rgba(43, 183, 90, 0.3);
    --color-red: red;
    --color-twitter: #1DA1F2;
    --color-orange-gradient-start: #faa61f;
    --color-orange-gradient-end: #ed1847;
    --color-choose-back: #ffd9a0;
    --color-light-gradient-start: rgba(247, 230, 199, 1);
    --color-standard-gradient-mid: rgba(247, 230, 199, 1);
    --color-dark-gradient-end: rgba(247, 230, 199, 1);
    --gradient-middle: rgba(255, 215, 142, 1);
    --gradient-end: rgba(170, 170, 170, 1); */



    --color-white: #ffffff;
    --color-black: #000000;
    --color-primary: #0073e6;
    --color-primary-dark: #005bb5;
    --color-secondary: #59A7CE;
    --color-accent: #0077B6;
    --color-dark-accent: #03045E;
    --color-gray-light: #f8f9fa;
    --color-gray: #333;
    --color-gray-dark: #222;
    --color-faded-gray: rgba(0, 0, 0, 0.1);
    --color-border: #ccc;
    --color-green: rgb(43, 183, 90);
    --color-mid-green: #218838;
    --color-dark-green: rgba(43, 183, 90, 0.3);
    --color-red: red;
    --color-vs: #03045E; 
    --color-twitter: #1DA1F2;
    /* --color-orange-gradient-start: #6C6CEF;
    --color-orange-gradient-end: #A3A3F5; */
    --color-orange-gradient-start: #023E8A;
    --color-orange-gradient-end: #03045E;
    --color-choose-back: #ffd9a0;
    --color-light-gradient-start: rgba(247, 230, 199, 1);
    --color-standard-gradient-mid: rgba(247, 230, 199, 1);
    --color-dark-gradient-end: rgba(247, 230, 199, 1);
    --gradient-middle: rgba(255, 215, 142, 1);
    --gradient-end: rgba(170, 170, 170, 1);
    --glow-color: #59A7CE; /* Neon blue */
}


/* section background gradiesnt classes start */
.gradient-background{ /* theme gradient */
    background: linear-gradient(230deg, var(--color-orange-gradient-start) 0%, var(--color-orange-gradient-end) 100%);

}

.gradient-faq-border{ /* theme gradient */
    border-image: linear-gradient(90deg, var(--color-orange-gradient-start), var(--color-orange-gradient-end));
}
.gradient-background-overlay-gray{
    background: linear-gradient(45deg, var(--color-light-gradient-start) 0%, var(--color-standard-gradient-mid) 100%, var(--color-dark-gradient-end) 100%);

}
.hr-gradient{
    background-image: linear-gradient(90deg,var(--color-orange-gradient-start),var(--color-orange-gradient-end));
    opacity: 1;
}
/* section background gradiesnt classes end */

/* //////////////////////////////////// Loader Start ////////////////////////////////// */
/* #preloader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; 
}

.loader {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    display: block;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 0 5px var(--color-faded-gray);
    animation: rotationBack 1s ease-in-out infinite reverse;
}
  
.loader::before {
    content: '';
    box-sizing: border-box;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
}

.loader::after {
    content: '';
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px var(--color-faded-gray);
} */

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
}
}
/* //////////////////////////////////// Loader End ////////////////////////////////// */


/* ////////////////////////////////////  header start ////////////////////////////////////////////////////// */
header {
    background: var(--color-gray-light);
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header.scrolled {
    background: var(--color-white);
    box-shadow: 0 4px 10px var(--color-faded-gray);
}

/* Mobile Drawer */
.offcanvas {
    width: 250px;
}

.offcanvas-header {
    background: var(--color-primary);
    color: var(--color-gray-light);
    padding: 15px;
}

.offcanvas-body {
    padding: 20px;
}

.offcanvas .nav-link {
    font-size: 18px;
    padding: 10px;
}

.offcanvas .dropdown-menu {
    display: none;
    position: static;
    padding-left: 15px;
}

.offcanvas .dropdown-menu.show {
    display: block;
}

.social-nav-icons {
    font-size: 24px;
    color: var(--color-twitter);
    margin: 10px;
}

.btn-primary {
    background: var(--color-primary);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar-nav .nav-link {
    margin: 0px 10px;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.nav-item a{
    color: var(--color-white);
    font-weight: 500;
}

.navbar-toggler-icon{
    filter: invert(1) !important;
}

.btn-close{
    filter: invert(1) !important;
}

@media (min-width: 1025px) {
    .navbar-brand {
        width: 20%;
    }

    .logo {
        width: 65%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-brand {
        width: 20%;
    }

    .logo {
        width: 65%;
    }


}

@media (min-width: 320px) and (max-width: 767px) {
    .navbar-brand {
        width: 30%;
    }

    .logo {
        width: 90%;
    } 
}

@media (min-width: 320px) and (max-width: 768px){
    .nav-item a{
        color: var(--color-gray);
        font-weight: 500;
    }
}

/* ////////////////////////////////////  header end ////////////////////////////////////////////////////// */



/* ///////////////////////////////// hero section start ///////////////////////////////////////////////// */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 56px;
    margin-bottom: 50px;
}

.slider .slide {
    position: relative;
    width: 100%;
    height: 750px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider .slide .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 95%;
    padding: 20px;
    background: var(--color-faded-gray);
    border-radius: 10px;
}

.hero-content h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    animation: moveIcon 3s infinite alternate ease-in-out;
}

.top-right {
    top: 150px;
    right: 60px;
}

.bottom-left {
    bottom: 150px;
    left: 60px;
}

@keyframes moveIcon {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(15px);
    }
}

@media (max-width: 1200px) {
    .slider .slide {
        height: 600px ;
    }

    .hero-content h5 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 2.5rem;
    }

    .floating-icon {
        width: 60px;
    }
}

@media (max-width: 992px) {
    .slider .slide {
        height: 500px;
    }

    .hero-content h5 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 2rem;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .slider .slide {
        height: auto !important;
    }

    .hero-content {
        max-width: 100%;
        padding: 15px;
    }

    .hero-content h5 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1.8rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .slider .slide {
        height: auto;
    }

    .hero-content h5 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-primary {
        font-size: 0.8rem;
        padding: 7px 14px;
    }
}
/* ///////////////////////////////// hero section end ///////////////////////////////////////////////// */


/* /////////////////////////////// step form section start //////////////////////////////////////// */
/* Class that triggers the animation */


.step {
    display: none;
}

.step.active {
    display: block;
}

.inner-cont {
    background: var(--color-gray-light);
    border-radius: 12px;
    box-shadow: 0 4px 8px var(--color-faded-gray);
    transition: all 0.3s ease-in-out;
}

.right-cont {
    border-left: 2px solid var(--color-gray);
}

.title-h2 {
    color: var(--color-gray);
    margin-bottom: 15px;
    font-weight: 800;
}

.option-container {
    display: block;
    cursor: pointer;
}

.option-container input {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px var(--color-faded-gray);
    transition: all 0.3s ease-in-out;
}

.option-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--color-faded-gray);
    border-radius: 15px;
}

.option-container input:checked+.option-box {
    border: 2px solid  var(--color-green);
    box-shadow: 0 6px 12px var(--color-dark-gree);
}

.option-box span {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-gray);
}


.form-heading {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray);
}

.form-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 8px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-sizing: border-box;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-prev {
    padding: 10px 20px;
    background-color: var(--color-gray-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-gray);
    cursor: pointer;
}

.btn-primary {
    padding: 10px 20px;
    background-color:  var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-submit {
    background-color: var(--color-mid-green);
    padding: 10px 20px;
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}


@media (max-width: 768px) {
    .option-box {
        padding: 15px;
    }

    .option-box span {
        font-size: 16px;
    }

    svg {
        width: 60px;
        height: 60px;
    }
    .inner-cont{
        flex-wrap: wrap-reverse !important;
    }
    .right-cont {
        border-bottom: 2px solid var(--color-gray);
        border-left: none !important;
    }
}

@media (min-width: 320px) and (max-width: 1024px) {
    .step {
        border-left: none !important;
    }
}
/* /////////////////////////////// step form section end //////////////////////////////////////// */



 /* style="background: url('{{ asset('images/section-background/background-img-1.webp') }}'); background-size: 5%;" */
/* /////////////////////////////// reason to choose section start //////////////////////////////////////// */
.choose-back {
    background: var(--color-choose-back);
    padding: 2rem 0;
    border-left: 0;
    border-right: 0;
    background: url("images/section-background/background-img-1.webp");
    /* background: url("{{ asset('images/section-background/background-img-1.webp') }}"); */
    background-size: 5%;
}

.difference {
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-bottom: 1.5rem;
    align-items: center;
}

.difference .image {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin-right: 1rem;
}

.difference .circle_border {
    padding: 2px;
    border-radius: 3rem;
}

.difference .image .circle {
    background: var(--color-white);
    border-radius: 3rem;
    height: 85px;
    width: 85px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0.7rem;
}

.difference .blurb {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--color-gray);
    width: 415px;
}

.difference .blurb {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--color-gray);
    width: 415px;
}

.content-hr {
    width: 120px;
    border: none; 
    height: 5px;
    border-radius: 2px;
}
/* /////////////////////////////// reason to choose section end //////////////////////////////////////// */



/* /////////////////////////////// Our Story section end //////////////////////////////////////// */
.story-section {
    padding: 2rem 0 4rem 0;
    color: var(--color-white);
    text-align: center;
}

.number {
    font-size: 3rem;
    font-weight: bold;
}

.text {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: bold;
}

/* /////////////////////////////// Our Story section end //////////////////////////////////////// */




/* ////////////////////////// Benefits of Solar Power start ////////////////////////////// */
.block_border {
    padding: 2px;
    border-radius: 1rem;
}

.block {
    border: 1px solid var(--color-gray-light);
    border-radius: 0.9rem;
    padding: 1.5rem;
    background: var(--color-white);
    text-align: left;
    min-height: 250px;
    height: 100%;
}

/* ////////////////////////// Benefits of Solar Power end ////////////////////////////// */




 

/* ////////////////////////// include battery section start ////////////////////////////// */
.battery-section {
    padding: 2rem 0 4rem 0;
    color: var(--color-white);
    text-align: center;
}

.fa-times-circle {
    color: var(--color-red);
}

.fa-check-circle {
    color: var(--color-green);
}

.vs {
    background: var(--color-white);
    border: 1px solid var(--color-accent);
    border-radius: 4rem;
    height: 5rem;
    width: 5rem;
    right: -2.9rem;
    top: calc(50% - 2rem);
    font-size: 2.2rem;
    line-height: 2.4rem;
    font-weight: bold;
    box-shadow: 0px 0px 13px 0px var(--color-gray-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-vs);
}

.vs-content-container{
    height: 50px;
}  

@media only screen and (min-width: 320px) and (max-width: 374px) {
    .vs-content-container {
        height: 650px !important;
    }
}

@media only screen and (min-width: 375px) and (max-width: 425px) {
    .vs-content-container {
        height: 550px !important;
    }
}


/* ////////////////////////// include battery section end ////////////////////////////// */



/* ////////////////////////// Cta section start ////////////////////////////// */
.cta-section{
        text-align: center;
        color: var(--color-white);
}
/* ////////////////////////// Cta section end ////////////////////////////// */




/* ////////////////////////// Gallery section start ////////////////////////////// */
.gallery-img {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    border-radius: 8px;
}
/* ////////////////////////// Gallery section end ////////////////////////////// */



/* ////////////////////////// FAQ section start ////////////////////////////// */
.accordion {
    border-top: 5px solid transparent;
    border-image: linear-gradient(230deg, var(--color-orange-gradient-start), var(--color-orange-gradient-end));
    border-image-slice: 1;
}

.accordion-item {
    border-left: none !important;
    border-right: none !important;
    border-top: 5px solid;
    border-bottom: none !important;
    border-image-slice: 1;
} 

.accordion-button {
    background-color: var(--color-gray-light);
    color: var(--color-gray);
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background-color:var(--color-white) !important;
    color: var(--color-gray) !important;
    box-shadow: none;
}
/* ////////////////////////// FAQ section end ////////////////////////////// */



/* ////////////////////////// Pop Side section end ////////////////////////////// */
.stalker {
    background: none;
    position: fixed;
    right: 0;
    bottom: 0;
} 

.stalker-container {
    background-image: -webkit-linear-gradient(145deg, var(--color-orange-gradient-start) 0%, var(--color-orange-gradient-end) 100%);
    padding: 1rem;
    width: 285px;
    margin: 1rem 1rem 1rem auto !important;
    border-radius: 1rem;
}

.call-btn {
    display: flex !important;
    background: var(--color-white);
    border: 2px solid  var(--color-green);
    color:  var(--color-green);
    width: 50px !important;
    min-width: 50px !important;
    padding: 1.5rem 2rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
    border-radius: 50px;
}

.get-quote-btn-container-mobile{
    background:  var(--color-green) !important;
    border: 2px solid var(--color-mid-green) !important;
    border-radius: 2.4rem;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    width: 60%;
}
.get-quote-btn-container{
    background:  var(--color-green) !important;
    border: 2px solid var(--color-mid-green) !important;
    border-radius: 2.4rem;
    padding: 0.5rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .stalker-container {
        display: none !important;
        width: 90%;
    }
}

/* ////////////////////////// Pop side section end ////////////////////////////// */




/* ////////////////////////// Footer section start ////////////////////////////// */
.hr-footer{
    background: var(--color-gray); 
    height: 3px; 
    border: none; 
    border-radius: 5px;
}

@media (max-width: 768px) { 
    .logo-footer-img{
        width: 100%;
    }
}

@media (max-width: 480px) { 
    .logo-footer-img{
        width: 100%;
    }
}
/* ////////////////////////// Footer section end ////////////////////////////// */






/* ////////////////////////// Thank You Page Start ////////////////////////////// */
.thank-you-svg {
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) { 
    .thank-you-svg{
        width: 30%;
    }
}

@media (max-width: 480px) { 
    .thank-you-svg{
        width: 40%;
    }
}

/* ////////////////////////// Thank You Page End ////////////////////////////// */




/* ////////////////////////// Trustpilot section Start ////////////////////////////// */
.tp-section {
    background: var(--color-gray-light);
    padding: 40px 0;
}

.tp-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-dark-accent);
    font-weight: bold;
}

.tp-slider {
    margin: 0 -10px;
}

.tp-slide {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.tp-title {
    font-size: 1.25rem;
    color: var(--color-black);
    margin-bottom: 15px;
    font-weight:700;
}

.tp-text {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 20px;
    max-height: 8.5em;
    overflow-y: auto;
    line-height: 1.3em;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) var(--color-gray-light);
}

.tp-text::-webkit-scrollbar {
    width: 6px;
}

.tp-text::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border-radius: 4px;
}


.tp-stars {
    margin-bottom: 15px;
    width: 100px;
}

.tp-author {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-dark-accent);
}
/* ////////////////////////// Trustpilot section End ////////////////////////////// */
