:root {
    scroll-behavior: smooth;

    --solar-blue-dark: #056ca5;
    --solar-blue-light: #cde4f1;
    --solar-blue: #0678B7;

    --solar-green-dark: #64a52e;
    --solar-green-light: #e2f1d6;
    --solar-green: #6FB733;

    --solar-yellow-dark: #e5c67a;
    --solar-yellow-light: #fff8e7;
    --solar-yellow: #FEDC88;

    --solar-gray-dark: #3d4041;
    --solar-gray-light: #dadada;
    --solar-gray: #444748;

    --solar-light: #f4f4f4;
    --solar-white: #ffffff;
    --solar-black: #000000;
    --solar-border-color: #dddddd;
}
.orange {
    color: #d85e3d;
}
.Heading {
    font-size: 42px;
    font-weight: bold;
}
.bg-light-gray {
    background-color: #f2f5f8;
}

* {
    padding: 0;
    margin: 0;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Titillium Web", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none;
}

button {
    display: inline-block;
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.img-fluid {
    max-width: 100%;
}

.border-none {
    border: none;
}

.line-through {
    text-decoration: line-through;
}

.list-unstyled {
    list-style: none;
}

.img-rounded {
    border-radius: 10px;
}

.img-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-groups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn {
    background-color: var(--solar-gray);
    border: none !important;
    color: var(--solar-white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    padding: 10px 30px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 0;
}

.btn:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-color: rgb(0 0 0 / 20%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}

.btn:is(:hover, :focus):before {
    opacity: 1;
}

.btn-pill {
    border-radius: 50px !important;
}

.btn-blue, .btn-blue.btn:is(:hover, :focus) {
    background-color: var(--solar-blue) !important;
    color: var(--solar-white) !important;
}

.btn-green, .btn-green.btn:is(:hover, :focus) {
    background-color: var(--solar-green) !important;
    color: var(--solar-white) !important;
}

.btn-yellow, .btn-yellow.btn:is(:hover, :focus) {
    background-color: var(--solar-yellow) !important;
    color: var(--solar-white) !important;
}

.btn-white, .btn-white.btn:is(:hover, :focus) {
    background-color: var(--solar-white) !important;
    color: var(--solar-black) !important;
}


.bg-blue {
    background-color: var(--solar-blue) !important;
}

.bg-light {
    background-color: var(--solar-light) !important;
}

.bg-white {
    background-color: var(--solar-white) !important;
}

.text-white {
    color: var(--solar-white) !important;
}

.text-dark {
    color: var(--solar-black) !important;
}

.text-gray {
    color: var(--solar-gray) !important;
}

.text-red {
    color: red !important;
}

.text-blue {
    color: var(--solar-blue) !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

/* START - MAIN HEADER STYLE */
/* Mega menu base styles */
.has-mega-menu {
    position: relative;
}

.has-mega-menu .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: var(--solar-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--solar-red, #d85e3d);
}

.mega-menu ul li a {
    font-size: 16px;
    color: var(--solar-gray);
    padding: 5px 0;
    display: block;
    transition: 0.3s;
}

.mega-menu ul li a:hover {
    color: var(--solar-red, #d85e3d);
    text-decoration: none;
}
/*Side Panel */
/* Slide-In Side Panel */
.sidepanel {
    height: 100vh;
    width: 320px;
    position: fixed;
    top: 0;
    right: -320px;
    background-color: #fff;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidepanel.open {
    right: 0;
}

.sidepanel .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #000;
    z-index: 10001;
}

.sidepanel-content {
    padding: 80px 20px 40px;
}

.sidepanel .btn-blue {
    background-color: #00a9e0;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
}

.sidepanel .btn-yellow {
    background-color: #ffcd00;
    color: #333;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
}

.sidepanel .social-icons i {
    font-size: 20px;
    color: #000;
    transition: color 0.3s ease;
}

.sidepanel .social-icons a:hover i {
    color: #00a9e0;
}





/*.nav-item {*/
/*    position: static; !* Prevents the menu from being positioned relative to the nav item *!*/
/*}*/

/*!* Style the dropdown menu *!*/
/*.nav-item .dropdown-menu {*/
/*    display: none; !* Hidden by default *!*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    width: 100vw; !* Full screen width *!*/
/*    background: white;*/
/*    padding: 20px;*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
/*    border-radius: 0 0 5px 5px;*/
/*    z-index: 1000;*/
/*}*/

/*!* Show dropdown menu on hover *!*/
/*.nav-item:hover .dropdown-menu {*/
/*    display: flex;*/
/*    justify-content: center; !* Center items *!*/
/*    gap: 30px; !* Spacing between columns *!*/
/*}*/

/*!* Arrange items in columns *!*/
/*.nav-item .dropdown-menu ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr); !* 3 columns *!*/
/*    gap: 15px;*/
/*}*/

/*!* Style the links inside the menu *!*/
/*.nav-item .dropdown-menu li a {*/
/*    text-decoration: none;*/
/*    color: #333;*/
/*    font-weight: 500;*/
/*    padding: 10px 15px;*/
/*    display: block;*/
/*    transition: 0.3s;*/
/*}*/

/*.nav-item .dropdown-menu li a:hover {*/
/*    background: #f4f4f4;*/
/*    color: #007bff;*/
/*    border-radius: 4px;*/
/*}*/




.main-header {
    background-color: var(--solar-white);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    transition: all 0.5s;
}

.fixed-header {
    position: fixed;
    inset: 0 0 auto 0;
    box-shadow: none;
    padding: 5px 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: 0.4s transform cubic-bezier(.3, .73, .3, .74);
    z-index: 1000;
}

body.down header.fixed-header {
    transform: translateY(0);
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    opacity: 1;
    pointer-events: all;
}

.inner-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 84px;
    display: block;
}

.fixed-header .logo {
    width: 64px;
}

.isc-offcanvas-show {
    font-size: 20px;
    border: 1px solid var(--solar-border-color);
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-offcanvas-show:is(:hover, :focus) {
    background-color: rgb(0 0 0 / 5%);
}

nav.header-main-menu ul {
    list-style: none;
}

nav.header-main-menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}

nav.header-main-menu>ul>li {
    position: relative;
    z-index: 0;
}

nav.header-main-menu>ul>li>a {
    color: var(--solar-black);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    padding: 8px 0;
    gap: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

p, span, li {
    color: #58595b !important;
}


nav.header-main-menu ul li a:hover, nav.header-main-menu ul li a.active {
    color: var(--solar-red, #d85e3d);
}

nav.header-main-menu>ul>li:hover>a {
    color: var(--solar-red, #d85e3d);
}

nav.header-main-menu>ul>li:has(>ul)>a:after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

nav.header-main-menu>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 8px 0;
    background-color: var(--solar-white);
    border: 1px solid var(--solar-border-color);
    border-radius: 5px;
    min-width: 160px;
    max-width: 250px;
    display: none;
}

nav.header-main-menu>ul>li:hover>ul {
    display: block;
}

nav.header-main-menu>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid var(--solar-border-color);
}

nav.header-main-menu>ul>li>ul>li>a {
    color: var(--solar-black);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    display: block;
    gap: 5px;
    padding: 8px 16px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

nav.header-main-menu>ul>li>ul>li>a:hover {
    background-color: rgb(0 0 0 / 5%);
}

/* END - MAIN HEADER STYLE */

/* START - HEADER OFF CANVAS STYLE */
.isc-offcanvas-wrap {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.isc-offcanvas-wrap.show {
    pointer-events: all;
}

.isc-offcanvas-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--solar-black);
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}

.isc-offcanvas-wrap.show:before {
    opacity: 0.5;
}

.isc-offcanvas {
    background-color: var(--solar-white);
    width: 350px;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    left: -500px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-offcanvas-wrap.show .isc-offcanvas {
    left: 0;
}

.isc-offcanvas-head {
    padding: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
}

.isc-offcanvas-logo {
    width: 100px;
}

.isc-offcanvas-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: var(--solar-gray);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-offcanvas-close:hover {
    color: var(--solar-blue);
}

.isc-offcanvas-menu {
    border-top: 1px solid var(--solar-border-color);
    border-bottom: 1px solid var(--solar-border-color);
    margin-bottom: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.isc-offcanvas-menu ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.isc-offcanvas-menu>ul>li:not(:last-child) {
    border-bottom: 1px solid var(--solar-border-color);
}

.isc-offcanvas-menu>ul>li>a,
.isc-dropdown-parent a {
    color: var(--solar-black);
    font-size: 13px;
    font-weight: 600;
    padding: 15px;
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-offcanvas-menu ul li a.active {
    color: var(--solar-blue);
}

.isc-dropdown-parent {
    position: relative;
    z-index: 0;
}

.isc-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    font-size: 20px;
    border-left: 1px solid var(--solar-border-color);
    color: var(--solar-gray);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-dropdown-toggle:is(:hover, :focus) {
    color: var(--solar-black);
}

.isc-dropdown-menu {
    height: 0;
    overflow: hidden;
}

.isc-dropdown-menu.open {
    border-top: 1px solid var(--solar-border-color);
    padding: 15px 25px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.isc-dropdown-menu a {
    color: var(--solar-black);
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.isc-offcanvas-menu ul li a:is(:hover, :focus) {
    color: var(--solar-blue);
}

.isc-offcanvas-btns-group {
    padding: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

/* END - HEADER OFF CANVAS STYLE */

/* START - HERO SECTION STYLE */
.hero-section {
    background-color: var(--solar-gray);
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.hero-section:before {
    content: "";
    position: absolute;
    inset: 0;
     /* background-color: #0d6efd;  */
     background-color: rgba(0, 170, 231, 0.50);
    opacity: 90%;
    z-index: -1;
}

.hero-content {
   width: 100%;
}

.hero-heading {
    font-size: 42px;
    line-height: 52px;
    font-weight: bold;
    color: var(--solar-white);
    margin: 0 auto 40px auto;
    text-align: center;
}

.hero-content p {
    color: var(--solar-white);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
}

/* END - HERO SECTION STYLE */

/* START - MAIN SECTION STYLE */
.main-section {
    padding: 80px 0;
}

.main-section-img {
    background-attachment: fixed;
    background-color: var(--solar-gray);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}

.main-section-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--solar-blue);
    opacity: 80%;
    z-index: -1;
}

.main-content {
    color: var(--solar-gray);
}

.main-content-center {
    text-align: center;
}

.main-content .mini-heading {
    color: var(--solar-blue);
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.main-content .mini-heading>span {
    background-color: var(--solar-blue);
    color: var(--solar-white);
    padding: 3px 7px;
    border-radius: 3px;
}

.main-heading {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    color: var(--solar-black);
    margin-bottom: 40px;
}

.sec3-head {
    color: #d85e3d;
    font-size: 45px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-weight: bold;
}

.sec3-p {
    color: #58595b;
    font-size: 20px !important;
    text-align: left;
    line-height: 33px !important;
    font-weight: 500 !important;
    width: 90%;
    margin: 0 auto;
}
.sec-4 {
    background-color: #f2f5f8;
    padding: 80px 0;
}

.sec3-h4 {
    color: #00aae7;
}

.main-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

/* END - MAIN SECTION STYLE */

/* START - FEATURES SECTION STYLE */
.features-section {
    background-color: var(--solar-gray);
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.feature-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.feature-box-image {
    width: 100px;
    height: 100px;
}

.feature-box-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.feature-box-content h3 {
    color: var(--solar-white);
    font-size: 28px;
    font-weight: 400;
}

.feature-box-content p {
    color: var(--solar-white);
    font-size: 16px;
    line-height: 26px;
}

/* END - FEATURES SECTION STYLE */

/* START - COMMERCIAL SOLAR SECTION STYLE */
.csbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.csbox img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.csbox h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

/* END - COMMERCIAL SOLAR SECTION STYLE */

/* START - GRID SECTIONS STYLE */
.grid-section {
    overflow: hidden;
    position: relative;
}

.grid-section__image {
    position: relative;
    min-height: 500px;
    height: 100%;
    z-index: 0;
}

.grid-section__image>img {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 49vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.grid-section__image--l>img {
    inset: 0 0 0 auto;
}

.grid-section__content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 80px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 80px 50px 80px 0;
}

.grid-section__content--r {
    padding: 80px 0 80px 50px;
}

.commercial-sec-1 {
    padding: 120px 0;
    position: relative;
}

.main-commercial-sec-1 {
    padding: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: absolute;
    top: -100px;
}
.main-commercial-sec-1 h2 {
    color: #d85e3d;
    font-size: 45px;
    font-weight: bold;
}
.main-commercial-sec-1 p {
    color: #3d4041;
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 20px;
}




/* END - GRID SECTIONS STYLE */

/* START - SOLAR COMPANY STYLE */
.solar-company-section {
    background-color: var(--solar-gray);
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.solar-company-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--solar-black);
    opacity: 30%;
    z-index: -1;
}

/* END - SOLAR COMPANY STYLE */


/* START - MAIN FOOTER STYLE */
.main-footer {
    padding: 25px 0;
}


.social-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.social-icons ul li a {
    color: var(--solar-white);
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
}

.social-icons ul li a:is(:hover, :focus) {
    background-color: var(--solar-white);
    color: var(--solar-blue);
}

.copyright p {
    font-size: 13px;
    color: var(--solar-white);
}

.copyright p a {
    color: var(--solar-white);
}

/* END - MAIN FOOTER STYLE */

/* START - SCROLL TO TOP BUTTON STYLE */
.scrollToTopBtn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--solar-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    color: var(--solar-white);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.9;
    box-shadow: 0px 9.93px 19.85px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    animation: ScrollBtnMove 1.5s ease-in-out infinite;
}

.scrollToTopBtn:hover {
    background-color: var(--solar-green-dark);
}

@keyframes ScrollBtnMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* END - SCROLL TO TOP BUTTON STYLE */


/* START - MAIN BANNER SECTION STYLE */
.banner-section {
    background-color: var(--solar-gray);
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    position: relative;
    z-index: 0;
}

.banner-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--solar-blue);
    opacity: 85%;
    z-index: -1;
}

.banner-section__content h1 {
    font-size: 52px;
    line-height: 62px;
    font-weight: 600;
    color: var(--solar-white);
    margin-bottom: 20px;
}

.banner-section__content p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--solar-white);
    margin-bottom: 10px;
}

.banner-section__breadcrumb {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0 20px 0;
}

.banner-section__breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner-section__breadcrumb ul li a,
.banner-section__breadcrumb ul li span {
    color: var(--solar-white);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    transition: all .3s;
}

.banner-section__breadcrumb ul li a:hover {
    color: var(--solar-white);
}

.banner-section__breadcrumb ul li {
    position: relative;
    z-index: 0;
}

.banner-section__breadcrumb ul li:not(:last-child):after {
    content: ">";
    font-size: 14px;
    color: var(--solar-white);
    padding: 10px 10px;
}

.banner-section__breadcrumb ul li .current {
    font-weight: 700;
}
/* END - MAIN BANNER SECTION STYLE */

/* START - LIST STYLE ONE STYLE */
.lists1 {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.lists1 li {
    color: var(--solar-gray);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.lists1 li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background-color: var(--solar-blue);
    width: 8px;
    height: 8px;
}

.lists1-white li {
    color: var(--solar-white);
}

.lists1-white li:before {
    background-color: var(--solar-white);
}
/* END - LIST STYLE ONE STYLE */



/* START - CONTACT US PAGE STYLE ===================================== */
.contact-info-wrap {
    background-color: var(--solar-light);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    margin-bottom: 20px;
}

.contact-info-icon {
    background-color: var(--solar-white);
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--solar-black);
}

.contact-info h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    color: var(--solar-black);
}

.contact-info>a, .contact-info>span {
    display: block;
    color: var(--solar-gray);
    font-size: 16px;
    line-height: 26px;
    white-space: wrap;
}

.contact-form input,
.contact-form select {
    width: calc(50% - 10px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.contact-form button {
    background: #0074c1;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.section-title {
    text-align: center;
    color: #dd5f28 !important;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.card-custom {
    background-color: #f1f5f8;
    border: none;
    border-radius: 0;
    margin-bottom: 30px;
}
.card-custom img {
    border-bottom: 4px solid white;
}
.card-body-custom {
    padding: 1rem;
}
.card-body-custom p {
    color: #008ed6;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

label {
    font-size: 0.875rem;
    color: #444;
}
.form-label span {
    color: red;
}
.form-text-note {
    font-size: 0.9rem;
    color: #333;
}
.submit-btn {
    background-color: #00a8e1;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
}
.submit-btn:hover {
    background-color: #007bbf;
}

.sic-panel {
    background-color: var(--solar-white);
    padding: 50px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: var(--solar-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.form-control, .form-select {
    font-family: "Titillium Web", sans-serif;
    width: 100%;
    display: block;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    box-shadow: none !important;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border: 1px solid #999;
}

.form-control::placeholder {
    color: var(--solar-gray);
}

textarea.form-control {
    min-height: 200px;
    resize: none;
}
/* END - CONTACT US PAGE STYLE ===================================== */

/* START - STORE PAGE STYLE ===================================== */
.product-grid {
    margin: 30px 0;
}

.product-item {
    background-color: var(--solar-white);
    border: 1px solid #dddddd;
    border-radius: 10px;
    transition: all .3s;
    max-width: 300px;
    margin: 0 auto 40px auto;
}

.product-image {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    background-color: var(--solar-black);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s;
}

.product-item:hover .product-image img {
    opacity: 0.8;
    transform: scale(1.2) rotate(5deg);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--solar-ay);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--solar-blue);
    margin-bottom: 20px;
}

.product-info >button {
    width: 100%;
}
/* END - STORE PAGE STYLE ===================================== */





/*  */

.banner-heading {
    color: #fff;
    font-size: 60px;
    width: 90%;
    font-weight: bold;
}
.banner-p {
    font-size: 24px !important;
    font-weight: 500 !important;
}
.home-content {
    padding-left: 30px;
}

.home-sec-2  {
    padding: 80px 0;
}
.home-sec-2 h2 {
 text-align: center;
 color: #d85e3d;
 font-size: 45px;
 font-weight: bold;
 padding-bottom: 40px;
}

.box-1 ,
.box-2 ,
.box-3  {
    background-color: #ffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}



.box-1 img {
    width: 35%;
}

.box-2 img {
    width: 58%;
}
.box-3 img {
    width: 27%;
}

.box-1 h4,
.box-2 h4,
.box-3 h4 {
    font-size: 24px;
    text-decoration: underline;
    font-weight: bold;
    padding-top: 20px;
    color: #d85e3d;
}
.box-1 p,
.box-2 p,
.box-3 p {
    color: #d85e3d;
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

.box-1 a,
.box-2 a,
.box-3 a
 {
    background-color: #ffcf31;
    padding: 10px 30px;
    color: #09465e;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
}


.sec-5 {
    padding: 80px 0;
    background-color: #f2f5f8;
}

.sec-5-heading h2 {
    text-align: center;
    font-size: 45px;
    color: #d85e3d;
    font-weight: bold;
    padding-bottom: 40px;
}

.image-box1 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.image-box1 img {
    width: 416px;
    height: 300px;
}

.inner-image-box {
    background-color: #00aae7;
    padding: 30px;
    text-align: center;
}

.inner-image-box h4 {
   color: #fff;
   padding-top: 10px;
   padding-bottom: 20px;
}
.inner-image-box a {
    background-color: #ffcf31;
    padding: 10px 30px;
    color: #09465e;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
}

.sec-6 {
    background-color: #f1f5f8;
}
.sec-6 h3 {
    color: #d85e3d;
    font-size: 40px;
    font-weight: bold;
}
.sec-6 h2 {
    color: #00aae7;
    font-size: 25px;
}

.sec-6 p {
    color: #3d4041;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.sec-6 a {
    background-color: #ffcf31;
    padding: 15px 30px;
    color: #09465e;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
}

.sec-6-heading h2 {
    text-align: center;
    font-size: 45px;
    color: #d85e3d;
    font-weight: bold;
    padding-bottom: 20px;

}
.sec-6-heading p {
    color: #3d4041;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
}
.sec-6-heading p span {
    color: #0678B7;

}
.contact-us-heading  {
    text-align: center;
}

.contact-us-heading h2 {
    color: #d85e3d;
    font-size: 45px;
    font-weight: bold;
}
.contact-us-heading p {
    color: #056ca5;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 20px;
}




/*  */


.image-sec {
    padding: 0;
    margin: 0;
    display: flex
;
}
.image-sec img {
    width: 500px;
    margin: 0;
    padding: 0;
    height: 330px;
}



.p-y-2 {
    padding-top: 28px;
    padding-bottom: 28px;
}
.p-y-3 {
    padding-top: 45px;
    padding-bottom: 45px;
}
.m-b-1 {
    margin-bottom: 18px;
}
.m-t-1 {
    margin-top: 18px;
}

.main_counter_area{

                background-size: cover;
                overflow: hidden;
            }
            .main_counter_content.text-center.white-text.wow.fadeInUp {
                display: flex;
                gap: 3%;
                justify-content: center;


            }
            .single_counter.p-y-2.m-t-1 h2 {
                font-size: 35px;
                font-weight: 600;
            }
            .main_counter_area .main_counter_content .single_counter{

                    color: #1a5369;
                    font-size: 20px;
            }
            .counter {
                background-color: #f2f5f8;
            }


.rsi-sec-3 h3,h4  {
     font-size: 30px;
     font-weight: bold;
}
.rsi-sec-4 {
    padding: 80px 0;
}

.inner-rsi-sec-4-image img {
    width: 400px;
    height: 350px;
}

.cbs-sec-1 {
    padding-top: 0px;
    padding-bottom: 18rem;
    position: relative;
}

.inner-cbs-sec-1 {
    padding: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: absolute;
    top: -100px;
    left: 100px;
    right: 100px;
    text-align: center;
}

.cbs-sec-2  {
    padding: 100px 0px;
}

.cbs-sec-2-box-1 ,
.cbs-sec-2-box-2 {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adjust values as needed */
    border-radius: 10px;
    margin-top: 50px;

}

.spm-sec-1-main {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adjust values as needed */
    border-radius: 10px;
    background-color: #fff;
    width: 90%;
    padding: 30px;
    margin:  0 auto;
}

.cbs-sec-2-box-1 img ,
.cbs-sec-2-box-2 img
    {
    width: 100%;
    border-radius: 10px 10px 0 0;

}
.inner-cbs-sec-2-box-1,
.inner-cbs-sec-2-box-2
  {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.inner-cbs-sec-2-box-1 h4,
.inner-cbs-sec-2-box-2 h4
 {
    font-size: 25px;
    color: #00aae7;
    padding-top: 20px;
}

.spm-sec-1-image img {
    width: 100%;
    border-radius: 20px;
}
.inner-cbs-sec-2-box-1 h5{
    font-size: 22px;
    font-weight: bold;
}
.inner-cbs-sec-2-box-1 ul li,
.inner-cbs-sec-2-box-2 ul li
 {
    margin-top: 20px;
}

.inner-cbs-sec-2-box-2 h5 {
    font-size: 24px;
    font-weight: bold;
}

.som-sec-2 ul li {
    margin-top: 20px;
}







/* START - RESPONSIVE STYLE */
@media (min-width: 360px) and (max-width: 767px) {
    .logo {
        width: 64px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }

    .isc-offcanvas-show {
        display: block;
    }


    .hero-heading {
        width: 100%;
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 26px;
    }


    .main-section {
        padding: 80px 0;
    }

    .main-content {
        text-align: center;
    }

    .main-content .mini-heading {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .main-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .feature-box {
        gap: 20px;
        width: 100%;
        margin-bottom: 50px;
    }

    .feature-box-image {
        width: 80px;
        height: 80px;
    }

    .feature-box-content h3 {
        font-size: 24px;
    }

    .feature-box-content p {
        font-size: 14px;
        line-height: 24px;
    }


    .csbox img {
        width: 150px;
        height: 150px;
    }

    .csbox {
        margin-bottom: 50px;
        gap: 0;
    }

    .csbox h3 {
        font-size: 16px;
        line-height: 26px;
    }


    .grid-section__image {
        min-height: 250px;
    }

    .grid-section__image>img {
        inset: 0 auto 0 -20vw;
        width: 120vw;
    }

    .grid-section__content {
        padding: 70px 0 !important;
    }


    .social-icons ul {
        justify-content: center;
        margin-bottom: 30px;
    }

    .copyright {
        text-align: center;
    }



    .banner-section {
        text-align: center;
    }

    .banner-section__content h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .banner-section__content p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a, .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        width: 64px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }

    .isc-offcanvas-show {
        display: block;
    }


    .hero-heading {
        width: 100%;
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 26px;
    }


    .main-section {
        padding: 80px 0;
    }

    .main-content {
        text-align: center;
    }

    .main-content .mini-heading {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .feature-box {
        gap: 20px;
        width: 100%;
        margin-bottom: 50px;
    }

    .feature-box-image {
        width: 80px;
        height: 80px;
    }

    .feature-box-content h3 {
        font-size: 24px;
    }

    .feature-box-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .csbox {
        width: 70%;
        margin-bottom: 50px;
        gap: 0;
    }

    .csbox h3 {
        font-size: 16px;
        line-height: 26px;
    }


    .grid-section__image {
        min-height: 250px;
    }

    .grid-section__image>img {
        inset: 0 auto 0 -20vw;
        width: 120vw;
    }

    .grid-section__content {
        padding: 70px 0 !important;
    }


    .social-icons ul {
        justify-content: center;
        margin-bottom: 30px;
    }

    .copyright {
        text-align: center;
    }


    .banner-section {
        text-align: center;
    }

    .banner-section__content h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .banner-section__content p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a, .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .logo {
        width: 74px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }

    .isc-offcanvas-show {
        display: block;
    }

    .csbox {
        width: 100%;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a, .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

/* END - RESPONSIVE STYLE */ container */
    top: 50%;
    transform: translateY(-50%); /* Center the arrows vertically */
}

.carousel-control-prev {
    left: -50px; /* Move the left arrow further out */
}

.carousel-control-next {
    right: -50px; /* Move the right arrow further out */
}

/* Optional: Add hover effect for arrows */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #D75E3D; /* Darker shade on hover */
}




.c-c-sec-4 {
    padding: 80px 0;
}




/* Styling for the Slick Slider */
.slider img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Add border radius to images */
}



.residential-batteries-sec-1 {
    position: relative;
}

.residential-batteries-sec-1-main {
    padding: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: absolute;
    top: -100px;
    left: 100px;
    right: 100px;
}



.residential-batteries-sec-1-right h4 {
    color: #D75E3D;
    font-size: 35px;
}

.residential-batteries-sec-1-right p {
    color: #3d4041;
    font-size: 18px;
    font-weight: 500;
}


.footer-nav > li > a {
    color: white;
}
.footer-nav > li > a:hover {
    color: #00aae7
}


.card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: #f5f5f5;
    width: 420px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text {
    background-color: #2ec6f2; /* bright blue */
    padding: 20px;
    text-align: left;
    color: #fff;
    flex: 1;
}

.card-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.superior-installation {
    background-color: #f3f6f9;
    padding: 60px 20px;
    text-align: center;
}

.superior-installation h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}


.superior-installation .intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    background: #fff;
    width: 440px;
    padding: 30px;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card .blue-heading {
    color: #00a3e0;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-card em {
    font-style: italic;
    font-weight: 500;
    color: #333;
}

.btn-primary {
    display: inline-block;
    background-color: #00a3e0;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #008bc0;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f8fc;
    padding: 20px;
}

.slider-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}
.short-slider {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}
.c-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
}
.c-slide.active {
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
}

/* Navigation arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #d35400;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    border-radius: 50%;
}

.nav.prev {
    left: -50px; /* Adjust spacing from left */
}

.nav.next {
    right: -50px; /* Adjust spacing from right */
}
.nav.prev-2 {
    left: -50px; /* Adjust spacing from left */
}

.nav.next-2 {
    right: -50px; /* Adjust spacing from right */
}

.nav:hover {
    transform: translateY(-50%) scale(1.1);
}


.dots {
    margin-top: 10px;
    text-align: center;
}

.dot, .c-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active, .c-dot.active {
    background-color: #333;
}


.conduit-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.conduit-card {
    flex: 1 1 48%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.conduit-card img {
    width: 100%;
    height: auto;
    display: block;
}

.conduit-card p {
    padding: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.image-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.image-row img {
    flex: 1 1 48%;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.download-btn {
    display: inline-block;
    background-color: #00aeef;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.call-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #00aeef;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
    background: #f4f7fa;
    padding: 20px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card {
    flex: 0 0 calc((100% - 60px) / 3);
    margin: 0 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    color: #cd5c3f;
    cursor: pointer;
    z-index: 2;
}

.nav.left {
    left: -10px;
}

.nav.right {
    right: -10px;
}
.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    font-size: 1.1rem;
    color: #444;
    margin-top: 15px;
    display: none;
    line-height: 1.6;
    max-width: 90%;
}

.faq-item.active .faq-answer {
    display: block;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.video-box {
    width: 48%;
}

video {
    width: 100%;
    border: none;
    display: block;
}

.video-title {
    color: #00aef0;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.video-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-box {
        width: 100%;
    }
}



/* START - RESPONSIVE STYLE */
@media (min-width: 360px) and (max-width: 767px) {
    .logo {
        width: 64px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }


    .isc-offcanvas-show {
        display: block;
    }


    .hero-heading {
        width: 100%;
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 26px;
    }


    .main-section {
        padding: 80px 0;
    }

    .main-content {
        text-align: center;
    }

    .main-content .mini-heading {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .main-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .feature-box {
        gap: 20px;
        width: 100%;
        margin-bottom: 50px;
    }

    .feature-box-image {
        width: 80px;
        height: 80px;
    }

    .feature-box-content h3 {
        font-size: 24px;
    }

    .feature-box-content p {
        font-size: 14px;
        line-height: 24px;
    }


    .csbox img {
        width: 150px;
        height: 150px;
    }

    .csbox {
        margin-bottom: 50px;
        gap: 0;
    }

    .csbox h3 {
        font-size: 16px;
        line-height: 26px;
    }


    .grid-section__image {
        min-height: 250px;
    }

    .grid-section__image>img {
        inset: 0 auto 0 -20vw;
        width: 120vw;
    }

    .grid-section__content {
        padding: 70px 0 !important;
    }


    .social-icons ul {
        justify-content: center;
        margin-bottom: 30px;
    }

    .copyright {
        text-align: center;
    }



    .banner-section {
        text-align: center;
    }

    .banner-section__content h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .banner-section__content p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a,
    .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        width: 64px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }

    .isc-offcanvas-show {
        display: block;
    }


    .hero-heading {
        width: 100%;
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 26px;
    }


    .main-section {
        padding: 80px 0;
    }

    .main-content {
        text-align: center;
    }

    .main-content .mini-heading {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .feature-box {
        gap: 20px;
        width: 100%;
        margin-bottom: 50px;
    }

    .feature-box-image {
        width: 80px;
        height: 80px;
    }

    .feature-box-content h3 {
        font-size: 24px;
    }

    .feature-box-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .csbox {
        width: 70%;
        margin-bottom: 50px;
        gap: 0;
    }

    .csbox h3 {
        font-size: 16px;
        line-height: 26px;
    }


    .grid-section__image {
        min-height: 250px;
    }

    .grid-section__image>img {
        inset: 0 auto 0 -20vw;
        width: 120vw;
    }

    .grid-section__content {
        padding: 70px 0 !important;
    }


    .social-icons ul {
        justify-content: center;
        margin-bottom: 30px;
    }

    .copyright {
        text-align: center;
    }


    .banner-section {
        text-align: center;
    }

    .banner-section__content h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .banner-section__content p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a,
    .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .logo {
        width: 74px;
    }

    .header-main-menu {
        display: none;
    }

    .header-btns-group {
        display: none;
    }

    .isc-offcanvas-show {
        display: block;
    }

    .csbox {
        width: 100%;
    }

    .contact-info-wrap {
        padding: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .contact-info>a,
    .contact-info>span {
        font-size: 14px;
        line-height: 24px;
    }
}

/* END - RESPONSIVE STYLE */
