:root {
    --primary-color: #163300;
    --secondary-color: #EFF1ED;
    --text-color: #888888;
    --white-color: #ffffff;
    --black-color: #000000;
    --accent-color: #89EA5F;
    --white-divider: #ffffff70;
    --divider-color: #DADADA;
    --overlay-color: rgba(22, 51, 0, 0.65);
    --error-color: rgb(230, 87, 87);
    --accent-font: 'Rajdhani', sans-serif;
    --default-font: 'Rubik', sans-serif;
}

/************************************/

/**** 	   02. General css		 ****/

/************************************/

html,
body {
    overflow-x: hidden;
    width: 100%;
}


body {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--default-font);
    color: var(--text-color);
    line-height: 1.6em;
}
.footer-svapps-logo {
    position: relative;
    bottom: 7px;
}
p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--accent-font);
    margin-top: 0;
    font-weight: 700;
    color: var(--primary-color);
}

figure {
    display: block;
    margin: 0;
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.no-gap.row {
    margin-left: 0;
    margin-right: 0;
}

.no-gap.row>* {
    padding-left: 0;
    padding-right: 0;
}

.row.row-equal-height>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.btn-default {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.2s transform ease-in-out;
}

.btn-default:after {
    background-color: var(--primary-color);
    border-radius: 30px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.btn-default:hover::after {
    transform: translate(0, 0);
}

.btn-default:hover {
    color: var(--accent-color);
}

.btn-default.btn-border {
    background: none;
    color: var(--accent-color);
}

#magic-cursor {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 10px !important;
    height: 10px !important;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    z-index: 2;
}

.section-title h3:before {
    content: '';
    display: block;
    width: 12px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/icon-sub-heading.svg) no-repeat left center;
    z-index: -1;
}

@keyframes shapemove {
    50% {
        transform: translateX(10px);
    }
}

.section-title h1,
.section-title h2 {
    font-size: 46px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--accent-color);
}

.section-description p:last-child {
    margin-bottom: 0;
}

/************************************/

/**** 	   03. Header css		 ****/

/************************************/

.topbar {
    position: relative;
    z-index: 100;
    padding: 15px 0;
}

.topbar-contact-info {
    padding-left: 30px;
}

.topbar-contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.topbar-contact-info ul li {
    display: inline-block;
    margin-right: 20px;
    color: var(--white-color);
    font-size: 14px;
}

.topbar-contact-info ul li:last-child {
    margin-right: 0;
}

.topbar-contact-info ul li a {
    color: var(--white-color);
}

.topbar-contact-info ul li i {
    color: var(--accent-color);
    margin-right: 6px;
}

.header-social-links {
    text-align: right;
    padding-right: 30px;
}

.header-social-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-social-links ul li {
    display: inline-block;
    margin-left: 4px;
}

.header-social-links ul li a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 14px;
    background: var(--accent-color);
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.header-social-links ul li a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

header.main-header {
    position: relative;
    max-width: 1270px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 30px;
    border-bottom: 1px solid transparent;
    z-index: 100;
    height:104px !important;
}

header.main-header .header-sticky {
    padding: 25px 15px;
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 15px 0;
    border-radius: 0;
    border-bottom: 1px solid #16330010;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-bottom: 1px solid #16330010;
    transform: translateY(0);
    background: var(--white-color);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.main-menu {
    font-family: var(--default-font);
    justify-content: flex-end;
}

.main-menu ul {
    align-items: center;
}

.main-menu ul li {
    margin: 0 15px;
    position: relative;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul ul li.submenu>a {
    position: relative;
}

.main-menu ul ul li.submenu>a:after {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 15px;
    top: 6px;
    transform: rotate(-90deg);
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 10px !important;
    color: var(--primary-color);
}

.main-menu ul li.highlighted-menu a {
    display: block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    padding: 10px 30px !important;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.2s transform ease-in-out;
}

.main-menu ul li.highlighted-menu a:after {
    background-color: var(--primary-color);
    border-radius: 30px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.main-menu ul li.highlighted-menu a:hover::after {
    transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover {
    color: var(--accent-color);
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    width: 200px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    padding: 6px 20px !important;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

.main-menu ul ul li a:hover {
    color: var(--white-color);
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 100%;
    position: absolute;
    left: 0;
    right: 0;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 6px 0 0;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    margin: 4px auto !important;
}

.slicknav_menu {
    padding: 0;
    background: var(--accent-color);
    border-radius: 20px;
    max-height: 80vh;
    overflow: auto;
}

.slicknav_nav {
    padding-top: 5px;
    padding-bottom: 5px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    font-family: var(--default-font);
    color: var(--primary-color);
    line-height: normal;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    float: right;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav li.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-90deg);
}

/************************************/

/**** 	    04. Hero css		 ****/

/************************************/

.hero {
    position: relative;
    background: url(../images/hero.jpg) no-repeat top center;
    background-size: cover;
    padding: 170px 0 140px;
    margin-top: -162px;
    overflow: hidden;
}

.hero:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(153deg, rgba(22, 51, 0, 0.65) 0%, rgba(22, 51, 0, 0.00) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .section-title {
    text-align: left;
    margin-bottom: 14px;
}

.hero-content .section-title h1 {
    font-size: 42px;
    color: var(--white-color);
}

.hero-content-body p {
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 0px;
}

.hero-content-body .btn-default {
    margin-top: 10px;
}

.hero-content-footer {
    margin-top: 30px;
}

.hero-content-footer .btn-default {
    margin-right: 20px;
}

.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-video .hero-section .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider,
.hero-layout2.hero-slider,
.hero-layout3.hero-slider {
    background: none;
    padding: 0;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide {
    position: relative;
    padding: 250px 80px 110px;
}

.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide {
    padding: 310px 0 140px;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(22, 51, 0, 0.65) 0%, rgba(22, 51, 0, 0.00) 100%);
    z-index: 1;
}

.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
    opacity: 0.55;
    z-index: 1;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-slider-image,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-slider-image img,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-slider-image img,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider .hero-slider-layout1 .hero-slide .hero-content,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-slide .hero-content,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
.hero.hero-slider .hero-slider-layout1 .hero-button-next,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev {
    left: 20px;
    background-image: url(../images/icon-left.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-next,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next {
    right: 20px;
    background-image: url(../images/icon-right.svg);
}

.hero.hero-slider .hero-slider-layout1 .hero-button-prev:hover,
.hero.hero-slider .hero-slider-layout1 .hero-button-next:hover,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev:hover,
.hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next:hover {
    background-color: var(--primary-color);
}

.hero-layout2 {
    position: relative;
    background: url(../images/hero-2.jpg) no-repeat top center;
    background-size: cover;
    padding: 310px 0 140px;
    margin-top: -162px;
    overflow: hidden;
}

.hero-layout2:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
    opacity: 0.55;
    z-index: 1;
}

.hero-layout2-box {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-layout2-box .section-title {
    margin-bottom: 20px;
}

.hero-layout2-box .section-title h1 {
    color: var(--white-color);
    font-size: 70px;
}

.hero-layout2-box .hero-content p {
    color: var(--white-color);
    font-size: 18px;
}

.hero-layout2-box .hero-button {
    margin-top: 40px;
}

.hero-layout2-box .hero-button .btn-default {
    margin: 0 10px;
}

.hero-layout2-box .hero-button .btn-default.btn-border {
    border-color: var(--white-color);
    color: var(--white-color);
}

.hero-layout3 {
    position: relative;
    background: url(../images/hero-3.jpg) no-repeat top center;
    background-size: cover;
    padding: 310px 0 140px;
    margin-top: -162px;
    overflow: hidden;
}

.hero-layout3:before,
.hero-layout3.hero-slider .hero-slider-layout3 .hero-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
    opacity: 0.5;
    z-index: 1;
}

.hero-layout3.hero-slider:before {
    display: none;
}

.hero-layout3 .hero-content,
.hero-layout3 .hero-image {
    position: relative;
    z-index: 1;
}

.hero-layout3 .hero-body {
    max-width: 616px;
}

.hero-layout3 .hero-body p {
    color: var(--white-color);
}

.hero-layout3 .hero-button {
    margin-top: 30px;
}

.hero-layout3 .hero-image {
    text-align: right;
}

.hero-layout3 .hero-image figure {
    display: inline-block;
    border-radius: 50%;
    width: auto;
    border: 2px solid var(--white-divider);
    padding: 10px;
    max-width: 384px;
    aspect-ratio: 1/1;
    position: relative;
}

.hero-layout3 .hero-image figure img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
}

.hero-layout3 .hero-image-box {
    display: inline-block;
    position: relative;
}

.hero-layout3 .hero-image .rotate-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    border-radius: 50%;
    animation: spinner 6s linear infinite;
}

.hero-layout3 .hero-image .rotate-circle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    margin-top: -6px;
    margin-left: -6px;
    background-color: var(--accent-color);
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.hero-slider-layout3 .swiper-pagination {
    bottom: 40px;
}

.hero-slider-layout3 .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: var(--white-color);
}

.hero-slider-layout3 .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/******************************************/

/****   	 05. About us css   	   ****/

/******************************************/

.about-us {
    padding: 100px 0;
}

.about-us .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content ul {
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.about-content ul li {
    width: 48%;
    margin-right: 2%;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.about-content ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.about-image {
    position: relative;
    background: url(../images/about-right-shape.svg) no-repeat top 30px right 6%;
    background-size: 18% auto;
    padding-bottom: 100px;
    margin-right: 20px;
}

.about-img-1 {
    display: inline-block;
    width: 75%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
}

.about-img-2 {
    width: 50%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    border: 6px solid var(--white-color);
}

.about-image-slider {
    position: relative;
    margin-right: 20px;
}

.about-layout2 {
    padding: 50px 0 100px;
}

.about-carousel {
    border-radius: 30px;
    overflow: hidden;
}

.about-layout2 .about-image {
    margin: 0;
    padding: 0;
}

.about-image img {
    width: 100%;
}

.about-carousel .about-button-prev,
.about-carousel .about-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.about-carousel .about-button-prev:hover,
.about-carousel .about-button-next:hover {
    background-color: var(--primary-color);
}

.about-carousel .about-button-prev {
    left: 30px;
    background-image: url(../images/icon-left.svg);
}

.about-carousel .about-button-next {
    right: 30px;
    background-image: url(../images/icon-right.svg);
}

.about-layout2-overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.about-overaly-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.about-overaly-item.about-overaly-item-active {
    background: var(--secondary-color);
}

.about-overaly-item .icon-box {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 20px;
}

.about-overaly-item h3 {
    width: calc(100% - 80px);
    margin: 0;
    font-size: 20px;
}

.about-layout2-content {
    margin-left: 20px;
}

.about-layout2-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-layout2-content .about-stats {
    margin-top: 30px;
    margin-bottom: 40px;
}

.about-layout2-content .about-stats-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-layout2-content .about-stats-item .icon-box {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.about-layout2-content .about-stats-item .about-stats-content {
    width: calc(100% - 80px);
}

.about-layout2-content .about-stats-item .about-stats-content h3 {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--default-font);
}

.about-layout2-content .about-stats-item .about-stats-content p {
    margin: 0;
}

.about-layout3 {
    padding: 100px 0;
}

.about-layout3 .section-title {
    text-align: left;
    margin-bottom: 0;
}

.about-layout3-features {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.about-layout3-features ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.about-layout3-features ul li {
    font-size: 22px;
    font-family: var(--accent-font);
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding: 6px 0 6px 50px;
    margin-right: 60px;
}

.about-layout3-features ul li:before {
    content: '';
    display: block;
    background: var(--accent-color) url(../images/icon-checkmark.svg) no-repeat center center;
    background-size: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.about-layout3-features ul li:last-child {
    margin-right: 0;
}

.about-layout3 .about-img-video {
    position: relative;
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
}

.about-layout3 .about-img-video .about-layout3-image img {
    transition: all 0.5s ease-out;
}

.about-layout3 .about-img-video:hover .about-layout3-image img {
    transform: scale(1.2);
}

/******************************************/

/****  	  06. Our Services css		   ****/

/******************************************/

.our-services {
    padding: 100px 0;
    background: var(--secondary-color);
}

.service-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--white-color);
}

.service-item a.service-box-link {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    z-index: 4;
}

.service-item .service-image:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    border-radius: 30px;
    background: var(--overlay-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.service-item:hover .service-image:before {
    top: 0;
}

.service-item .service-image figure img {
    width: 100%;
    transition: all 0.5s ease-out;
}

.service-item:hover .service-image figure img {
    transform: scale(1.2);
}

.service-image .service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    z-index: 2;
}

.service-item .service-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--white-color);
    border-radius: 30px;
    padding: 25px;
    z-index: 2;
    transition: all 0.2s ease-out;
}

.service-item:hover .service-content {
    bottom: 30px;
}

.service-item .service-content h3 {
    font-size: 22px;
}

.service-item .service-content p {
    margin-bottom: 0;
}

.services-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.services-slider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.services-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.services-layout2 {
    padding: 100px 0;
    background: var(--secondary-color);
}

.services-layout2-slide {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
}

.services-layout2-slide .service-image {
    -webkit-mask-image: url(../images/service-mask-img.svg);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/service-mask-img.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.services-layout2-slide .service-image figure img {
    width: 100%;
    aspect-ratio: 1/0.929;
    transition: all 0.5s ease-out;
}

.services-layout2-slide:hover .service-image figure img {
    transform: scale(1.2);
}

.services-layout2-slide .service-content {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.services-layout2-slide .service-content .service-info {
    width: calc(100% - 80px);
}

.services-layout2-slide .service-content .icon-box {
    width: 60px;
    margin-left: 20px;
}

.services-layout2-slide .service-content .icon-box a {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.services-layout2-slide .service-content .icon-box a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 20px;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.services-layout2-slide:hover .service-content .icon-box a::before {
    transform: translate(0);
}

.services-layout2-slide:hover .service-image figure::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.services-layout2-slide .service-content .icon-box img {
    position: relative;
    z-index: 1;
}

.services-layout2-slide .service-content .service-info h3 {
    font-size: 22px;
}

.services-layout2-slide .service-content .service-info p {
    margin-bottom: 0;
}

.services-layout2-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.services-layout2-slider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.services-layout2-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.services-layout3 {
    padding: 100px 0;
    background: var(--secondary-color);
    background-size: cover;
}

.section-title-row {
    margin-bottom: 60px;
}

.section-title-row .section-title {
    text-align: left;
    margin-bottom: 0;
}

.service-slide3 .service-image {
    border-radius: 30px;
    overflow: hidden;
}

.service-slide3 .service-image img {
    aspect-ratio: 1/0.7;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.service-slide3:hover .service-image img {
    transform: scale(1.2);
}

.service-slide3 .service-content {
    background-color: var(--white-color);
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.service-slide3 .service-content h3 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
}

.services-layout3-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.services-layout3-slider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.services-layout3-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/******************************************/

/****   	 07. Our Process css  	   ****/

/******************************************/

.our-process {
    padding: 100px 0 50px;
}

.step-item {
    text-align: center;
    padding: 20px 40px 0;
    position: relative;
}

.step-header {
    margin-bottom: 30px;
    position: relative;
}

.step-item.step-1 .step-header:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/icon-step1.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-item.step-2 .step-header:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 212px;
    height: 46px;
    background: url(../images/icon-step2.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-item.step-3 .step-header:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 210px;
    height: 45px;
    background: url(../images/icon-step1.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(156px, -50%);
}

.step-icon i {
    color: #fff
}

.step-header .step-icon {
    width: 130px;
    height: 130px;
    position: relative;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-header .step-icon figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.step-header .step-icon figure img {
    position: relative;
    z-index: 1;
}

.step-header .step-icon figure:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #16330061;
    border-radius: 30px;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.step-item:hover .step-icon figure:before {
    transform: translate(0);
}

.step-header .step-no {
    display: block;
    height: 48px;
    width: 48px;
    background: var(--accent-color);
    border-radius: 30px;
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
    border: 4px solid var(--white-color);
}

.step-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    margin-bottom: 0;
}

.our-process-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

.process-item2 {
    background: var(--white-color);
    max-width: 310px;
    margin: 20px auto 0;
    aspect-ratio: 1/1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.process-item2 .process-step {
    width: 100px;
    height: 100px;
    position: relative;
    background: var(--accent-color);
    border: 4px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--white-color);
    font-family: var(--accent-font);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    overflow: hidden;
}

.process-item2 .process-step:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease-out;
}

.process-item2 .process-step span {
    position: relative;
    z-index: 1;
}

.process-item2:hover .process-step:before {
    top: 0;
    left: 0;
}

.process-item2 .process-content {
    text-align: center;
    padding: 0 30px;
}

.process-item2 .process-content .icon-box {
    margin-bottom: 25px;
}

.process-item2 .process-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-item2 .process-content p {
    margin: 0;
}

.our-process-layout2 .process-item2:after {
    content: '';
    display: block;
    width: 84px;
    height: 84px;
    background: url(../images/icon-step-right.svg) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.our-process-layout2 .row .col-lg-4:last-child .process-item2:after {
    display: none;
}

/******************************************/

/****   	 08. Intro Video css   	   ****/

/******************************************/

.intro-video {
    padding: 50px 0;
}

.intro-video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.intro-video-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
    z-index: 1;
}

.intro-video-box .video-image img {
    transition: all 0.5s ease-in-out;
}

.intro-video-box:hover .video-image img {
    transform: scale(1.2);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.video-play-button a {
    display: inline-block;
    position: relative;
    font-size: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
}

.video-play-button a img {
    width: 80px;
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/******************************************/

/****   	 09. Our Skills css   	   ****/

/******************************************/

.our-skills {
    padding: 50px 0;
    background: var(--secondary-color);
}

.our-skills .section-title {
    text-align: left;
    margin-bottom: 0;
}

.our-skills .section-title h2 {
    margin-bottom: 20px;
}

.our-skills .section-title p {
    margin-bottom: 0;
}

.skillbar {
    margin-bottom: 40px;
}

.skillbar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skillbar .skill-data .title {
    color: var(--primary-color);
    font-size: 22px;
    font-family: var(--accent-font);
    font-weight: 700;
}

.skillbar .skill-data .count {
    color: var(--accent-color);
    font-size: 22px;
    font-family: var(--accent-font);
    font-weight: 700;
}

.skillbar .skill-progress {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: var(--secondary-color);
    position: relative;
}

.skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--accent-color);
}

/******************************************/

/****   	 10. Infobar CTA css   	   ****/

/******************************************/

.infobar {
    padding: 50px 0;
}

.cta-box {
    background-color: var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
}

.cta-box .cta-image img {
    width: 100%;
}

.cta-content {
    position: relative;
    padding: 0 60px;
}

.cta-content .phone-icon {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 50px;
    border: 6px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    top: 50%;
    overflow: hidden;
    transform: translate(-70px, -50%);
}

.cta-content .phone-icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.cta-box:hover .cta-content .phone-icon:before {
    transform: translate(0);
}

.cta-content .phone-icon figure {
    text-align: center;
}

.cta-content .phone-icon figure img {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 40px;
    color: var(--primary-color);
}

.cta-content h3 span {
    color: var(--accent-color);
}

.cta-content p {
    margin-bottom: 0;
}

/******************************************/

/****   	11. Why Choose Us css  	   ****/

/******************************************/

.why-choose-us {
    padding: 100px 0;
    background: var(--secondary-color);
}

.why-choose-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 25px;
    height: 100%;
}

.why-choose-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    z-index: 3;
    border-radius: 30px;
    transition: all 0.3s ease-out;
}

.why-choose-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    overflow: hidden;
    transition: all 0.1s ease-out;
}

.why-choose-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-color);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.why-choose-content {
    position: relative;
    z-index: 4;
}

.why-choose-content .why-choose-icon {
    margin-bottom: 20px;
}

.why-choose-content .why-choose-icon img {
    max-height: 60px;
}

.why-choose-content h3 {
    font-size: 22px;
    transition: all 0.3s ease-out;
}

.why-choose-content p {
    margin-bottom: 0;
    transition: all 0.3s ease-out;
}

.why-choose-item:hover:before {
    transform: translate(100%, -100%);
}

.why-choose-item:hover .why-choose-image {
    opacity: 1;
}

.why-choose-item:hover .why-choose-content h3,
.why-choose-item:hover .why-choose-content p {
    color: var(--white-color);
}

.why-chooseus-layout2 .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.why-chooseus-layout2 .why-choose-us-img-box {
    position: relative;
    background: url(../images/whyus-left-img.jpg) no-repeat center center;
    background-size: cover;
    padding: 100px 15px;
    height: 100%;
    min-height: 300px;
}

.why-choose-us-layout2-content {
    padding: 100px;
}

.why-choose-us-layout2-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-choose-us-layout2-content .why-choose-us-body {
    margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.why-choose-us-layout2-features .why-features-item:last-child {
    margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc {
    width: calc(100% - 80px);
}

.why-choose-us-layout2-features .why-features-item .why-features-desc h3 {
    font-size: 22px;
    margin-bottom: 0;
}

.why-choose-us-layout2-features .why-features-item .why-features-desc p {
    margin: 0;
}

.why-choose-us-layout3 {
    padding: 100px 0;
    background: var(--secondary-color);
}

.why-choose-item3 {
    background: var(--white-color);
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.why-choose-item3:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item3 .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.why-choose-item3 h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-item3 p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-item3:hover:before {
    top: 0;
    left: 0;
}

.why-choose-item3:hover h3,
.why-choose-item3:hover p {
    color: var(--white-color);
}

/******************************************/

/****   	12. Stat Counter css  	   ****/

/******************************************/

.stat-counter {
    padding: 60px 0;
    background: var(--primary-color);
}

.counter-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.counter-item .counter-icon {
    width: 80px;
    height: 80px;
    border-radius: 30px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.counter-content {
    width: calc(100% - 110px);
}

.counter-content h3 {
    font-size: 40px;
    color: var(--white-color);
    margin-bottom: 0;
}

.counter-content p {
    margin-bottom: 0;
    color: var(--accent-color);
}

.company-overview {
    padding: 100px 0 70px;
}

.company-overview .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.overview-counter-box {
    margin-left: 80px;
}

.overview-counter-box .overview-counter-item {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.overview-counter-box .overview-counter-item .icon-box {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-right: 20px;
}

.overview-counter-box .overview-counter-item .overview-counter-content {
    width: calc(100% - 100px);
}

.overview-counter-box .overview-counter-item .overview-counter-content h3 {
    font-size: 40px;
    margin: 0;
}

.overview-counter-box .overview-counter-item .overview-counter-content p {
    margin: 0;
}

/******************************************/

/****   	13. Solar Form css  	   ****/

/******************************************/

.solar-calculator {
    padding: 100px 0 50px;
}

.calculator-box {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 50px;
}

.calculator-box .section-title {
    margin-bottom: 0;
    text-align: left;
}

.solar-form .form-control {
    background: var(--white-color);
    border: none;
    outline: 0;
    box-shadow: none;
    border-radius: 10px;
    font-family: var(--default-font);
    font-size: 14px;
    color: var(--text-color);
    padding: 14px 20px;
}

.solar-form select.form-control {
    background-image: url(../images/icon-down.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.solar-form .btn-default {
    padding: 12px 40px;
}

.solar-form .with-errors ul {
    padding: 0 0 0 4px;
    margin: 0;
    list-style: none;
    color: var(--error-color);
    font-size: 14px;
}

/******************************************/

/****   	14. Latest Post css  	   ****/

/******************************************/

.latest-news {
    padding: 50px 0;
}

.blog-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.blog-item .post-featured-image {
    margin-bottom: 0;
}

.blog-item .post-featured-image a {
    position: relative;
    z-index: 1;
}

.blog-item .post-featured-image img {
    width: 100%;
    aspect-ratio: 1/1.18;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img {
    transform: scale(1.2);
}

.blog-item .post-item-body {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--white-color);
    border-radius: 30px;
    padding: 25px;
    z-index: 4;
}

.blog-item .post-item-body h2 {
    color: var(--primary-color);
    font-size: 22px;
}

.blog-item .post-item-body h2 a {
    color: inherit;
    transition: all 0.3s ease-out;
}

.blog-item .post-item-body h2 a:hover {
    color: var(--accent-color);
}

.blog-item .post-item-body .post-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-item .post-item-body .post-meta ul li {
    display: inline-block;
    margin-right: 10px;
    color: var(--text-color);
}

.blog-item .post-item-body .post-meta ul li i {
    color: var(--accent-color);
    margin-right: 4px;
}

.blog-item .post-item-body .post-meta ul li a {
    color: inherit;
}

.blog-item .btn-readmore {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.blog-item:hover .btn-readmore {
    height: 62px;
}

.blog-item .btn-default {
    padding: 6px 20px;
    margin-top: 20px;
    font-size: 14px;
}

.blog-item:hover .image-anime:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.related-posts {
    padding: 50px 0;
}

.latest-post-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

.post-item2 {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
}

.post-item2 .post-featured-image {
    -webkit-mask-image: url(../images/post-mask-img.svg);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/post-mask-img.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    border-radius: 0;
    margin: 0;
    position: relative;
}

.post-item2 .post-featured-image img {
    aspect-ratio: 1.08/1;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.post-item2:hover .image-anime:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.post-item2:hover .post-featured-image img {
    transform: scale(1.2);
}

.post-item2 .post-featured-image a.blog-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 55%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.post-item2:hover .post-featured-image a.blog-link {
    opacity: 1;
    top: 50%
}

.post-item2 .post-featured-image a.blog-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-item2 .post-body {
    padding: 20px 30px 30px;
}

.post-item2 .post-body h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-item2 .post-body h2 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-item2 .post-body h2 a:hover {
    color: var(--accent-color);
}

.post-item2 .post-body p {
    margin: 0;
}

.latest-post-layout3 {
    padding: 100px 0;
    background: var(--secondary-color);
}

.post-item3 .post-featured-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-item3 .post-featured-image figure img {
    aspect-ratio: 1/0.7;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.post-item3 .post-featured-image .blog-read-more {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--overlay-color);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.post-item3 .post-featured-image .blog-read-more a {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    position: relative;
    top: 20px;
    transition: all 0.3s ease-out;
}

.post-item3 .post-featured-image .blog-read-more a:hover {
    background: var(--primary-color);
}

.post-item3:hover .post-featured-image figure img {
    transform: scale(1.1);
}

.post-item3:hover .post-featured-image .blog-read-more {
    opacity: 1;
}

.post-item3:hover .post-featured-image .blog-read-more a {
    top: 0;
}

.post-item3 .post-body h2 {
    font-size: 22px;
    color: var(--primary-color);
}

.post-item3 .post-body h2 a {
    color: var(--primary-color);
    transition: all 0.3s ease-out;
}

.post-item3 .post-body h2 a:hover {
    color: var(--accent-color);
}

.post-item3 .post-body p {
    margin-bottom: 0;
}

/******************************************/

/****   	  15. Pricing css 	       ****/

/******************************************/

.pricing-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

.pricing-item2 {
    background: var(--white-color);
    padding: 0 40px 40px;
    border-radius: 30px;
    margin-top: 18px;
}

.pricing-item2 .package-icon-box {
    background: var(--accent-color);
    width: 110px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 60px 60px;
    margin: 0 auto 15px;
    position: relative;
    top: -18px;
}

.pricing-item2 .package-icon-box:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-right: 18px solid #72C64D;
    border-top: 18px solid transparent;
    position: absolute;
    left: -18px;
    top: 0;
}

.pricing-item2 .package-icon-box:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid #72C64D;
    border-top: 18px solid transparent;
    position: absolute;
    right: -18px;
    top: 0;
}

.pricing-item2 .price-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-item2 .price-header h2 {
    font-size: 22px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.pricing-item2 .price-header p {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--accent-font);
    color: var(--accent-color);
    margin: 0;
}

.pricing-item2 .price-header p span {
    font-size: 20px;
    font-weight: 600;
}

.pricing-item2 .price-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-item2 .price-body ul li {
    position: relative;
    padding-left: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-item2 .price-body ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-item2 .price-buy-button {
    margin-top: 30px;
    text-align: center;
}

.our-pricing-layout3 {
    padding: 100px 0;
    background: var(--secondary-color);
}

.pricing-item-layout3 {
    background: var(--white-color);
    text-align: center;
    border-radius: 30px;
}

.pricing-item-layout3 .pricing-header .package-name {
    padding: 25px 20px;
}

.pricing-item-layout3 .pricing-header .package-name h3 {
    margin: 0;
    font-size: 26px;
}

.pricing-item-layout3 .pricing-header .package-price {
    background: var(--accent-color);
    padding: 10px 20px 4px;
    position: relative;
    margin-bottom: 30px;
}

.pricing-item-layout3 .pricing-header .package-price:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 18px solid var(--accent-color);
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-item-layout3 .pricing-header .package-price p {
    font-size: 30px;
    color: var(--white-color);
    font-weight: 700;
    font-family: var(--accent-font);
    margin: 0;
    padding: 0;
}

.pricing-item-layout3 .pricing-header .package-price p span {
    font-size: 20px;
    font-weight: 500;
}

.pricing-item-layout3 .pricing-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-item-layout3 .pricing-body ul li {
    border-bottom: 1px dashed var(--divider-color);
    padding: 14px 20px 14px 50px;
    position: relative;
    text-align: left;
}

.pricing-item-layout3 .pricing-body ul li:last-child {
    border-bottom: none;
}

.pricing-item-layout3 .pricing-body ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 14px;
    left: 20px;
}

.pricing-item-layout3 .pricing-footer {
    padding: 30px 20px;
}

/******************************************/

/****   	16. Latest Project css 	   ****/

/******************************************/

.our-projects-layout2 {
    padding: 100px 0;
}

.our-projects-layout2 .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.project-layout2-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.project-layout2-slide {
    background: var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
}

.project-layout2-slide .project-image {
    -webkit-mask-image: url(../images/project-mask-img.svg);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/project-mask-img.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.project-layout2-slide .project-image img {
    width: 100%;
    aspect-ratio: 0.91/1;
    transition: all 0.5s ease-out;
}

.project-layout2-slide:hover .project-image img {
    transform: scale(1.2);
}

.project-layout2-slide .project-content {
    padding: 15px 80px 30px 30px;
    position: relative;
}

.project-layout2-slide .project-content h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.project-layout2-slide .project-content p {
    margin: 0;
}

.project-layout2-slide .project-content .btn-link-box a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 15px;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
}

.project-layout2-slide .project-content .btn-link-box a:before {
    content: '';
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--primary-color);
    z-index: 1;
    transition: all 0.2s ease-out;
}

.project-layout2-slide .project-content .btn-link-box a img {
    position: relative;
    z-index: 1;
}

.project-layout2-slide:hover .project-content .btn-link-box a:before {
    top: 0;
    left: 0;
}

.project-layout3 {
    padding: 100px 0;
}

.project-layout3 .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.project-layout3-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.project-slide3 {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.project-slide3 .project-image img {
    width: 100%;
    aspect-ratio: 1/0.6;
    object-fit: cover;
}

.project-slide3 .project-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    background: linear-gradient(transparent, var(--overlay-color));
    display: flex;
    flex-wrap: wrap;
    align-content: end;
    justify-content: center;
    padding: 20px;
}

.project-slide3 .project-content h3 {
    width: 100%;
    text-align: center;
    font-size: 26px;
    color: var(--accent-color);
    margin-bottom: 0;
}

.project-slide3 .project-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

/******************************************/

/****   	  17. Features css  	   ****/

/******************************************/

.features-layout2 {
    padding: 100px 0 50px;
}

.features-layout2-box {
    background: var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
}

.features-item2 {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.features-item2:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0;
    border-radius: 30px;
    transition: all 0.3s ease-out;
}

.features-item2 .features-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.features-item2 .features-header .icon-box {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.features-item2 .features-header h3 {
    width: calc(100% - 100px);
    margin: 0;
    font-size: 26px;
    transition: all 0.2s ease-out;
}

.features-item2 .features-desc p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-out;
}

.features-item2.features-active {
    background: var(--accent-color);
}

.features-item2.features-active .features-header .icon-box {
    background: var(--white-color);
}

.features-item2.features-active .features-header h3,
.features-item2.features-active .features-desc p {
    color: var(--white-color);
}

.features-item2:hover:before {
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.features-item2:hover .features-header h3,
.features-item2:hover .features-desc p {
    color: var(--white-color);
}

/******************************************/

/****   		18. Team css  	   	   ****/

/******************************************/

.team-layout2 {
    background: var(--secondary-color);
    padding: 100px 0;
}

.team-item2 {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
}

.team-item2 .team-image {
    -webkit-mask-image: url(../images/team-mask-img.svg);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/team-mask-img.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.team-item2 .team-image img {
    aspect-ratio: 0.83/1;
    object-fit: cover;
    object-position: top center;
    transition: all 0.5s ease-out;
}

.team-item2:hover .team-image img {
    transform: scale(1.1);
}

.team-item2:hover figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.team-item2 .team-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 30px;
    margin-top: -50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.team-item2 .team-links .link-icon {
    width: 40px;
    height: 40px;
    margin-right: 6px;
}

.team-item2 .team-links .link-icon a {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease-out;
}

.team-item2 .team-links .link-icon a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.team-item2 .team-links .team-social-links {
    width: calc(100% - 50px);
    margin: 0;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.team-item2:hover .team-links .team-social-links {
    transform: translateX(0);
    opacity: 1;
}

.team-item2 .team-links .team-social-links ul {
    margin: 0;
}

.team-item2 .team-links .team-social-links ul li {
    margin-right: 2px;
}

.team-item2 .team-links .team-social-links ul li a {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    font-size: 16px;
    color: var(--primary-color);
}

.team-item2 .team-links .team-social-links ul li a:hover {
    color: var(--white-color);
}

.team-item2 .team-content {
    padding: 0 30px 25px;
}

.team-item2 .team-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-item2 .team-content p {
    margin: 0;
}

/******************************************/

/****   	19. Testimonial css  	   ****/

/******************************************/

.testimonial-layout2 {
    padding: 100px 0;
    background: url(../images/map-bg-img.svg) no-repeat top center;
}

.testimonial-slider2 .testimonial-item2 {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    top: 0;
    margin-bottom: 30px;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header .testimonial-author-image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    position: relative;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header .testimonial-author-image:after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent-color) url(../images/icon-quote.svg) no-repeat center center;
    background-size: 50% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    transition: all 0.3s ease-out;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header .testimonial-author-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header .testimonial-author-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.testimonial-slider2 .testimonial-item2 .testimonial-header .testimonial-author-info p {
    margin: 0;
}

.testimonial-slider2 .testimonial-item2 .testimonial-body {
    padding: 0;
}

.testimonial-slider2 .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.testimonial-slider2 .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.testimonial-slider2 .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonial-layout3 {
    padding: 100px 0;
    background: var(--white-color) url(../images/map-bg-img.svg) no-repeat center center;
    background-size: cover;
}

.testimonial-slide3 {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 30px;
}

.testimonial-slide3 .testimonial-content .rating-image {
    margin-bottom: 15px;
}

.testimonial-slide3 .testimonial-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testimonial-slide3 .testimonial-footer .author-image {
    width: 70px;
    margin-right: 20px;
}

.testimonial-slide3 .testimonial-footer .author-image img {
    border-radius: 40px;
}

.testimonial-slide3 .testimonial-footer .author-info {
    width: calc(100% - 90px);
}

.testimonial-slide3 .testimonial-footer .author-info h3 {
    font-size: 22px;
    margin: 0 0 4px;
}

.testimonial-slide3 .testimonial-footer .author-info p {
    margin: 0;
}

.testimoinal-layout3-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.testimoinal-layout3-slider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.testimoinal-layout3-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/******************************************/

/****   	20. Why Renewable css  	   ****/

/******************************************/

.why-renewable {
    padding: 100px 0;
}

.why-renewable-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 30px;
}

.why-renewable-left .why-renewable-img-1,
.why-renewable-left .why-renewable-img-2 {
    width: 48%;
}

.why-renewable-left .why-renewable-img-1 img,
.why-renewable-left .why-renewable-img-2 img {
    border-radius: 30px;
}

.why-renewable-left .why-renewable-img-1 p,
.why-renewable-left .why-renewable-img-2 p {
    display: inline-block;
    background: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
    position: relative;
    padding: 4px 20px;
    border-radius: 12px;
    margin: 0;
    z-index: 2;
}

.why-renewable-left .why-renewable-img-1 {
    text-align: right;
}

.why-renewable-left .why-renewable-img-2 {
    margin-top: 30px;
}

.why-renewable-left .why-renewable-img-1 p {
    margin-top: 20px;
    margin-right: -60px;
    background: var(--accent-color);
    animation: moveobjectright 2s infinite linear alternate;
}

.why-renewable-left .why-renewable-img-2 p {
    margin-bottom: 20px;
    margin-left: -60px;
    animation: moveobjectleft 2s infinite linear alternate;
}

@keyframes moveobjectleft {
    50% {
        margin-left: -40px;
    }
}

@keyframes moveobjectright {
    50% {
        margin-right: -40px;
    }
}

.why-renewable-item {
    padding-left: 50px;
    position: relative;
    margin-bottom: 40px;
}

.why-renewable-item:last-child {
    margin-bottom: 0;
}

.why-renewable-item .stepno {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--accent-font);
    position: absolute;
    top: 0;
    left: 0;
}

.why-renewable-item h3 {
    font-size: 26px;
    padding-top: 2px;
    margin-bottom: 10px;
}

.why-renewable-item p {
    margin-bottom: 0;
}

/******************************************/

/****   	21. Our Story css  	   	   ****/

/******************************************/

.our-story {
    padding: 100px 0;
    background: var(--secondary-color);
}

.our-story-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.our-story-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-story-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.our-story-body ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.our-story-body .btn-default {
    margin-top: 30px;
}

.our-story-image {
    border-radius: 30px;
    overflow: hidden;
    margin-right: 40px;
    line-height: 0;
}

.our-story-image img {
    width: 100%;
}

.story-counter-item {
    margin-bottom: 40px;
}

.story-counter-item:last-child {
    margin-bottom: 0;
}

.story-counter-item h3 {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 0;
}

.story-counter-item h3 span {
    color: var(--primary-color);
}

.story-counter-item p {
    margin-bottom: 0;
}

/******************************************/

/****   	22. Our Clients css  	   ****/

/******************************************/

.our-clients-layout3 {
    padding: 100px 0;
}

.client-logos-layout3 {
    display: flex;
    flex-wrap: wrap;
}

.client-logos-layout3 .client-logo-item {
    width: calc(20% - 24px);
    margin-right: 30px;
    background: var(--secondary-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 30px;
}

.client-logos-layout3 .client-logo-item:nth-of-type(5n + 5) {
    margin-right: 0;
}

/******************************************/

/****   	23. Footer Ticker css  	   ****/

/******************************************/

.footer-ticker {
    padding: 20px 0 10px;
}

.scrolling-ticker-box {
    --gap: 30px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 50s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    font-family: var(--accent-font);
    text-transform: uppercase;
    font-size: 100px;
    line-height: 1.1em;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    font-weight: 700;
    -webkit-text-stroke-color: var(--accent-color);
    stroke: var(--accent-color);
}

.scrolling-content span:after {
    content: '/';
    margin-left: 30px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/******************************************/

/****   		24. Footer css  	   ****/

/******************************************/

footer.main-footer {
    /* padding: 0 0 60px; */
    background: var(--primary-color) url(../images/footer-bg.svg) no-repeat bottom center;
    background-size: cover;
}

.footer-contact {
    border-bottom: 1px solid #ffffff20;
    margin-bottom: 80px;
    padding: 30px 0;
}

.footer-contact-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-contact-box .contact-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    margin-right: 30px;
}

.footer-contact-info {
    width: calc(100% - 110px);
}

.footer-contact-info h3 {
    color: var(--white-color);
    font-size: 22px;
}

.footer-contact-info p {
    margin-bottom: 0;
    color: var(--white-color);
}

.footer-about figure {
    margin-bottom: 30px;
}

.footer-about p {
    color: var(--white-color);
}

.footer-social-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links ul li a {
    color: var(--accent-color);
}

.footer-links {
    /* padding-left: 80px; */
}

.footer-links h2 {
    color: var(--white-color);
    font-size: 22px;
    position: relative;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    position: relative;
    margin-bottom: 10px;
}

.footer-links ul li a {
    display: block;
    padding-left: 16px;
    color: var(--white-color);
}

.footer-links p {
    display: block;
    /* padding-left: 16px; */
    color: var(--white-color);
}

.footer-links ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(0, -50%);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-copyright p {
    margin: 0 !important;
    color: #000;
    font-size: 18px;
}

.footer-copyright .left p {
    text-align: left;
}

.footer-copyright .right {
    text-align: right;
}

.footer-copyright {
    background: var(--accent-color);
    padding: 30px;
    /* border-radius: 30px; */
    margin-top: 60px;
}

.footer-copyright-text {
    text-align: center;
}

.footer-copyright-text p {
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
}

/******************************************/

/****	  	 25. About us page css 	   ****/

/******************************************/

.page-header {
    position: relative;
    background: url(../images/header-banner.jpg) no-repeat center center;
    padding: 260px 0 100px;
    margin-top: -162px;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(22, 51, 0, 0.65) 0%, rgba(22, 51, 0, 0.00) 100%);
}

.page-header-box {
    position: relative;
    z-index: 1;
}

.page-header-box h1 {
    font-size: 70px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header-box ol {
    margin-bottom: 0;
}

.page-header-box ol li.breadcrumb-item {
    color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.latest-projects {
    padding: 100px 0;
    background: var(--secondary-color);
}

.project-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.project-item .project-image {
    position: relative;
}

.project-item .project-image:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    z-index: 1;
    background: var(--overlay-color);
    transition: all 0.3s ease-out;
}

.project-item .project-image img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.project-item:hover .project-image img {
    transform: scale(1.2);
}

.project-item .project-content {
    background: var(--white-color);
    border-radius: 30px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 20px;
    z-index: 2;
    transition: all 0.2s ease-out;
}

.project-item .project-content h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.project-item .project-content h2 a {
    color: inherit;
}

.project-item .project-content p {
    margin-bottom: 0;
}

.project-item .project-link {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}

.project-item .project-link a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item:hover .project-image:before {
    top: 0;
}

.project-item:hover .project-content {
    bottom: 20px;
}

.testimonials {
    padding: 100px 0;
    background: var(--secondary-color);
}

.testimonial-item {
    background: var(--white-color);
    position: relative;
    border-radius: 30px;
    text-align: center;
    margin-top: 60px;
}

.testimonial-header {
    position: relative;
    top: -60px;
    margin-bottom: -60px;
}

.testimonial-header .testimonial-author-img {
    max-width: 130px;
    margin: 0 auto 10px;
    position: relative;
}

.testimonial-header .testimonial-author-img figure {
    overflow: hidden;
    border-radius: 50%;
}

.testimonial-header .testimonial-author-img img {
    border-radius: 100px;
    aspect-ratio: 1/1;
    border: 6px solid var(--white-color);
}

.testimonial-item:hover .image-anime:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.testimonial-author-img .icon-quote {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: absolute;
    right: -10px;
    bottom: 30px;
    transition: all 0.3s ease-out;
}

.testimonial-author-img .icon-quote img {
    border: none;
}

.testimonial-header h2 {
    font-size: 22px;
    margin: 0;
}

.testimonial-header p {
    margin-bottom: 0;
}

.testimonial-rating {
    margin: 20px 0 10px;
}

.testimonial-body {
    padding: 0 40px 40px;
}

.testimonial-body p:last-child {
    margin-bottom: 0;
}

.testimonial-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.our-team {
    padding: 100px 0 50px;
}

.team-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.team-item .team-image figure img {
    width: 100%;
    transition: all 0.5s ease-out;
}

.team-item:hover .team-image figure img {
    transform: scale(1.1);
}

.team-item:hover .team-image figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.team-item .team-content {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 20px;
    z-index: 2;
}

.team-item .team-content h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-item .team-content p {
    margin: 0;
}

.team-item .team-content a.btn-team-link {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

/******************************************/

/****   	26. Services page css  	   ****/

/******************************************/

.page-services {
    padding: 100px 0 20px;
}

.page-services .service-item {
    margin-bottom: 30px;
}

/******************************************/

/****    27. Service Single page css   ****/

/******************************************/

.page-service-single {
    padding: 100px 0 50px;
}

.service-sidebar {
    padding-right: 30px;
}

.services-list-box {
    background: var(--secondary-color);
    padding: 20px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.services-list-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.services-list-box ul li a {
    display: block;
    position: relative;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--accent-font);
    padding: 16px 0 14px 24px;
    border-bottom: 1px solid #89EA5F30;
    transition: all 0.3s ease-out;
}

.services-list-box ul li a:hover {
    color: var(--accent-color);
}

.services-list-box ul li a:before {
    content: '';
    display: block;
    height: 16px;
    width: 16px;
    background: url(../images/icon-solor.svg) no-repeat left center;
    position: absolute;
    top: 20px;
    left: 0;
}

.services-list-box ul li:last-child a {
    border-bottom: none;
}

.sidebar-cta-box {
    border-radius: 30px;
    overflow: hidden;
    background: var(--secondary-color);
}

.sidebar-cta-box .cta-image img {
    width: 100%;
    transition: all 0.5s ease-out;
}

.sidebar-cta-box .cta-content {
    padding: 0 30px 30px;
    text-align: center;
    margin-top: -40px;
}

.sidebar-cta-box .cta-content .cta-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border: 4px solid var(--white-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.sidebar-cta-box .cta-content .cta-icon img {
    max-width: 50%;
}

.sidebar-cta-box .cta-content h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.sidebar-cta-box .cta-content p {
    margin: 0;
    font-size: 36px;
    color: var(--accent-color);
    font-family: var(--accent-font);
    font-weight: 700;
}

.sidebar-cta-box:hover .cta-image img {
    transform: scale(1.1);
}

.sidebar-cta-box:hover .cta-image figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.service-featured-image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-entry {
    margin-bottom: 50px;
}

.service-whyus {
    margin-bottom: 50px;
}

.service-whyus h2 {
    font-size: 30px;
    margin: 0 0 0.7em;
}

.service-benefits {
    margin-bottom: 20px;
}

.service-benefits .service-benefits-title {
    margin-bottom: 30px;
}

.service-benefits .service-benefits-title h2 {
    font-size: 30px;
}

.benefits-item {
    margin-bottom: 40px;
    padding-right: 20px;
}

.benefits-item .icon-box {
    margin-bottom: 20px;
}

.benefits-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features {
    margin-bottom: 50px;
}

.service-features .service-feature-image {
    border-radius: 30px;
    overflow: hidden;
}

.service-features .service-feature-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.service-features .service-feature-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-features .service-feature-content ul li {
    position: relative;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-left: 30px;
}

.service-features .service-feature-content ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-color);
    position: absolute;
    top: 0;
    left: 0;
}

.faq-box h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.faq-accordion .accordion-item {
    margin-bottom: 20px;
    border: none;
}

.faq-accordion .accordion-header {
    margin-bottom: 0;
    font-family: var(--accent-font);
}

.faq-accordion .accordion-header button {
    background: var(--secondary-color);
    border-radius: 15px !important;
    font-weight: 700;
    font-size: 18px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-header button:after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    background: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--white-color);
}

.faq-accordion .accordion-body p {
    color: var(--text-color);
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

/******************************************/

/****   28. Contact us page css   	   ****/

/******************************************/

.contact-information {
    padding: 100px 0;
}

.contact-info-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.contact-info-item .contact-image img {
    width: 100%;
    transition: all 0.5s ease-out;
}

.contact-info-item:hover .contact-image .image-anime:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.contact-info-item:hover .contact-image img {
    transform: scale(1.1);
}

.contact-info-item .contact-info-content {
    background: var(--white-color);
    padding: 20px;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 30px;
    z-index: 3;
}

.contact-info-item .contact-info-content h3 {
    font-size: 22px;
}

.contact-info-item .contact-info-content p {
    margin-bottom: 0;
}

.contact-info-item .contact-info-content ul {
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.contact-info-item .contact-info-content ul li {
    display: inline-block;
    margin-right: 4px;
}

.contact-info-item .contact-info-content ul li a {
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.contact-info-item .contact-info-content ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.contact-info-item .contact-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 20px;
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.contact-info-item .contact-icon img {
    max-width: 50%;
    max-height: 50%;
}

.google-map-form {
    position: relative;
    padding: 100px 0;
}

.google-map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.google-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form-box {
    background: var(--white-color);
    padding: 40px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}

.contact-form-box .section-title {
    margin-bottom: 40px;
}

.contact-form .form-control {
    padding: 10px 20px;
    border: none;
    box-shadow: none;
    background: var(--secondary-color);
    border-radius: 10px;
}

.contact-form .with-errors ul {
    padding: 0 6px;
    margin: 0;
    font-size: 14px;
    color: var(--error-color);
}

/******************************************/

/****   29. Blog Archive page css 	   ****/

/******************************************/

.page-blog-archive {
    padding: 100px 0 50px;
}

.page-blog-archive .blog-item {
    margin-bottom: 30px;
}

.post-pagination {
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    margin: 0 4px;
    border-radius: 10px;
    font-family: var(--accent-font);
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/******************************************/

/****   30. Post Single page css 	   ****/

/******************************************/

.post-single-meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.post-single-meta ul li {
    display: inline-block;
    position: relative;
    color: var(--white-color);
}

.post-single-meta ul li:after {
    content: '/';
    margin: 0 10px 0 14px;
}

.post-single-meta ul li:last-child:after {
    display: none;
}

.page-single-post {
    padding: 100px 0 50px;
}

.post-featured-image {
    max-width: 1180px;
    margin: 0 auto 40px;
    border-radius: 30px;
    overflow: hidden;
}

.post-content {
    max-width: 1060px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid #dbeed8;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    margin: 1em 0 0.7em;
}

.post-entry h1 {
    font-size: 36px;
}

.post-entry h2 {
    font-size: 30px;
}

.post-entry h3 {
    font-size: 26px;
}

.post-entry h4 {
    font-size: 22px;
}

.post-entry h5 {
    font-size: 18px;
}

.post-entry h6 {
    font-size: 16px;
}

.post-entry ul {
    padding: 0;
    margin: 0 0 1.7em;
    list-style: none;
}

.post-entry ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.post-entry ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.post-entry blockquote {
    background: var(--primary-color) url(../images/icon-blockquote.svg) no-repeat right bottom;
    text-align: center;
    border-radius: 30px;
    padding: 30px 80px;
}

.post-entry blockquote p {
    font-size: 40px;
    color: var(--accent-color);
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.2em;
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.post-tags {
    font-size: 30px;
    font-family: var(--accent-font);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-weight: 700;
    vertical-align: middle;
}

.post-tags a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--default-font);
    padding: 8px 24px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 30px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.post-tags a:after {
    background-color: var(--primary-color);
    border-radius: 30px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.post-tags a:hover::after {
    transform: translate(0, 0);
}

.post-tags a:hover {
    color: var(--accent-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-left: 6px;
}

.post-social-sharing ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.post-social-sharing ul li a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/******************************************/

/****   	 31. FAQs page css   	   ****/

/******************************************/

.page-faqs {
    padding: 100px 0 50px;
    /* background: var(--secondary-color); */
}

/******************************************/

/****   32. Project List page css 	   ****/

/******************************************/

.our-projects {
    padding: 100px 0 50px;
}

.our-projects .project-item {
    margin-bottom: 30px;
}

/******************************************/

/****   33. Project Single page css    ****/

/******************************************/

.page-project-single {
    padding: 100px 0 50px;
}

.project-sidebar {
    padding-right: 20px;
    position: sticky;
    top: 100px;
}

.about-project-box {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 30px;
}

.about-project-box h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.project-info-box {
    position: relative;
    padding-left: 55px;
    border-bottom: 1px solid #dbeed8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.project-info-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.project-info-box .project-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3px;
    left: 0;
}

.project-info-box .project-icon img {
    max-width: 60%;
    max-height: 60%;
}

.project-info-box h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.project-info-box p {
    margin: 0;
}

.project-feature-image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.project-entry {
    margin-bottom: 50px;
}

.project-entry h1,
.project-entry h2,
.project-entry h3,
.project-entry h4,
.project-entry h5,
.project-entry h6 {
    margin: 1em 0 0.7em;
}

.project-entry h1 {
    font-size: 36px;
}

.project-entry h2 {
    font-size: 30px;
}

.project-entry h3 {
    font-size: 26px;
}

.project-entry h4 {
    font-size: 22px;
}

.project-entry h5 {
    font-size: 18px;
}

.project-entry h6 {
    font-size: 16px;
}

.project-entry ul {
    padding: 0;
    margin: 0 0 1.7em;
    list-style: none;
}

.project-entry ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.project-entry ul li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.project-entry blockquote {
    background: var(--primary-color) url(../images/icon-blockquote.svg) no-repeat right bottom;
    text-align: center;
    border-radius: 30px;
    padding: 30px 80px;
}

.project-entry blockquote p {
    font-size: 40px;
    color: var(--accent-color);
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.2em;
}

.project-entry blockquote p:last-child {
    margin-bottom: 0;
}

.project-gallery .project-gallery-title {
    margin-bottom: 20px;
}

.project-gallery .project-gallery-title h2 {
    font-size: 30px;
}

.project-gallery-items {
    display: flex;
    flex-wrap: wrap;
}

.project-gallery-items .project-gallery-item {
    width: calc(25% - 15px);
    margin-right: 20px;
}

.project-gallery-items .project-gallery-item:nth-of-type(4n + 4) {
    margin-right: 0;
}

.project-gallery-items .project-gallery-item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 30px;
}

/******************************************/

/****   	 34. Team page css   	   ****/

/******************************************/

.page-team {
    padding: 100px 0 20px;
}

.page-team .team-item {
    margin-bottom: 30px;
}

/******************************************/

/****   35. Team Single page css 	   ****/

/******************************************/

.page-team-single {
    padding: 100px 0 50px;
}

.team-single-image {
    border-radius: 30px;
    overflow: hidden;
}

.team-single-information .team-single-header h2 {
    font-size: 30px;
    margin-bottom: 4px;
}

.team-single-meta p {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.team-single-meta p strong {
    font-family: var(--accent-font);
    font-size: 22px;
    margin-right: 4px;
}

.team-social-links {
    margin-top: 20px;
}

.team-social-links h3 {
    font-size: 22px;
}

.team-social-links ul {
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
}

.team-social-links ul li {
    display: inline-block;
    margin-right: 6px;
}

.team-social-links ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.team-social-links ul li a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.team-contact-form-box {
    background: var(--secondary-color);
    padding: 60px 100px;
    border-radius: 30px;
    margin-top: 100px;
}

.team-contact-form .form-control {
    padding: 14px 20px;
    border: none;
    box-shadow: none;
    background: var(--white-color);
    border-radius: 10px;
}

.team-contact-form .with-errors ul {
    padding: 0 6px;
    margin: 0;
    font-size: 14px;
    color: var(--error-color);
}

/******************************************/

/****   36. Page Not Found page css	   ****/

/******************************************/

.page-404 {
    padding: 100px 0;
}

.page-not-found-box {
    text-align: center;
}

.page-not-found-box h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

/******************************************/

/****   	 37. Responsive css   	   ****/

/******************************************/

@media only screen and (max-width: 1300px) {
    header.main-header {
        margin: 0 15px;
    }

    .main-menu ul li a {
        padding: 12px 4px !important;
    }

    .step-item.step-1 .step-header:after,
    .step-item.step-2 .step-header:after,
    .step-item.step-3 .step-header:after {
        width: 120px;
        transform: translateX(120px);
        height: 24px;
    }

    .cta-content h3 {
        font-size: 30px;
    }

    .why-choose-us-layout2-content {
        padding: 60px;
    }

    .our-process-layout2 .process-item2:after {
        display: none;
    }

    .process-item2 .process-step {
        right: -10px;
    }

    .team-item2 .team-links .team-social-links ul li a,
    .team-item2 .team-links .link-icon,
    .team-item2 .team-links .link-icon a {
        width: 36px;
        height: 36px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li a {
        padding: 12px 2px !important;
    }

    .overview-counter-box .overview-counter-item .icon-box {
        width: 60px;
        height: 60px;
    }

    .overview-counter-box {
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    #magic-cursor {
        display: none !important;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .topbar {
        padding: 10px 0;
    }

    .topbar-contact-info {
        padding-left: 10px;
    }

    .header-social-links {
        padding-right: 10px;
    }

    .main-menu ul li {
        margin: 0 10px;
    }

    header.main-header {
        border-radius: 20px;
        height:89px !important;
    }

    header.main-header .header-sticky {
        padding: 15px 0;
    }

    header.main-header .header-sticky.active .slicknav_menu {
        border-radius: 0;
    }

    .hero {
        padding: 220px 0 60px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content .section-title {
        margin-bottom: 20px;
    }

    .hero-content .section-title h1 {
        font-size: 56px;
    }

    .hero-content-body p {
        font-size: 16px;
    }

    .hero-content-footer {
        margin-top: 30px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-slide,
    .hero-layout2.hero-slider .hero-slider-layout2 .hero-slide,
    .hero-layout3.hero-slider .hero-slider-layout3 .hero-slide {
        padding: 220px 0 100px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-button-next,
    .hero.hero-slider .hero-slider-layout1 .hero-button-prev,
    .hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next,
    .hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 20px;
        transform: translateY(0);
        border-radius: 12px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-button-next,
    .hero-layout2.hero-slider .hero-slider-layout2 .hero-button-next {
        right: 20px;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-button-prev,
    .hero-layout2.hero-slider .hero-slider-layout2 .hero-button-prev {
        left: 20px;
    }

    .hero-layout2 {
        padding: 220px 0 60px;
    }

    .hero-layout2-box .section-title h1 {
        font-size: 56px;
    }

    .hero-layout2-box .hero-content p {
        font-size: 16px;
    }

    .hero-layout3 {
        padding: 220px 0 60px;
    }

    .hero-layout3 .hero-content .section-title h1 {
        font-size: 42px;
    }

    .about-us {
        padding: 60px 0;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-img-1,
    .about-img-2 {
        border-radius: 20px;
    }

    .about-layout2 {
        padding: 30px 0 60px;
    }

    .about-image-slider {
        margin-right: 0;
    }

    .about-layout2-content {
        margin-left: 0;
        margin-top: 30px;
    }

    .about-layout3 {
        padding: 60px 0;
    }

    .section-title-row {
        margin-bottom: 40px;
    }

    .about-layout3 .section-title,
    .section-title-row .section-title {
        margin-bottom: 20px;
    }

    .about-layout3 .section-title h2,
    .section-title-row .section-title h2 {
        font-size: 38px;
    }

    .section-title-row .section-title h2 br {
        display: none;
    }

    .about-layout3-features ul li {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .about-layout3 .about-img-video {
        margin-top: 30px;
        border-radius: 20px;
    }

    .our-services {
        padding: 60px 0;
    }

    .service-item {
        border-radius: 20px;
    }

    .service-item .service-content {
        border-radius: 20px;
    }

    .service-image .service-icon {
        border-radius: 20px;
    }

    .service-item .service-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .services-layout2 {
        padding: 60px 0;
    }

    .services-layout3 {
        padding: 60px 0;
    }

    .service-slide3 .service-image {
        border-radius: 20px;
    }

    .service-slide3 .service-content {
        border-radius: 14px;
    }

    .our-process {
        padding: 60px 0 30px;
    }

    .step-item {
        padding-left: 0;
        padding-right: 0;
    }

    .step-item.step-1 .step-header:after,
    .step-item.step-2 .step-header:after {
        display: none;
    }

    .step-header .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .step-header .step-icon figure,
    .step-header .step-icon figure:before {
        border-radius: 20px;
    }

    .step-header .step-icon img {
        max-width: 50%;
    }

    .step-header .step-no {
        width: 38px;
        height: 38px;
        font-size: 18px;
        line-height: 30px;
    }

    .our-process-layout2 {
        padding: 60px 0 30px;
    }

    .process-item2 {
        margin-bottom: 30px;
    }

    .intro-video {
        padding: 30px 0;
    }

    .intro-video-box {
        border-radius: 20px;
    }

    .our-skills {
        padding: 30px 0;
    }

    .our-skills .section-title {
        margin-bottom: 40px;
    }

    .infobar {
        padding: 30px 0 60px;
    }

    .cta-content {
        padding: 50px 30px 30px;
        text-align: center;
    }

    .cta-content .phone-icon {
        width: 60px;
        height: 60px;
        border-width: 4px;
        left: 50%;
        top: auto;
        transform: translate(-50%, -80px);
    }

    .cta-content .phone-icon img {
        max-width: 50%;
    }

    .why-choose-us {
        padding: 60px 0 30px;
    }

    .why-choose-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .why-choose-item,
    .why-choose-item:before {
        border-radius: 20px;
    }

    .why-choose-image {
        border-radius: 26px;
    }

    .why-choose-us-layout2-content {
        padding: 60px 15px;
    }

    .stat-counter {
        padding: 60px 0 30px;
    }

    .counter-item {
        margin-bottom: 30px;
    }

    .counter-item .counter-icon {
        border-radius: 20px;
    }

    .solar-calculator {
        padding: 60px 0 30px;
    }

    .calculator-box .section-title {
        margin-bottom: 30px;
    }

    .calculator-box {
        border-radius: 20px;
    }

    .latest-news {
        padding: 30px 0 0;
    }

    .blog-item {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .blog-item .post-item-body {
        border-radius: 20px;
    }

    .latest-post-layout2 {
        padding: 60px 0 30px;
    }

    .post-item2 {
        margin-bottom: 30px;
    }

    footer.main-footer {
        padding: 0 0 0px;
    }

    .footer-contact {
        padding: 30px 0 0;
        margin-bottom: 40px;
    }

    .footer-contact-box {
        margin-bottom: 30px;
    }

    .footer-contact-box .contact-icon-box {
        border-radius: 20px;
    }

    .footer-links {
        padding-left: 0;
    }

    .footer-social-links {
        margin-bottom: 40px;
    }

    .footer-copyright {
        padding: 20px;
        margin-top: 40px;
        /* border-radius: 20px; */
    }

    .page-header {
        padding: 220px 0 60px;
    }

    .page-header-box h1 {
        font-size: 56px;
    }

    .latest-projects {
        padding: 60px 0 30px;
    }

    .project-item {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .project-item .project-image:before {
        border-radius: 20px;
    }

    .project-item .project-content {
        border-radius: 20px;
    }

    .project-item .project-link a {
        border-radius: 10px;
    }

    .our-projects-layout2 {
        padding: 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-item {
        border-radius: 20px;
    }

    .our-team {
        padding: 60px 0 0;
    }

    .team-item {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .team-item .team-content {
        border-radius: 20px;
    }

    .footer-ticker {
        padding-top: 15px;
    }

    .scrolling-content span {
        font-size: 50px;
    }

    .page-services {
        padding: 60px 0 0;
    }

    .page-service-single {
        padding: 60px 0 30px;
    }

    .service-sidebar {
        padding-right: 0;
    }

    .service-sidebar {
        margin-bottom: 40px;
    }

    .services-list-box {
        border-radius: 20px;
    }

    .sidebar-cta-box {
        border-radius: 20px;
    }

    .service-featured-image {
        border-radius: 20px;
    }

    .service-entry,
    .service-whyus,
    .service-features {
        margin-bottom: 40px;
    }

    .service-benefits {
        margin-bottom: 10px;
    }

    .service-features .service-feature-image {
        border-radius: 20px;
    }

    .contact-information {
        padding: 60px 0 30px;
    }

    .contact-info-item {
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .contact-info-item .contact-info-content {
        border-radius: 20px;
    }

    .contact-info-item .contact-icon {
        border-radius: 10px;
    }

    .google-map-form {
        padding: 0;
    }

    .google-map {
        position: relative;
    }

    .google-map iframe {
        height: 400px;
    }

    .page-blog-archive {
        padding: 60px 0 30px;
    }

    .page-single-post {
        padding: 60px 0 30px;
    }

    .post-entry blockquote p {
        font-size: 22px;
    }

    .post-featured-image {
        border-radius: 20px;
    }

    .post-entry blockquote {
        border-radius: 20px;
    }

    .post-social-sharing {
        text-align: left;
        margin-top: 20px;
    }

    .related-posts {
        padding: 30px 0;
    }

    .page-faqs {
        padding: 60px 0 30px;
    }

    .our-projects {
        padding: 60px 0 30px;
    }

    .page-project-single {
        padding: 60px 0 30px;
    }

    .project-sidebar {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-project-box {
        border-radius: 20px;
    }

    .project-feature-image {
        border-radius: 20px;
    }

    .project-gallery-items .project-gallery-item img {
        border-radius: 20px;
    }

    .page-team {
        padding: 60px 0 0px;
    }

    .page-team-single {
        padding: 60px 0 30px;
    }

    .team-single-image {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .team-contact-form-box {
        margin-top: 60px;
        border-radius: 20px;
        padding: 40px;
    }

    .page-404 {
        padding: 60px 0;
    }

    .features-layout2 {
        padding: 60px 0 30px;
    }

    .features-item2 {
        padding: 30px;
    }

    .features-item2 .features-header .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .features-item2 .features-header .icon-box img {
        max-width: 60%;
        max-height: 60%;
    }

    .features-item2 .features-header h3 {
        width: calc(100% - 80px);
        font-size: 22px;
    }

    .pricing-layout2 {
        padding: 60px 0 30px;
    }

    .pricing-layout2 .pricing-item2 {
        max-width: 480px;
        margin: 18px auto 40px;
    }

    .company-overview {
        padding: 60px 0 30px;
    }

    .overview-counter-box {
        margin-top: 30px;
    }

    .team-layout2 {
        padding: 60px 0 30px;
    }

    .team-item2 {
        margin-bottom: 30px;
    }

    .testimonial-layout2 {
        padding: 60px 0;
    }

    .why-renewable {
        padding: 60px 0;
    }

    .why-renewable-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .why-renewable-left .why-renewable-img-1 img,
    .why-renewable-left .why-renewable-img-2 img {
        border-radius: 20px;
    }

    .our-story {
        padding: 60px 0;
    }

    .our-story-content {
        margin-bottom: 40px;
    }

    .our-story-image {
        border-radius: 20px;
    }

    .project-layout3 {
        padding: 60px 0;
    }

    .project-slide3 {
        border-radius: 20px;
    }

    .project-slide3 .project-image img {
        aspect-ratio: 1/1;
    }

    .why-choose-us-layout3 {
        padding: 60px 0 30px;
    }

    .why-choose-item3 {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .why-choose-item3:before {
        border-radius: 20px;
    }

    .our-clients-layout3 {
        padding: 60px 0;
    }

    .client-logos-layout3 .client-logo-item {
        padding: 30px;
        border-radius: 20px;
    }

    .our-pricing-layout3 {
        padding: 60px 0 30px;
    }

    .pricing-item-layout3 {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .testimonial-layout3 {
        padding: 60px 0;
    }

    .testimonial-slide3 {
        border-radius: 20px;
    }

    .latest-post-layout3 {
        padding: 60px 0 30px;
    }

    .post-item3 {
        margin-bottom: 30px;
    }

    .post-item3 .post-featured-image {
        border-radius: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .btn-default {
        padding: 10px 22px;
    }

    header.main-header .header-sticky {
        padding: 15px 0;
    }

    header.main-header .header-sticky.active {
        padding: 10px 0;
    }

    .navbar-brand img {
        /*max-height: 40px;*/
    }

    .topbar-contact-info ul {
        text-align: center;
    }

    .header-social-links {
        display: none;
    }

    .hero {
        padding: 220px 0 60px;
    }

    .hero:before {
        background: linear-gradient(90deg, rgba(22, 51, 0, 0.75) 0%, rgba(22, 51, 0, 0.20) 100%);
    }

    .hero-image {
        text-align: center;
    }

    .hero.hero-slider .hero-slider-layout1 .hero-slide:before {
        background: linear-gradient(90deg, rgba(22, 51, 0, 0.75) 0%, rgba(22, 51, 0, 0.20) 100%);
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    .section-title h1,
    .section-title h2,
    .hero-content .section-title h1 {
        font-size: 30px;
    }

    .hero-content-footer .btn-default {
        margin-right: 10px;
    }

    .hero-layout2-box .section-title h1 {
        font-size: 30px;
    }

    .about-us {
        padding: 40px 0;
    }

    .about-image {
        padding-bottom: 40px;
    }

    .about-content ul li {
        width: 100%;
        margin-right: 0;
    }

    .about-layout2 {
        padding: 30px 0 40px;
    }

    .about-layout2-content .section-title {
        margin-bottom: 20px;
    }

    .about-layout2-content .about-stats {
        margin-bottom: 10px;
    }

    .about-layout2-content .about-stats-item {
        margin-bottom: 20px;
    }

    .about-layout2-content {
        margin-top: 10px;
    }

    .about-layout2-overlay-content {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        border-radius: 0;
    }

    .about-overaly-item {
        background-color: var(--secondary-color);
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .our-services {
        padding: 40px 0;
    }

    .services-layout2 {
        padding: 40px 0;
    }

    .services-layout2-slide {
        border-radius: 20px;
    }

    .services-layout2-slide .service-content {
        padding: 20px;
    }

    .services-layout2-slide .service-content .icon-box {
        width: 50px;
    }

    .services-layout2-slide .service-content .icon-box a {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .services-layout2-slide .service-content .icon-box a::before {
        border-radius: 14px;
    }

    .services-layout2-slide .service-content .service-info {
        width: calc(100% - 70px);
    }

    .our-process {
        padding: 40px 0 20px;
    }

    .step-item {
        margin-bottom: 30px;
    }

    .our-process .row .col-md-4:last-child .step-item {
        margin-bottom: 0;
    }

    .our-process-layout2 {
        padding: 40px 0 10px;
    }

    .process-item2 .process-step {
        width: 70px;
        height: 70px;
        font-size: 22px;
        top: 0;
        right: 0;
    }

    .intro-video {
        padding: 20px 0;
    }

    .video-play-button a {
        height: 50px;
    }

    .video-play-button a img {
        max-width: 50px;
    }

    .our-skills {
        padding: 20px 0;
    }

    .skillbar {
        margin-bottom: 20px;
    }

    .skillbar .skill-data .title,
    .skillbar .skill-data .count {
        font-size: 18px;
    }

    .infobar {
        padding: 20px 0 40px;
    }

    .why-choose-us {
        padding: 40px 0 10px;
    }

    .why-choose-us-layout2-content {
        padding: 40px 15px;
    }

    .why-choose-us-layout2-features .why-features-item {
        margin-bottom: 30px;
    }

    .why-choose-us-layout2-features .why-features-item .icon-box {
        margin-right: 0;
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .why-choose-us-layout2-features .why-features-item .why-features-desc {
        width: 100%;
    }

    .stat-counter {
        padding: 40px 0 10px;
    }

    .solar-calculator {
        padding: 40px 0 20px;
    }

    .calculator-box {
        padding: 20px;
    }

    .latest-news {
        padding: 20px 0 0;
    }

    .blog-item .post-item-body {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .latest-post-layout2 {
        padding: 40px 0 10px;
    }

    .post-item2 .post-body {
        padding: 20px;
    }

    .footer-contact-box .contact-icon-box {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }

    .footer-contact-info {
        width: calc(100% - 80px);
    }

    .footer-contact-box .contact-icon-box img {
        max-width: 50%;
        max-height: 50%;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h2 {
        margin-bottom: 20px;
    }

    .footer-copyright {
        margin-top: 10px;
    }

    .footer-copyright-text p {
        font-size: 16px;
    }

    .page-header-box h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 4px;
    }

    .page-header-box ol {
        justify-content: center;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }

    .latest-projects {
        padding: 40px 0 10px;
    }

    .testimonials {
        padding: 40px 0;
    }

    .testimonial-body {
        padding: 0 30px 30px;
    }

    .testimonial-item {
        margin-top: 40px;
    }

    .testimonial-header {
        top: -40px;
        margin-bottom: -40px;
    }

    .testimonial-author-img .icon-quote {
        bottom: 20px;
    }

    .testimonial-header .testimonial-author-img {
        max-width: 100px;
    }

    .testimonial-slider .swiper-pagination {
        margin-top: 20px;
    }

    .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }

    .our-team {
        padding: 40px 0 0;
    }

    .page-services {
        padding: 40px 0 0;
    }

    .page-service-single {
        padding: 40px 0 30px;
    }

    .services-list-box ul li a {
        font-size: 18px;
    }

    .services-list-box ul li a:before {
        top: 22px;
    }

    .service-whyus h2,
    .service-benefits .service-benefits-title h2,
    .service-features .service-feature-content h2,
    .faq-box h2 {
        font-size: 26px;
    }

    .benefits-item {
        padding-right: 0;
    }

    .service-features .service-feature-image {
        margin-bottom: 20px;
    }

    .contact-information {
        padding: 40px 0 10px;
    }

    .contact-form-box {
        padding: 40px 10px;
    }

    .page-blog-archive {
        padding: 40px 0 30px;
    }

    .post-pagination {
        margin-top: 10px;
    }

    .post-single-meta {
        text-align: center;
    }

    .page-single-post {
        padding: 40px 0 20px;
    }

    .post-featured-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        padding: 30px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        flex-wrap: wrap;
        font-size: 18px;
    }

    .post-tags a {
        font-size: 14px;
        padding: 6px 14px;
    }

    .related-posts {
        padding: 20px 0 0;
    }

    .page-faqs {
        padding: 40px 0 20px;
    }

    .our-projects {
        padding: 40px 0 30px;
    }

    .page-project-single {
        padding: 40px 0 20px;
    }

    .about-project-box {
        padding: 30px;
    }

    .project-gallery-items .project-gallery-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .project-gallery-items .project-gallery-item:nth-of-type(2n + 2) {
        margin-right: 0;
    }

    .project-entry h1 {
        font-size: 24px;
    }

    .project-entry h2 {
        font-size: 22px;
    }

    .project-entry h3 {
        font-size: 20px;
    }

    .project-entry h4 {
        font-size: 18px;
    }

    .project-entry h5 {
        font-size: 16px;
    }

    .project-entry h6 {
        font-size: 14px;
    }

    .page-team {
        padding: 40px 0 0;
    }

    .page-team-single {
        padding: 40px 0 20px;
    }

    .team-single-information .team-single-header h2 {
        font-size: 26px;
    }

    .team-single-meta p {
        font-size: 16px;
    }

    .team-single-meta p strong,
    .team-social-links h3 {
        font-size: 18px;
    }

    .team-contact-form-box {
        padding: 30px 20px;
    }

    .page-404 {
        padding: 40px 0 20px;
    }

    .page-not-found-box h2 {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .features-layout2 {
        padding: 40px 0 20px;
    }

    .our-projects-layout2 {
        padding: 40px 0;
    }

    .project-layout2-slide {
        border-radius: 20px;
    }

    .project-layout2-slide .project-content {
        padding: 15px 80px 20px 20px;
    }

    .project-layout2-slide .project-content .btn-link-box a {
        width: 50px;
        height: 50px;
    }

    .pricing-layout2 {
        padding: 40px 0 10px;
    }

    .pricing-layout2 .pricing-item2 {
        padding: 0 25px 30px;
    }

    .company-overview {
        padding: 40px 0 10px;
    }

    .team-layout2 {
        padding: 40px 0 10px;
    }

    .testimonial-layout2 {
        padding: 40px 0;
    }

    .testimonial-slider2 .testimonial-item2 {
        padding: 30px;
        border-radius: 20px;
    }

    .hero-layout3 .hero-content .section-title h1,
    .about-layout3 .section-title h2,
    .section-title-row .section-title h2 {
        font-size: 30px;
    }

    .hero-layout3 .hero-content,
    .hero-layout3 .hero-content .section-title {
        text-align: center;
    }

    .hero-layout3 .hero-image {
        text-align: center;
        margin-top: 30px;
    }

    .hero-layout3 .hero-image-box {
        max-width: 240px;
    }

    .about-layout3 {
        padding: 40px 0;
    }

    .about-layout3-features ul li {
        font-size: 18px;
        padding: 0 0 0 36px;
    }

    .about-layout3-features ul li:before {
        width: 26px;
        height: 26px;
    }

    .services-layout3 {
        padding: 40px 0;
    }

    .service-slide3 .service-content {
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .why-renewable {
        padding: 40px 0;
    }

    .why-renewable-left .why-renewable-img-2 {
        margin-top: 20px;
    }

    .why-renewable-left .why-renewable-img-1 p,
    .why-renewable-left .why-renewable-img-2 p {
        font-size: 16px;
        border-radius: 6px;
    }

    .why-renewable-item {
        margin-bottom: 30px;
    }

    .why-renewable-item h3 {
        font-size: 22px;
    }

    .why-renewable-item .stepno {
        font-size: 20px;
    }

    .our-story {
        padding: 40px 0;
    }

    .our-story-body .btn-default {
        margin-top: 20px;
    }

    .our-story-image {
        margin-right: 0;
    }

    .story-counter-box {
        margin-top: 30px;
    }

    .story-counter-item {
        margin-bottom: 30px;
    }

    .project-layout3 {
        padding: 40px 0;
    }

    .project-slide3 .project-content h3 {
        font-size: 22px;
    }

    .why-choose-us-layout3 {
        padding: 40px 0 10px;
    }

    .our-clients-layout3 {
        padding: 40px 0 10px;
    }

    .client-logos-layout3 {
        justify-content: center;
    }

    .client-logos-layout3 .client-logo-item {
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }

    .client-logos-layout3 .client-logo-item:nth-of-type(5n + 5) {
        margin-right: 30px;
    }

    .client-logos-layout3 .client-logo-item:nth-of-type(2n + 2) {
        margin-right: 0;
    }

    .our-pricing-layout3 {
        padding: 40px 0 10px;
    }

    .testimonial-layout3 {
        padding: 40px 0;
    }

    .testimonial-slide3 {
        padding: 30px;
    }

    .latest-post-layout3 {
        padding: 40px 0 10px;
    }
}

@media(max-width:992px) {

    .footer-copyright .left p,
    .footer-copyright .right {
        text-align: center;
    }
}
/* ==========================================================================
   STRICTLY ISOLATED PURE CSS FLEXIBLE TEAM GRID ARCHITECTURE
   ========================================================================== */
.greenteam-grid-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
}

/* Intelligent CSS Grid Layout Configuration */
.greenteam-flexible-grid {
    display: grid;
    /* Grid system automatically wraps items into columns if they drop below 340px width */
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    justify-content: center;
    justify-items: center;
    max-width: 820px; /* Constrains total layout width for 2 centered cards on desktops */
    margin: 0 auto;
}

/* Individual Core Member Card Architecture */
.greenteam-member-card {
    background: var(--white-color);
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(22, 51, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    width: 100%;
    max-width: 380px; /* Prevents card stretching abnormally on medium viewports */
}

/* Geometric Image Frame Layout */
.greenteam-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 25px auto;
    z-index: 1;
}

/* Creative Background Offset Accent Layer */
.greenteam-accent-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 24px;
    transform: rotate(0deg) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
    opacity: 0;
}

.greenteam-member-card:hover .greenteam-accent-layer {
    transform: rotate(-6deg) scale(1);
    opacity: 1;
}

/* Image Container Shell */
.greenteam-reveal {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.greenteam-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

/* Synchronized Hover Motion States */
.greenteam-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22, 51, 0, 0.08);
}

.greenteam-member-card:hover .greenteam-reveal {
    transform: rotate(2deg) scale(0.98);
}

/* Typography Meta Panel Styling */
.greenteam-profile-meta h4 {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.greenteam-profile-meta p {
    font-family: var(--default-font);
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.greenteam-member-card:hover .greenteam-profile-meta h4 {
    color: var(--accent-color);
}

/* Responsive Adaptive Fluid Adjustments */
@media only screen and (max-width: 767px) {
    .greenteam-grid-section { 
        padding: 60px 0; 
    }
    .greenteam-flexible-grid {
        grid-template-columns: 1fr; /* Strict 1-column layout for small mobile device views */
        gap: 25px;
        padding: 0 15px;
    }
    .greenteam-member-card { 
        padding: 20px; 
    }
}
/* =============================================
           RESIDENTIAL SOLAR PAGE — ALL UNIQUE CLASSES
           Prefix: rsp- (residential solar page)
        ============================================= */

/* ---------- Intro / Overview Section ---------- */
.rsp-overview-section {
    padding: 80px 0 60px;
    background-color: var(--secondary-color);
}

.rsp-overview-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.rsp-overview-text {
    flex: 1 1 50%;
}

.rsp-overview-text .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.rsp-overview-text p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8em;
    margin-bottom: 20px;
}

.rsp-overview-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.rsp-overview-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--accent-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.rsp-overview-highlights li .rsp-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 13px;
}

.rsp-overview-images {
    flex: 1 1 45%;
    position: relative;
}

.rsp-img-stack {
    position: relative;
    height: 460px;
}

.rsp-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22, 51, 0, 0.18);
}

.rsp-img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.rsp-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22, 51, 0, 0.22);
    border: 5px solid #fff;
}

.rsp-img-accent img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.rsp-stat-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(22, 51, 0, 0.3);
}

.rsp-stat-badge .rsp-stat-num {
    display: block;
    font-family: var(--accent-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.rsp-stat-badge .rsp-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    display: block;
}

/* ---------- Services Cards Section ---------- */
.rsp-services-section {
    padding: 80px 0;
    background: #fff;
}

.rsp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.rsp-service-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.rsp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 20px 20px 0 0;
}

.rsp-service-card:hover::before {
    transform: scaleX(1);
}

.rsp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(22, 51, 0, 0.12);
    border-color: var(--accent-color);
}

.rsp-card-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.3s ease;
}

.rsp-service-card:hover .rsp-card-icon-wrap {
    background: var(--accent-color);
}

.rsp-card-icon-wrap i {
    font-size: 26px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.rsp-service-card:hover .rsp-card-icon-wrap i {
    color: var(--primary-color);
}

.rsp-service-card h3 {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.rsp-service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7em;
    margin-bottom: 0;
}

/* ---------- Why Choose Section (banner stripe) ---------- */
.rsp-why-section {
    padding: 80px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.rsp-why-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(137, 234, 95, 0.06);
    border-radius: 50%;
}

.rsp-why-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: rgba(137, 234, 95, 0.05);
    border-radius: 50%;
}

.rsp-why-section .section-title h3,
.rsp-why-section .section-title h2 {
    color: #fff;
}

.rsp-why-section .section-title h3 {
    color: var(--accent-color);
}

.rsp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.rsp-why-item {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(137, 234, 95, 0.2);
    border-radius: 16px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.rsp-why-item:hover {
    background: rgba(137, 234, 95, 0.08);
    border-color: var(--accent-color);
}

.rsp-why-item .rsp-why-num {
    font-family: var(--accent-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.rsp-why-item h4 {
    font-family: var(--accent-font);
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.rsp-why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.6em;
}

/* ---------- Process / Steps Section ---------- */
.rsp-process-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.rsp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
}

.rsp-process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: var(--accent-color);
    opacity: 0.4;
}

.rsp-step-item {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.rsp-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-color);
    transition: background 0.3s ease;
}

.rsp-step-item:hover .rsp-step-circle {
    background: var(--accent-color);
}

.rsp-step-circle span {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.rsp-step-item:hover .rsp-step-circle span {
    color: var(--primary-color);
}

.rsp-step-item h4 {
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rsp-step-item p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6em;
    margin-bottom: 0;
}

/* ---------- FAQ Section ---------- */
.rsp-faq-section {
    padding: 80px 0;
    background: #fff;
}

.rsp-faq-wrap {
    max-width: 820px;
    margin: 50px auto 0;
}

.rsp-faq-item {
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rsp-faq-item.rsp-faq-open {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(22, 51, 0, 0.08);
}

.rsp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    background: #fff;
    transition: background 0.25s ease;
    user-select: none;
    gap: 16px;
}

.rsp-faq-item.rsp-faq-open .rsp-faq-question {
    background: var(--secondary-color);
}

.rsp-faq-question h5 {
    font-family: var(--accent-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.3em;
    flex: 1;
}

.rsp-faq-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
    line-height: 1;
}

.rsp-faq-item.rsp-faq-open .rsp-faq-toggle {
    background: var(--accent-color);
    color: var(--primary-color);
}

.rsp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.rsp-faq-item.rsp-faq-open .rsp-faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.rsp-faq-answer p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75em;
    margin-bottom: 0;
}

/* ---------- CTA / Conclusion Section ---------- */
.rsp-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4a00 100%);
    position: relative;
    overflow: hidden;
}

.rsp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2389EA5F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.rsp-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.rsp-cta-inner h2 {
    font-family: var(--accent-font);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15em;
}

.rsp-cta-inner h2 span {
    color: var(--accent-color);
}

.rsp-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7em;
    margin-bottom: 36px;
}

.rsp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rsp-cta-buttons .btn-default {
    font-size: 16px;
    padding: 14px 36px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .rsp-overview-inner {
        flex-direction: column;
        gap: 40px;
    }

    .rsp-overview-images {
        width: 100%;
        flex: none;
    }

    .rsp-img-stack {
        height: 340px;
    }

    .rsp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rsp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rsp-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .rsp-process-steps::before {
        display: none;
    }

    .rsp-cta-inner h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .rsp-services-grid {
        grid-template-columns: 1fr;
    }

    .rsp-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rsp-process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .rsp-img-stack {
        height: 280px;
    }

    .rsp-img-main {
        width: 85%;
    }

    .rsp-img-accent {
        width: 60%;
    }

    .rsp-cta-inner h2 {
        font-size: 26px;
    }

}
    /* =============================================
       COMMERCIAL SOLAR PAGE — ALL UNIQUE CLASSES
       Prefix: csp- (commercial solar page)
    ============================================= */

    /* ---------- Overview / Intro ---------- */
    .csp-overview-section {
        padding: 80px 0 60px;
        background-color: var(--secondary-color);
    }

    .csp-overview-inner {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .csp-overview-text {
        flex: 1 1 50%;
    }

    .csp-overview-text .section-title {
        text-align: left;
        margin-bottom: 28px;
    }

    .csp-overview-text p {
        color: var(--text-color);
        font-size: 16px;
        line-height: 1.8em;
        margin-bottom: 20px;
    }

    .csp-overview-highlights {
        list-style: none;
        padding: 0;
        margin: 24px 0 32px;
    }

    .csp-overview-highlights li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--accent-font);
        font-size: 17px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 12px;
    }

    .csp-overview-highlights li .csp-check-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-width: 28px;
        background: var(--accent-color);
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 13px;
    }

    .csp-overview-images {
        flex: 1 1 45%;
        position: relative;
    }

    .csp-img-stack {
        position: relative;
        height: 460px;
    }

    .csp-img-main {
        position: absolute;
        top: 0;
        right: 0;
        width: 78%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(22, 51, 0, 0.18);
    }

    .csp-img-main img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .csp-img-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 55%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(22, 51, 0, 0.22);
        border: 5px solid #fff;
    }

    .csp-img-accent img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        display: block;
    }

    .csp-stat-badge {
        position: absolute;
        top: 30px;
        left: 0;
        background: var(--accent-color);
        color: var(--primary-color);
        border-radius: 14px;
        padding: 16px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(137, 234, 95, 0.35);
    }

    .csp-stat-badge .csp-stat-num {
        display: block;
        font-family: var(--accent-font);
        font-size: 32px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1;
    }

    .csp-stat-badge .csp-stat-label {
        font-size: 12px;
        color: var(--primary-color);
        margin-top: 4px;
        display: block;
        font-weight: 600;
        opacity: 0.8;
    }

    /* ---------- Services Cards ---------- */
    .csp-services-section {
        padding: 80px 0;
        background: #fff;
    }

    .csp-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 50px;
    }

    .csp-service-card {
        background: var(--secondary-color);
        border-radius: 20px;
        padding: 36px 28px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid transparent;
    }

    .csp-service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
        border-radius: 0 0 20px 20px;
    }

    .csp-service-card:hover::after {
        transform: scaleX(1);
    }

    .csp-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(22, 51, 0, 0.12);
        border-color: rgba(137, 234, 95, 0.3);
    }

    .csp-card-num {
        font-family: var(--accent-font);
        font-size: 52px;
        font-weight: 700;
        color: rgba(22, 51, 0, 0.07);
        line-height: 1;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .csp-service-card:hover .csp-card-num {
        color: rgba(137, 234, 95, 0.25);
    }

    .csp-card-icon-wrap {
        width: 58px;
        height: 58px;
        background: var(--primary-color);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: background 0.3s ease;
    }

    .csp-service-card:hover .csp-card-icon-wrap {
        background: var(--accent-color);
    }

    .csp-card-icon-wrap i {
        font-size: 24px;
        color: var(--accent-color);
        transition: color 0.3s ease;
    }

    .csp-service-card:hover .csp-card-icon-wrap i {
        color: var(--primary-color);
    }

    .csp-service-card h3 {
        font-family: var(--accent-font);
        font-size: 21px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 12px;
    }

    .csp-service-card p {
        font-size: 15px;
        color: var(--text-color);
        line-height: 1.7em;
        margin-bottom: 0;
    }

    /* ---------- Benefits Banner ---------- */
    .csp-benefits-section {
        padding: 80px 0;
        background: var(--primary-color);
        position: relative;
        overflow: hidden;
    }

    .csp-benefits-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 500px;
        height: 500px;
        background: rgba(137, 234, 95, 0.05);
        border-radius: 50%;
    }

    .csp-benefits-section .section-title h3 {
        color: var(--accent-color);
    }

    .csp-benefits-section .section-title h2 {
        color: #fff;
    }

    .csp-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 50px;
        position: relative;
        z-index: 2;
    }

    .csp-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 28px;
        border: 1px solid rgba(137, 234, 95, 0.15);
        border-radius: 16px;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .csp-benefit-item:hover {
        background: rgba(137, 234, 95, 0.07);
        border-color: var(--accent-color);
    }

    .csp-benefit-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        background: rgba(137, 234, 95, 0.12);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .csp-benefit-item:hover .csp-benefit-icon {
        background: var(--accent-color);
    }

    .csp-benefit-icon i {
        font-size: 22px;
        color: var(--accent-color);
        transition: color 0.3s ease;
    }

    .csp-benefit-item:hover .csp-benefit-icon i {
        color: var(--primary-color);
    }

    .csp-benefit-text h4 {
        font-family: var(--accent-font);
        font-size: 19px;
        color: #fff;
        margin-bottom: 8px;
    }

    .csp-benefit-text p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.65em;
        margin-bottom: 0;
    }

    /* ---------- Stats Row ---------- */
    .csp-stats-section {
        padding: 60px 0;
        background: var(--secondary-color);
        border-top: 1px solid var(--divider-color);
    }

    .csp-stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }

    .csp-stat-box {
        padding: 30px 16px;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 4px 20px rgba(22, 51, 0, 0.06);
        transition: transform 0.3s ease;
    }

    .csp-stat-box:hover {
        transform: translateY(-4px);
    }

    .csp-stat-box .csp-big-num {
        font-family: var(--accent-font);
        font-size: 44px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1;
        margin-bottom: 8px;
    }

    .csp-stat-box .csp-big-num span {
        color: var(--accent-color);
    }

    .csp-stat-box p {
        font-size: 14px;
        color: var(--text-color);
        margin-bottom: 0;
        font-family: var(--accent-font);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* ---------- FAQ ---------- */
    .csp-faq-section {
        padding: 80px 0;
        background: #fff;
    }

    .csp-faq-wrap {
        max-width: 820px;
        margin: 50px auto 0;
    }

    .csp-faq-item {
        border: 1px solid var(--divider-color);
        border-radius: 14px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .csp-faq-item.csp-faq-open {
        border-color: var(--accent-color);
        box-shadow: 0 8px 30px rgba(22, 51, 0, 0.08);
    }

    .csp-faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 28px;
        cursor: pointer;
        background: #fff;
        transition: background 0.25s ease;
        user-select: none;
        gap: 16px;
    }

    .csp-faq-item.csp-faq-open .csp-faq-question {
        background: var(--secondary-color);
    }

    .csp-faq-question h5 {
        font-family: var(--accent-font);
        font-size: 19px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0;
        line-height: 1.3em;
        flex: 1;
    }

    .csp-faq-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        background: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 16px;
        transition: background 0.25s ease;
    }

    .csp-faq-item.csp-faq-open .csp-faq-toggle {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    .csp-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 28px;
    }

    .csp-faq-item.csp-faq-open .csp-faq-answer {
        max-height: 300px;
        padding: 0 28px 22px;
    }

    .csp-faq-answer p {
        font-size: 15px;
        color: var(--text-color);
        line-height: 1.75em;
        margin-bottom: 0;
    }

    /* ---------- CTA / Conclusion ---------- */
    .csp-cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1f4a00 100%);
        position: relative;
        overflow: hidden;
    }

    .csp-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2389EA5F' fill-opacity='0.04'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='30' stroke='%2389EA5F' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='40' cy='40' r='15' stroke='%2389EA5F' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
    }

    .csp-cta-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .csp-cta-inner h2 {
        font-family: var(--accent-font);
        font-size: 42px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
        line-height: 1.15em;
    }

    .csp-cta-inner h2 span {
        color: var(--accent-color);
    }

    .csp-cta-inner p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.7em;
        margin-bottom: 36px;
    }

    .csp-cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .csp-cta-buttons .btn-default {
        font-size: 16px;
        padding: 14px 36px;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 991px) {
        .csp-overview-inner {
            flex-direction: column-reverse;
            gap: 40px;
        }

        .csp-overview-images {
            width: 100%;
            flex: none;
        }

        .csp-img-stack {
            height: 340px;
        }

        .csp-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .csp-benefits-grid {
            grid-template-columns: 1fr;
        }

        .csp-stats-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .csp-cta-inner h2 {
            font-size: 30px;
        }
    }

    @media (max-width: 575px) {
        .csp-services-grid {
            grid-template-columns: 1fr;
        }

        .csp-stats-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .csp-img-stack {
            height: 280px;
        }

        .csp-cta-inner h2 {
            font-size: 24px;
        }

    }


 

    /* =============================================
       INDUSTRIAL SOLAR PAGE — ALL UNIQUE CLASSES
       Prefix: isp- (industrial solar page)
    ============================================= */
 
    /* ---------- Overview / Intro ---------- */
    .isp-overview-section {
        padding: 80px 0 60px;
        background-color: #fff;
    }
 
    .isp-overview-inner {
        display: flex;
        align-items: center;
        gap: 60px;
    }
 
    .isp-overview-text {
        flex: 1 1 50%;
    }
 
    .isp-overview-text .section-title {
        text-align: left;
        margin-bottom: 28px;
    }
 
    .isp-overview-text p {
        color: var(--text-color);
        font-size: 16px;
        line-height: 1.8em;
        margin-bottom: 20px;
    }
 
    .isp-overview-highlights {
        list-style: none;
        padding: 0;
        margin: 24px 0 32px;
    }
 
    .isp-overview-highlights li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--accent-font);
        font-size: 17px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 12px;
    }
 
    .isp-check-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-width: 28px;
        background: var(--accent-color);
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 13px;
    }
 
    .isp-overview-images {
        flex: 1 1 45%;
        position: relative;
    }
 
    .isp-img-stack {
        position: relative;
        height: 480px;
    }
 
    .isp-img-main {
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(22,51,0,0.18);
    }
 
    .isp-img-main img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        display: block;
    }
 
    .isp-img-accent {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 52%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(22,51,0,0.22);
        border: 5px solid var(--secondary-color);
    }
 
    .isp-img-accent img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
 
    /* Capacity badge */
    .isp-cap-badge {
        position: absolute;
        bottom: 40px;
        left: -10px;
        background: var(--primary-color);
        border-radius: 14px;
        padding: 18px 22px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(22,51,0,0.3);
        z-index: 10;
    }
 
    .isp-cap-badge .isp-cap-num {
        display: block;
        font-family: var(--accent-font);
        font-size: 30px;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
    }
 
    .isp-cap-badge .isp-cap-label {
        font-size: 11px;
        color: rgba(255,255,255,0.8);
        margin-top: 4px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
 
    /* ---------- Services Cards (2-col wide layout) ---------- */
    .isp-services-section {
        padding: 80px 0;
        background: var(--secondary-color);
    }
 
    .isp-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 50px;
    }
 
    .isp-service-card {
        background: #fff;
        border-radius: 20px;
        padding: 36px 32px;
        display: flex;
        align-items: flex-start;
        gap: 24px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid transparent;
    }
 
    .isp-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 60px rgba(22,51,0,0.1);
        border-left-color: var(--accent-color);
    }
 
    .isp-card-icon-wrap {
        width: 66px;
        height: 66px;
        min-width: 66px;
        background: var(--secondary-color);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }
 
    .isp-service-card:hover .isp-card-icon-wrap {
        background: var(--primary-color);
    }
 
    .isp-card-icon-wrap i {
        font-size: 26px;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }
 
    .isp-service-card:hover .isp-card-icon-wrap i {
        color: var(--accent-color);
    }
 
    .isp-card-body h3 {
        font-family: var(--accent-font);
        font-size: 21px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
 
    .isp-card-body p {
        font-size: 15px;
        color: var(--text-color);
        line-height: 1.7em;
        margin-bottom: 0;
    }
 
    /* ---------- Industrial Strengths (diagonal layout) ---------- */
    .isp-strengths-section {
        padding: 80px 0;
        background: var(--primary-color);
        position: relative;
        overflow: hidden;
    }
 
    .isp-strengths-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(137,234,95,0.025) 40px,
            rgba(137,234,95,0.025) 41px
        );
    }
 
    .isp-strengths-section .section-title h3 {
        color: var(--accent-color);
    }
 
    .isp-strengths-section .section-title h2 {
        color: #fff;
    }
 
    .isp-strengths-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 50px;
        position: relative;
        z-index: 2;
    }
 
    .isp-strength-item {
        padding: 32px 24px;
        border: 1px solid rgba(137,234,95,0.15);
        border-radius: 16px;
        text-align: center;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }
 
    .isp-strength-item:hover {
        background: rgba(137,234,95,0.07);
        border-color: var(--accent-color);
        transform: translateY(-4px);
    }
 
    .isp-strength-icon {
        width: 64px;
        height: 64px;
        background: rgba(137,234,95,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: background 0.3s ease;
    }
 
    .isp-strength-item:hover .isp-strength-icon {
        background: var(--accent-color);
    }
 
    .isp-strength-icon i {
        font-size: 26px;
        color: var(--accent-color);
        transition: color 0.3s ease;
    }
 
    .isp-strength-item:hover .isp-strength-icon i {
        color: var(--primary-color);
    }
 
    .isp-strength-item h4 {
        font-family: var(--accent-font);
        font-size: 18px;
        color: #fff;
        margin-bottom: 10px;
    }
 
    .isp-strength-item p {
        font-size: 14px;
        color: rgba(255,255,255,0.62);
        line-height: 1.6em;
        margin-bottom: 0;
    }
 
    /* ---------- Scale Showcase (big numbers) ---------- */
    .isp-scale-section {
        padding: 70px 0;
        background: var(--secondary-color);
    }
 
    .isp-scale-inner {
        display: flex;
        align-items: center;
        gap: 60px;
    }
 
    .isp-scale-text {
        flex: 1;
    }
 
    .isp-scale-text .section-title {
        text-align: left;
        margin-bottom: 24px;
    }
 
    .isp-scale-text p {
        font-size: 16px;
        color: var(--text-color);
        line-height: 1.8em;
        margin-bottom: 0;
    }
 
    .isp-scale-counters {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
 
    .isp-counter-box {
        background: #fff;
        border-radius: 16px;
        padding: 28px 20px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(22,51,0,0.06);
        border-bottom: 3px solid var(--accent-color);
        transition: transform 0.3s ease;
    }
 
    .isp-counter-box:hover {
        transform: translateY(-4px);
    }
 
    .isp-counter-box .isp-count-val {
        font-family: var(--accent-font);
        font-size: 42px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1;
        margin-bottom: 8px;
    }
 
    .isp-counter-box .isp-count-val span {
        color: var(--accent-color);
    }
 
    .isp-counter-box p {
        font-size: 13px;
        color: var(--text-color);
        margin-bottom: 0;
        font-family: var(--accent-font);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
 
    /* ---------- FAQ ---------- */
    .isp-faq-section {
        padding: 80px 0;
        background: #fff;
    }
 
    .isp-faq-wrap {
        max-width: 820px;
        margin: 50px auto 0;
    }
 
    .isp-faq-item {
        border: 1px solid var(--divider-color);
        border-radius: 14px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
 
    .isp-faq-item.isp-faq-open {
        border-color: var(--accent-color);
        box-shadow: 0 8px 30px rgba(22,51,0,0.08);
    }
 
    .isp-faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 28px;
        cursor: pointer;
        background: #fff;
        transition: background 0.25s ease;
        user-select: none;
        gap: 16px;
    }
 
    .isp-faq-item.isp-faq-open .isp-faq-question {
        background: var(--secondary-color);
    }
 
    .isp-faq-question h5 {
        font-family: var(--accent-font);
        font-size: 19px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0;
        line-height: 1.3em;
        flex: 1;
    }
 
    .isp-faq-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        background: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 16px;
        transition: background 0.25s ease;
    }
 
    .isp-faq-item.isp-faq-open .isp-faq-toggle {
        background: var(--accent-color);
        color: var(--primary-color);
    }
 
    .isp-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 28px;
    }
 
    .isp-faq-item.isp-faq-open .isp-faq-answer {
        max-height: 300px;
        padding: 0 28px 22px;
    }
 
    .isp-faq-answer p {
        font-size: 15px;
        color: var(--text-color);
        line-height: 1.75em;
        margin-bottom: 0;
    }
 
    /* ---------- CTA / Conclusion ---------- */
    .isp-cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, #0d2700 100%);
        position: relative;
        overflow: hidden;
    }
 
    .isp-cta-section::after {
        content: '';
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(137,234,95,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
 
    .isp-cta-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 60px;
    }
 
    .isp-cta-content {
        flex: 1;
    }
 
    .isp-cta-content h2 {
        font-family: var(--accent-font);
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        line-height: 1.15em;
    }
 
    .isp-cta-content h2 span {
        color: var(--accent-color);
    }
 
    .isp-cta-content p {
        font-size: 16px;
        color: rgba(255,255,255,0.72);
        line-height: 1.7em;
        margin-bottom: 0;
    }
 
    .isp-cta-action {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-width: 220px;
    }
 
    .isp-cta-action .btn-default {
        font-size: 16px;
        padding: 14px 32px;
        text-align: center;
    }
 
    /* ---------- Responsive ---------- */
    @media (max-width: 991px) {
        .isp-overview-inner {
            flex-direction: column;
            gap: 40px;
        }
        .isp-overview-images {
            width: 100%;
            flex: none;
        }
        .isp-img-stack { height: 340px; }
        .isp-services-grid { grid-template-columns: 1fr; }
        .isp-strengths-grid { grid-template-columns: repeat(2, 1fr); }
        .isp-scale-inner { flex-direction: column; gap: 40px; }
        .isp-scale-text .section-title { text-align: center; }
        .isp-cta-inner { flex-direction: column; text-align: center; }
        .isp-cta-action { flex-direction: row; justify-content: center; }
        .isp-cta-content h2 { font-size: 28px; }
    }
 
    @media (max-width: 575px) {
        .isp-strengths-grid { grid-template-columns: 1fr; }
        .isp-scale-counters { grid-template-columns: repeat(2, 1fr); }
        .isp-img-stack { height: 280px; }
        .isp-cta-action { flex-direction: column; align-items: center; }
        .isp-cta-content h2 { font-size: 24px; }
    }

/* STRICTLY ISOLATED CUSTOM CONTACT ARCHITECTURE CSS  */ 
    
        /* Main Workspace Wrapper Container */
        .greencon-section-wrapper {
            padding: 90px 0;
            background-color: var(--white-color);
        }

        /* Dual Column Structural Component Mapping */
        .greencon-details-column {
            padding-right: 30px;
        }

        /* Information Display Blocks Layout */
        .greencon-info-card {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            border-radius: 24px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 8px 24px rgba(22, 51, 0, 0.03);
            transition: transform 0.3s ease;
        }

        .greencon-info-card:hover {
            transform: translateY(-5px);
        }

        .greencon-icon-box {
            width: 65px;
            height: 65px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .greencon-card-text {
            flex-grow: 1;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .greencon-card-text h4 {
            font-family: var(--accent-font);
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .greencon-card-text p {
            font-family: var(--default-font);
            font-size: 15px;
            color: var(--text-color);
            margin: 0;
            line-height: 1.5em;
        }

        /* Map Embed Interface Wrapper Frame */
        .greencon-map-embed-box {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-top: 35px;
            height: 250px;
        }

        .greencon-map-embed-box iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Inbound Communication Form Framework Card Wrapper */
        .greencon-form-card-wrapper {
            background-color: var(--secondary-color);
            border-radius: 30px;
            padding: 45px;
            box-shadow: 0 12px 40px rgba(22, 51, 0, 0.04);
        }

        .greencon-form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .greencon-form-group .greencon-control-input {
            width: 100%;
            background-color: var(--white-color);
            border: 2px solid transparent;
            outline: none;
            box-shadow: none;
            border-radius: 12px;
            font-family: var(--default-font);
            font-size: 15px;
            color: var(--black-color);
            padding: 14px 20px;
            transition: all 0.3s ease-in-out;
        }

        .greencon-form-group .greencon-control-input:focus {
            border-color: var(--accent-color);
        }

        .greencon-form-group textarea.greencon-control-input {
            height: 140px;
            resize: none;
        }

        /* Native Validation Engine Alerts Mapping */
        .greencon-form-card-wrapper .with-errors ul {
            padding: 5px 0 0 5px;
            margin: 0;
            list-style: none;
            color: var(--error-color);
            font-size: 13px;
            font-family: var(--default-font);
        }

        /* Responsive Breakpoint Modifiers Overrides */
        @media only screen and (max-width: 991px) {
            .greencon-details-column { padding-right: 0; margin-bottom: 5px; }
            .greencon-form-card-wrapper { padding: 30px; }
        }


        /* batteries css */
        .acc-batteries-wrapper { padding: 80px 0; background-color: var(--white-color); }
        .acc-batteries-title-sub { font-family: var(--accent-font); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 10px; }
        .acc-batteries-title-main { font-family: var(--accent-font); font-size: 42px; color: var(--primary-color); font-weight: 700; line-height: 1.2em; margin-bottom: 25px; }
        .acc-batteries-desc { font-family: var(--default-font); color: var(--text-color); font-size: 16px; line-height: 1.8em; margin-bottom: 30px; }
        .acc-batteries-showcase-img { width: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .acc-batteries-showcase-img img { width: 100%; transition: transform 0.5s ease; }
        .acc-batteries-showcase-img:hover img { transform: scale(1.05); }
        
        .acc-batteries-gallery-wrapper { padding: 40px 0 80px 0; background-color: var(--secondary-color); border-radius: 50px; margin-bottom: 80px; }
        .acc-batteries-gallery-title { text-align: center; font-family: var(--accent-font); font-size: 32px; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
        .acc-batteries-grid-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: var(--white-color); padding: 10px; }
        .acc-batteries-grid-item img { width: 100%; border-radius: 15px; aspect-ratio: 4/3; object-fit: cover; transition: all 0.4s ease-in-out; }
        .acc-batteries-grid-item:hover img { transform: scale(1.03); }
        .acc-batteries-grid-caption { font-family: var(--accent-font); font-size: 18px; font-weight: 600; color: var(--primary-color); text-align: center; margin-top: 12px; margin-bottom: 5px; }
    

/*   Isolated Scoped CSS for Cables to completely prevent any class name conflicts */ 
    
        .acc-cables-wrapper { padding: 80px 0; background-color: var(--white-color); }
        .acc-cables-title-sub { font-family: var(--accent-font); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 10px; }
        .acc-cables-title-main { font-family: var(--accent-font); font-size: 42px; color: var(--primary-color); font-weight: 700; line-height: 1.2em; margin-bottom: 25px; }
        .acc-cables-desc { font-family: var(--default-font); color: var(--text-color); font-size: 16px; line-height: 1.8em; margin-bottom: 30px; }
        .acc-cables-showcase-img { width: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .acc-cables-showcase-img img { width: 100%; transition: transform 0.5s ease; }
        .acc-cables-showcase-img:hover img { transform: scale(1.05); }
        
        .acc-cables-gallery-wrapper { padding: 40px 0 80px 0; background-color: var(--secondary-color); border-radius: 50px; margin-bottom: 80px; }
        .acc-cables-gallery-title { text-align: center; font-family: var(--accent-font); font-size: 32px; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
        .acc-cables-grid-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: var(--white-color); padding: 10px; }
        .acc-cables-grid-item img { width: 100%; border-radius: 15px; aspect-ratio: 4/3; object-fit: cover; transition: all 0.4s ease-in-out; }
        .acc-cables-grid-item:hover img { transform: scale(1.03); }
        .acc-cables-grid-caption { font-family: var(--accent-font); font-size: 18px; font-weight: 600; color: var(--primary-color); text-align: center; margin-top: 12px; margin-bottom: 5px; }


 /* Isolated Scoped CSS for Distribution Boxes to completely prevent any class name conflicts  */
    
        .acc-distbox-wrapper { padding: 80px 0; background-color: var(--white-color); }
        .acc-distbox-title-sub { font-family: var(--accent-font); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 10px; }
        .acc-distbox-title-main { font-family: var(--accent-font); font-size: 42px; color: var(--primary-color); font-weight: 700; line-height: 1.2em; margin-bottom: 25px; }
        .acc-distbox-desc { font-family: var(--default-font); color: var(--text-color); font-size: 16px; line-height: 1.8em; margin-bottom: 30px; }
        .acc-distbox-showcase-img { width: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .acc-distbox-showcase-img img { width: 100%; transition: transform 0.5s ease; }
        .acc-distbox-showcase-img:hover img { transform: scale(1.05); }
        
        .acc-distbox-gallery-wrapper { padding: 40px 0 80px 0; background-color: var(--secondary-color); border-radius: 50px; margin-bottom: 80px; }
        .acc-distbox-gallery-title { text-align: center; font-family: var(--accent-font); font-size: 32px; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
        .acc-distbox-grid-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: var(--white-color); padding: 10px; }
        .acc-distbox-grid-item img { width: 100%; border-radius: 15px; aspect-ratio: 4/3; object-fit: cover; transition: all 0.4s ease-in-out; }
        .acc-distbox-grid-item:hover img { transform: scale(1.03); }
        .acc-distbox-grid-caption { font-family: var(--accent-font); font-size: 18px; font-weight: 600; color: var(--primary-color); text-align: center; margin-top: 12px; margin-bottom: 5px; }

    



        /*  STRICTLY ISOLATED CUSTOM GALLERY & LIGHTBOX ARCHITECTURE CSS  */
        /* Main Grid Section Container */
        .greengal-section-wrapper {
            padding: 90px 0;
            background-color: var(--white-color);
        }
        
        /* Premium Responsive 3x3 Grid Framework */
        .greengal-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
            margin-bottom: 60px; /* Added spacing between category blocks */
        }

        /* Card Container Structural Shell */
        .greengal-card-item {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            box-shadow: 0 12px 35px rgba(22, 51, 0, 0.06);
            cursor: pointer;
            background-color: var(--secondary-color);
        }

        /* Image Display State Mapping */
        .greengal-card-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Zoom Scaling on Card Hover Frame */
        .greengal-card-item:hover img {
            transform: scale(1.12);
        }

        /* Context Overlay Skin Layout */
        .greengal-info-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(22, 51, 0, 0.9) 0%, rgba(22, 51, 0, 0.3) 60%, rgba(22, 51, 0, 0.0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease-in-out;
            z-index: 2;
        }

        /* Activate Animation Frame states on Hover interface triggers */
        .greengal-card-item:hover .greengal-info-overlay {
            opacity: 1;
            visibility: visible;
        }

        /* Micro Meta Typography Wrapper elements */
        .greengal-micro-tag {
            font-family: var(--accent-font);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 6px;
            transform: translateY(15px);
            transition: transform 0.4s ease 0.1s;
        }

        .greengal-meta-title {
            font-family: var(--accent-font);
            font-size: 22px;
            font-weight: 700;
            color: var(--white-color);
            margin: 0;
            line-height: 1.2em;
            transform: translateY(15px);
            transition: transform 0.4s ease 0.15s;
        }

        .greengal-card-item:hover .greengal-micro-tag,
        .greengal-card-item:hover .greengal-meta-title {
            transform: translateY(0);
        }

        /* Category Header Formatting styling setup */
        .greengal-category-title {
            font-family: var(--accent-font);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 20px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /* ==========================================================================
           ADVANCED BUILT-IN LIGHTBOX ENGINE SYSTEM STYLES
           ========================================================================== */
        .greengal-lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            user-select: none;
        }

        .greengal-lightbox-modal.active {
            opacity: 1;
            visibility: visible;
        }

        /* Viewing Box Wrapper */
        .greengal-lightbox-stage {
            position: relative;
            width: 85vw;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .greengal-lightbox-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            transition: transform 0.2s cubic-bezier(0.1, 0.8, 0.3, 1);
            transform: scale(1);
            will-change: transform;
        }

        /* Engine Controls Navigation Buttons Shell */
        .greengal-lightbox-btn {
            position: absolute;
            background: rgba(22, 51, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.15);
            color: var(--white-color);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.25s ease-in-out;
            z-index: 1000002;
            backdrop-filter: blur(5px);
        }

        .greengal-lightbox-btn:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            border-color: var(--accent-color);
        }

        /* Positioning Coordinates Mapping */
        .greengal-btn-close { 
            top: 25px; 
            right: 25px; 
            font-size: 26px; 
            font-weight: 700;
            background-color: rgb(230, 87, 87); /* High Contrast Delete Accent */
            border-color: rgba(230, 87, 87, 0.3);
        }
        .greengal-btn-close:hover {
            background-color: rgb(200, 60, 60);
            color: var(--white-color);
            border-color: rgb(200, 60, 60);
        }
        .greengal-btn-prev { left: 30px; top: 50%; transform: translateY(-50%); }
        .greengal-btn-next { right: 30px; top: 50%; transform: translateY(-50%); }

        /* Top Centered Smart Toolbar Panel Layout */
        .greengal-lightbox-toolbar {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            background: rgba(22, 51, 0, 0.7);
            padding: 8px 22px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000002;
            backdrop-filter: blur(5px);
        }

        .greengal-toolbar-tool {
            color: var(--white-color);
            background: transparent;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 6px;
            font-family: var(--accent-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s ease;
        }

        .greengal-toolbar-tool:hover {
            color: var(--accent-color);
        }

        /* Responsive Breakpoint Matrix Extensions */
        @media only screen and (max-width: 991px) {
            .greengal-grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media only screen and (max-width: 650px) {
            .greengal-grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .greengal-lightbox-btn { width: 45px; height: 45px; font-size: 16px; }
            .greengal-btn-close { top: 15px; right: 15px; }
            .greengal-btn-prev { left: 10px; }
            .greengal-btn-next { right: 10px; }
            .greengal-lightbox-toolbar { top: 75px; width: 85%; justify-content: center; }
        }
    

        /* ============================================
           HYBRID SOLAR PRODUCT PAGE — UNIQUE CSS CLASSES
           All prefixed with: pip-hyb-
        ============================================ */

        :root {
            --pip-hyb-primary: #163300;
            --pip-hyb-accent: #89EA5F;
            --pip-hyb-text: #888888;
            --pip-hyb-white: #ffffff;
            --pip-hyb-light-bg: #f4f8f0;
            --pip-hyb-border: #e0ebd6;
        }

        /* === INTRO SECTION === */
        .pip-hyb-intro {
            padding: 80px 0 60px;
            background: var(--pip-hyb-white);
        }

        .pip-hyb-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pip-hyb-intro-text h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .pip-hyb-intro-text h2 span { color: var(--pip-hyb-accent); }

        .pip-hyb-intro-text p {
            color: var(--pip-hyb-text);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .pip-hyb-label {
            display: inline-block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--pip-hyb-accent);
            background: rgba(137, 234, 95, 0.12);
            border: 1px solid rgba(137, 234, 95, 0.35);
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
        }

        .pip-hyb-intro-image-wrap { position: relative; }

        .pip-hyb-img-main {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .pip-hyb-img-badge {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: var(--pip-hyb-primary);
            color: var(--pip-hyb-white);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 10px 30px rgba(22, 51, 0, 0.25);
        }

        .pip-hyb-badge-icon {
            width: 48px;
            height: 48px;
            background: var(--pip-hyb-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--pip-hyb-primary);
            flex-shrink: 0;
        }

        .pip-hyb-badge-text strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-hyb-accent);
            line-height: 1;
        }

        .pip-hyb-badge-text span {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
        }

        /* === STATS STRIP === */
        .pip-hyb-stats-strip {
            background: var(--pip-hyb-primary);
            padding: 40px 0;
        }

        .pip-hyb-stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .pip-hyb-stat-item strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-hyb-accent);
            line-height: 1;
        }

        .pip-hyb-stat-item span {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* === COMPONENTS SECTION === */
        .pip-hyb-components {
            padding: 90px 0 70px;
            background: var(--pip-hyb-light-bg);
            position: relative;
            overflow: hidden;
        }

        .pip-hyb-components::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(137,234,95,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-hyb-section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .pip-hyb-section-title h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--pip-hyb-accent);
            margin-bottom: 10px;
        }

        .pip-hyb-section-title h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            line-height: 1.15;
            margin: 0;
        }

        .pip-hyb-section-title h2 span { color: var(--pip-hyb-accent); }

        .pip-hyb-components-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .pip-hyb-component-card {
            background: var(--pip-hyb-white);
            border-radius: 18px;
            padding: 36px 30px;
            border: 1px solid var(--pip-hyb-border);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pip-hyb-component-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: linear-gradient(to bottom, rgba(137,234,95,0.06), transparent);
            transition: height 0.4s ease;
        }

        .pip-hyb-component-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(22, 51, 0, 0.1);
            border-color: var(--pip-hyb-accent);
        }

        .pip-hyb-component-card:hover::after { height: 100%; }

        .pip-hyb-component-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 52px;
            font-weight: 700;
            color: rgba(137,234,95,0.25);
            line-height: 1;
            margin-bottom: 4px;
        }

        .pip-hyb-component-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(137,234,95,0.2), rgba(137,234,95,0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--pip-hyb-primary);
            margin: 0 auto 20px;
        }

        .pip-hyb-component-card h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            margin-bottom: 12px;
        }

        .pip-hyb-component-card p {
            color: var(--pip-hyb-text);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        /* === BENEFITS SECTION === */
        .pip-hyb-benefits {
            padding: 80px 0;
            background: var(--pip-hyb-white);
        }

        .pip-hyb-benefits-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pip-hyb-benefits-image-col { position: relative; }

        .pip-hyb-benefits-img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .pip-hyb-benefits-img-overlay {
            position: absolute;
            bottom: 24px;
            right: -20px;
            background: var(--pip-hyb-accent);
            border-radius: 14px;
            padding: 18px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 10px 30px rgba(22, 51, 0, 0.2);
        }

        .pip-hyb-benefits-img-overlay strong {
            font-family: 'Rajdhani', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            line-height: 1;
        }

        .pip-hyb-benefits-img-overlay span {
            font-size: 12px;
            font-weight: 600;
            color: var(--pip-hyb-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pip-hyb-benefits-content h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .pip-hyb-benefits-content h2 span { color: var(--pip-hyb-accent); }

        .pip-hyb-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
        }

        .pip-hyb-benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--pip-hyb-border);
        }

        .pip-hyb-benefits-list li:last-child { border-bottom: none; }

        .pip-hyb-benefits-list li .pip-hyb-li-icon {
            width: 40px;
            height: 40px;
            background: rgba(137,234,95,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--pip-hyb-primary);
            flex-shrink: 0;
        }

        .pip-hyb-benefits-list li .pip-hyb-li-text h5 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            margin: 0 0 4px;
        }

        .pip-hyb-benefits-list li .pip-hyb-li-text p {
            font-size: 14.5px;
            color: var(--pip-hyb-text);
            margin: 0;
            line-height: 1.6;
        }

        .pip-hyb-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pip-hyb-accent);
            color: var(--pip-hyb-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 30px;
            border: 2px solid var(--pip-hyb-accent);
            text-decoration: none;
            transition: all 0.25s ease;
            width: fit-content;
        }

        .pip-hyb-cta-btn:hover {
            background: var(--pip-hyb-primary);
            color: var(--pip-hyb-accent);
            border-color: var(--pip-hyb-primary);
        }

        /* === FAQ SECTION === */
        .pip-hyb-faq {
            padding: 80px 0;
            background: var(--pip-hyb-light-bg);
        }

        .pip-hyb-faq-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 60px;
            align-items: start;
        }

        .pip-hyb-faq-left h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--pip-hyb-primary);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .pip-hyb-faq-left h2 span { color: var(--pip-hyb-accent); }
        .pip-hyb-faq-left p { color: var(--pip-hyb-text); font-size: 15px; line-height: 1.75; }

        .pip-hyb-faq-left-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 14px;
            margin-top: 24px;
        }

        .pip-hyb-accordion-item {
            background: var(--pip-hyb-white);
            border-radius: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--pip-hyb-border);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .pip-hyb-accordion-item.pip-hyb-open {
            box-shadow: 0 8px 30px rgba(22, 51, 0, 0.08);
            border-color: rgba(137,234,95,0.5);
        }

        .pip-hyb-accordion-toggle {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            text-align: left;
            font-family: 'Rajdhani', sans-serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--pip-hyb-primary);
            gap: 12px;
        }

        .pip-hyb-acc-icon {
            width: 32px;
            height: 32px;
            background: var(--pip-hyb-light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--pip-hyb-primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .pip-hyb-accordion-item.pip-hyb-open .pip-hyb-acc-icon {
            background: var(--pip-hyb-accent);
            transform: rotate(45deg);
        }

        .pip-hyb-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .pip-hyb-accordion-item.pip-hyb-open .pip-hyb-accordion-body {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .pip-hyb-accordion-body p {
            color: var(--pip-hyb-text);
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid var(--pip-hyb-border);
            padding-top: 16px;
        }

        /* === CONCLUSION === */
        .pip-hyb-conclusion {
            padding: 80px 0;
            background: var(--pip-hyb-primary);
            position: relative;
            overflow: hidden;
        }

        .pip-hyb-conclusion::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(137,234,95,0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-hyb-conclusion::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(137,234,95,0.07) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-hyb-conclusion-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .pip-hyb-conclusion-inner h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--pip-hyb-white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .pip-hyb-conclusion-inner h2 span { color: var(--pip-hyb-accent); }

        .pip-hyb-conclusion-inner p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto 36px;
        }

        .pip-hyb-conclusion-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pip-hyb-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pip-hyb-accent);
            color: var(--pip-hyb-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-hyb-btn-light:hover { background: var(--pip-hyb-white); color: var(--pip-hyb-primary); }

        .pip-hyb-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--pip-hyb-white);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            border: 2px solid rgba(255,255,255,0.35);
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-hyb-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--pip-hyb-white);
            color: var(--pip-hyb-white);
        }

        /* === RESPONSIVE === */
        @media (max-width: 991px) {
            .pip-hyb-intro-grid,
            .pip-hyb-benefits-layout,
            .pip-hyb-faq-layout { grid-template-columns: 1fr; gap: 36px; }
            .pip-hyb-intro-text h2 { font-size: 32px; }
            .pip-hyb-img-badge { bottom: -16px; left: 16px; }
            .pip-hyb-components-grid { grid-template-columns: 1fr; }
            .pip-hyb-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .pip-hyb-conclusion-inner h2 { font-size: 32px; }
            .pip-hyb-section-title h2 { font-size: 30px; }
            .pip-hyb-faq-left-img { display: none; }
            .pip-hyb-benefits-img-overlay { right: 10px; }
        }

        @media (max-width: 767px) {
            .pip-hyb-components-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 575px) {
            .pip-hyb-intro, .pip-hyb-components, .pip-hyb-benefits,
            .pip-hyb-faq, .pip-hyb-conclusion { padding: 50px 0; }
            .pip-hyb-stats-inner { grid-template-columns: 1fr 1fr; }
            .pip-hyb-conclusion-btns { flex-direction: column; align-items: center; }
            .pip-hyb-img-main { height: 260px; }
            .pip-hyb-benefits-img { height: 280px; }
            .pip-hyb-components-grid { grid-template-columns: 1fr; }
        }
    
/* <!-- Isolated Scoped CSS for Inverters to completely prevent any class name conflicts --> */
    
        .acc-inverters-wrapper { padding: 80px 0; background-color: var(--white-color); }
        .acc-inverters-title-sub { font-family: var(--accent-font); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 10px; }
        .acc-inverters-title-main { font-family: var(--accent-font); font-size: 42px; color: var(--primary-color); font-weight: 700; line-height: 1.2em; margin-bottom: 25px; }
        .acc-inverters-desc { font-family: var(--default-font); color: var(--text-color); font-size: 16px; line-height: 1.8em; margin-bottom: 30px; }
        .acc-inverters-showcase-img { width: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .acc-inverters-showcase-img img { width: 100%; transition: transform 0.5s ease; }
        .acc-inverters-showcase-img:hover img { transform: scale(1.05); }
        
        .acc-inverters-gallery-wrapper { padding: 40px 0 80px 0; background-color: var(--secondary-color); border-radius: 50px; margin-bottom: 80px; }
        .acc-inverters-gallery-title { text-align: center; font-family: var(--accent-font); font-size: 32px; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
        .acc-inverters-grid-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: var(--white-color); padding: 10px; }
        .acc-inverters-grid-item img { width: 100%; border-radius: 15px; aspect-ratio: 4/3; object-fit: cover; transition: all 0.4s ease-in-out; }
        .acc-inverters-grid-item:hover img { transform: scale(1.03); }
        .acc-inverters-grid-caption { font-family: var(--accent-font); font-size: 18px; font-weight: 600; color: var(--primary-color); text-align: center; margin-top: 12px; margin-bottom: 5px; }


/* off-grid */
        /* ============================================
           OFF-GRID PRODUCT PAGE — UNIQUE CSS CLASSES
           All prefixed with: pip-ofg-
        ============================================ */

        :root {
            --pip-ofg-primary: #163300;
            --pip-ofg-accent: #89EA5F;
            --pip-ofg-text: #888888;
            --pip-ofg-white: #ffffff;
            --pip-ofg-light-bg: #f4f8f0;
            --pip-ofg-border: #e0ebd6;
            --pip-ofg-dark-text: #1a1a1a;
        }

        /* === INTRO SECTION === */
        .pip-ofg-intro {
            padding: 80px 0 60px;
            background: var(--pip-ofg-white);
        }

        .pip-ofg-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pip-ofg-intro-text h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--pip-ofg-primary);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .pip-ofg-intro-text h2 span {
            color: var(--pip-ofg-accent);
        }

        .pip-ofg-intro-text p {
            color: var(--pip-ofg-text);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .pip-ofg-label {
            display: inline-block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--pip-ofg-accent);
            background: rgba(137, 234, 95, 0.12);
            border: 1px solid rgba(137, 234, 95, 0.35);
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
        }

        .pip-ofg-intro-image-wrap {
            position: relative;
        }

        .pip-ofg-img-main {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .pip-ofg-img-badge {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: var(--pip-ofg-primary);
            color: var(--pip-ofg-white);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 10px 30px rgba(22, 51, 0, 0.25);
        }

        .pip-ofg-img-badge .pip-ofg-badge-icon {
            width: 48px;
            height: 48px;
            background: var(--pip-ofg-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--pip-ofg-primary);
            flex-shrink: 0;
        }

        .pip-ofg-img-badge .pip-ofg-badge-text strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-ofg-accent);
            line-height: 1;
        }

        .pip-ofg-img-badge .pip-ofg-badge-text span {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
        }

        /* === BENEFITS SECTION === */
        .pip-ofg-benefits {
            padding: 90px 0 70px;
            background: var(--pip-ofg-light-bg);
            position: relative;
            overflow: hidden;
        }

        .pip-ofg-benefits::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(137,234,95,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-ofg-section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .pip-ofg-section-title h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--pip-ofg-accent);
            margin-bottom: 10px;
        }

        .pip-ofg-section-title h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-ofg-primary);
            line-height: 1.15;
            margin: 0;
        }

        .pip-ofg-section-title h2 span {
            color: var(--pip-ofg-accent);
        }

        .pip-ofg-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .pip-ofg-benefit-card {
            background: var(--pip-ofg-white);
            border-radius: 18px;
            padding: 34px 30px;
            border: 1px solid var(--pip-ofg-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pip-ofg-benefit-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--pip-ofg-accent);
            transition: width 0.4s ease;
            border-radius: 0 0 0 18px;
        }

        .pip-ofg-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(22, 51, 0, 0.09);
            border-color: var(--pip-ofg-accent);
        }

        .pip-ofg-benefit-card:hover::after {
            width: 100%;
        }

        .pip-ofg-benefit-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(137,234,95,0.2), rgba(137,234,95,0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--pip-ofg-primary);
            margin-bottom: 18px;
        }

        .pip-ofg-benefit-card h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-ofg-primary);
            margin-bottom: 10px;
        }

        .pip-ofg-benefit-card p {
            color: var(--pip-ofg-text);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        /* === IMAGE BREAK SECTION === */
        .pip-ofg-imgbreak {
            padding: 70px 0;
            background: var(--pip-ofg-white);
        }

        .pip-ofg-imgbreak-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: stretch;
        }

        .pip-ofg-imgbreak-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        .pip-ofg-imgbreak-content h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--pip-ofg-primary);
            line-height: 1.15;
            margin: 0;
        }

        .pip-ofg-imgbreak-content h2 span {
            color: var(--pip-ofg-accent);
        }

        .pip-ofg-imgbreak-content p {
            color: var(--pip-ofg-text);
            font-size: 15.5px;
            line-height: 1.75;
            margin: 0;
        }

        .pip-ofg-imgbreak-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 18px;
            display: block;
        }

        .pip-ofg-why-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .pip-ofg-why-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: var(--pip-ofg-text);
        }

        .pip-ofg-why-list li i {
            color: var(--pip-ofg-accent);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .pip-ofg-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pip-ofg-accent);
            color: var(--pip-ofg-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 30px;
            border: 2px solid var(--pip-ofg-accent);
            text-decoration: none;
            transition: all 0.25s ease;
            width: fit-content;
        }

        .pip-ofg-cta-btn:hover {
            background: var(--pip-ofg-primary);
            color: var(--pip-ofg-accent);
            border-color: var(--pip-ofg-primary);
        }

        /* === FAQ SECTION === */
        .pip-ofg-faq {
            padding: 80px 0;
            background: var(--pip-ofg-light-bg);
        }

        .pip-ofg-faq-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 60px;
            align-items: start;
        }

        .pip-ofg-faq-left h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--pip-ofg-primary);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .pip-ofg-faq-left h2 span {
            color: var(--pip-ofg-accent);
        }

        .pip-ofg-faq-left p {
            color: var(--pip-ofg-text);
            font-size: 15px;
            line-height: 1.75;
        }

        .pip-ofg-faq-left-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 14px;
            margin-top: 24px;
        }

        .pip-ofg-accordion-item {
            background: var(--pip-ofg-white);
            border-radius: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--pip-ofg-border);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .pip-ofg-accordion-item.pip-ofg-open {
            box-shadow: 0 8px 30px rgba(22, 51, 0, 0.08);
            border-color: rgba(137,234,95,0.5);
        }

        .pip-ofg-accordion-toggle {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            text-align: left;
            font-family: 'Rajdhani', sans-serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--pip-ofg-primary);
            gap: 12px;
        }

        .pip-ofg-accordion-toggle .pip-ofg-acc-icon {
            width: 32px;
            height: 32px;
            background: var(--pip-ofg-light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--pip-ofg-primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .pip-ofg-accordion-item.pip-ofg-open .pip-ofg-acc-icon {
            background: var(--pip-ofg-accent);
            transform: rotate(45deg);
        }

        .pip-ofg-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .pip-ofg-accordion-item.pip-ofg-open .pip-ofg-accordion-body {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .pip-ofg-accordion-body p {
            color: var(--pip-ofg-text);
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid var(--pip-ofg-border);
            padding-top: 16px;
        }

        /* === STATS STRIP === */
        .pip-ofg-stats-strip {
            background: var(--pip-ofg-primary);
            padding: 40px 0;
        }

        .pip-ofg-stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .pip-ofg-stat-item strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-ofg-accent);
            line-height: 1;
        }

        .pip-ofg-stat-item span {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* === CONCLUSION === */
        .pip-ofg-conclusion {
            padding: 80px 0;
            background: var(--pip-ofg-primary);
            position: relative;
            overflow: hidden;
        }

        .pip-ofg-conclusion::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(137,234,95,0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-ofg-conclusion::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(137,234,95,0.07) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-ofg-conclusion-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .pip-ofg-conclusion-inner h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--pip-ofg-white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .pip-ofg-conclusion-inner h2 span { color: var(--pip-ofg-accent); }

        .pip-ofg-conclusion-inner p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto 36px;
        }

        .pip-ofg-conclusion-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pip-ofg-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pip-ofg-accent);
            color: var(--pip-ofg-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-ofg-btn-light:hover { background: var(--pip-ofg-white); color: var(--pip-ofg-primary); }

        .pip-ofg-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--pip-ofg-white);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            border: 2px solid rgba(255,255,255,0.35);
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-ofg-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--pip-ofg-white);
            color: var(--pip-ofg-white);
        }

        /* === RESPONSIVE === */
        @media (max-width: 991px) {
            .pip-ofg-intro-grid,
            .pip-ofg-imgbreak-inner,
            .pip-ofg-faq-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .pip-ofg-intro-text h2 { font-size: 32px; }
            .pip-ofg-img-badge { bottom: -16px; left: 16px; }
            .pip-ofg-benefits-grid { grid-template-columns: 1fr; }
            .pip-ofg-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .pip-ofg-conclusion-inner h2 { font-size: 32px; }
            .pip-ofg-section-title h2 { font-size: 30px; }
            .pip-ofg-faq-left-img { display: none; }
            .pip-ofg-why-list { grid-template-columns: 1fr; }
        }

        @media (max-width: 575px) {
            .pip-ofg-intro, .pip-ofg-benefits, .pip-ofg-imgbreak,
            .pip-ofg-faq, .pip-ofg-conclusion { padding: 50px 0; }
            .pip-ofg-stats-inner { grid-template-columns: 1fr 1fr; }
            .pip-ofg-conclusion-btns { flex-direction: column; align-items: center; }
            .pip-ofg-img-main { height: 260px; }
            .pip-ofg-imgbreak-img { height: 240px; }
        }




 
        /* ============================================
           ON-GRID PRODUCT PAGE — UNIQUE CSS CLASSES
           All prefixed with: pip-og-
        ============================================ */

        :root {
            --pip-og-primary: #163300;
            --pip-og-accent: #89EA5F;
            --pip-og-text: #888888;
            --pip-og-white: #ffffff;
            --pip-og-light-bg: #f4f8f0;
            --pip-og-border: #e0ebd6;
            --pip-og-dark-text: #1a1a1a;
        }

        /* === INTRO SECTION === */
        .pip-og-intro {
            padding: 80px 0 60px;
            background: var(--pip-og-white);
        }

        .pip-og-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pip-og-intro-text h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--pip-og-primary);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .pip-og-intro-text h2 span {
            color: var(--pip-og-accent);
        }

        .pip-og-intro-text p {
            color: var(--pip-og-text);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .pip-og-label {
            display: inline-block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--pip-og-accent);
            background: rgba(137, 234, 95, 0.12);
            border: 1px solid rgba(137, 234, 95, 0.35);
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
        }

        .pip-og-intro-image-wrap {
            position: relative;
        }

        .pip-og-img-main {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .pip-og-img-badge {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: var(--pip-og-primary);
            color: var(--pip-og-white);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 10px 30px rgba(22, 51, 0, 0.25);
        }

        .pip-og-img-badge .pip-og-badge-icon {
            width: 48px;
            height: 48px;
            background: var(--pip-og-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--pip-og-primary);
            flex-shrink: 0;
        }

        .pip-og-img-badge .pip-og-badge-text strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-og-accent);
            line-height: 1;
        }

        .pip-og-img-badge .pip-og-badge-text span {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
        }

        /* === BENEFITS SECTION === */
        .pip-og-benefits {
            padding: 90px 0 70px;
            background: var(--pip-og-light-bg);
            position: relative;
            overflow: hidden;
        }

        .pip-og-benefits::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(137,234,95,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-og-section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .pip-og-section-title h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--pip-og-accent);
            margin-bottom: 10px;
        }

        .pip-og-section-title h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-og-primary);
            line-height: 1.15;
            margin: 0;
        }

        .pip-og-section-title h2 span {
            color: var(--pip-og-accent);
        }

        .pip-og-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .pip-og-benefit-card {
            background: var(--pip-og-white);
            border-radius: 18px;
            padding: 34px 30px;
            border: 1px solid var(--pip-og-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pip-og-benefit-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--pip-og-accent);
            transition: width 0.4s ease;
            border-radius: 0 0 0 18px;
        }

        .pip-og-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(22, 51, 0, 0.09);
            border-color: var(--pip-og-accent);
        }

        .pip-og-benefit-card:hover::after {
            width: 100%;
        }

        .pip-og-benefit-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(137,234,95,0.2), rgba(137,234,95,0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--pip-og-primary);
            margin-bottom: 18px;
        }

        .pip-og-benefit-card h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--pip-og-primary);
            margin-bottom: 10px;
        }

        .pip-og-benefit-card p {
            color: var(--pip-og-text);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        /* === IMAGE BREAK SECTION === */
        .pip-og-imgbreak {
            padding: 70px 0;
            background: var(--pip-og-white);
        }

        .pip-og-imgbreak-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: stretch;
        }

        .pip-og-imgbreak-img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 18px;
            display: block;
        }

        .pip-og-imgbreak-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        .pip-og-imgbreak-content h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--pip-og-primary);
            line-height: 1.15;
            margin: 0;
        }

        .pip-og-imgbreak-content h2 span {
            color: var(--pip-og-accent);
        }

        .pip-og-imgbreak-content p {
            color: var(--pip-og-text);
            font-size: 15.5px;
            line-height: 1.75;
            margin: 0;
        }

        .pip-og-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pip-og-accent);
            color: var(--pip-og-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 30px;
            border: 2px solid var(--pip-og-accent);
            text-decoration: none;
            transition: all 0.25s ease;
            width: fit-content;
        }

        .pip-og-cta-btn:hover {
            background: var(--pip-og-primary);
            color: var(--pip-og-accent);
            border-color: var(--pip-og-primary);
        }

        /* === FAQ SECTION === */
        .pip-og-faq {
            padding: 80px 0;
            background: var(--pip-og-light-bg);
        }

        .pip-og-faq-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 60px;
            align-items: start;
        }

        .pip-og-faq-left h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--pip-og-primary);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .pip-og-faq-left h2 span {
            color: var(--pip-og-accent);
        }

        .pip-og-faq-left p {
            color: var(--pip-og-text);
            font-size: 15px;
            line-height: 1.75;
        }

        .pip-og-faq-left-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 14px;
            margin-top: 24px;
        }

        .pip-og-accordion-item {
            background: var(--pip-og-white);
            border-radius: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--pip-og-border);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .pip-og-accordion-item.pip-og-open {
            box-shadow: 0 8px 30px rgba(22, 51, 0, 0.08);
            border-color: rgba(137,234,95,0.5);
        }

        .pip-og-accordion-toggle {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            text-align: left;
            font-family: 'Rajdhani', sans-serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--pip-og-primary);
            gap: 12px;
        }

        .pip-og-accordion-toggle .pip-og-acc-icon {
            width: 32px;
            height: 32px;
            background: var(--pip-og-light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--pip-og-primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .pip-og-accordion-item.pip-og-open .pip-og-acc-icon {
            background: var(--pip-og-accent);
            transform: rotate(45deg);
        }

        .pip-og-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .pip-og-accordion-item.pip-og-open .pip-og-accordion-body {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        .pip-og-accordion-body p {
            color: var(--pip-og-text);
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid var(--pip-og-border);
            padding-top: 16px;
        }

        /* === CONCLUSION / CTA BANNER === */
        .pip-og-conclusion {
            padding: 80px 0;
            background: var(--pip-og-primary);
            position: relative;
            overflow: hidden;
        }

        .pip-og-conclusion::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(137,234,95,0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-og-conclusion::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(137,234,95,0.07) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pip-og-conclusion-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .pip-og-conclusion-inner h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--pip-og-white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .pip-og-conclusion-inner h2 span {
            color: var(--pip-og-accent);
        }

        .pip-og-conclusion-inner p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto 36px;
        }

        .pip-og-conclusion-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pip-og-btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pip-og-accent);
            color: var(--pip-og-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-og-btn-light:hover {
            background: var(--pip-og-white);
            color: var(--pip-og-primary);
        }

        .pip-og-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--pip-og-white);
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 34px;
            border-radius: 30px;
            border: 2px solid rgba(255,255,255,0.35);
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .pip-og-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--pip-og-white);
            color: var(--pip-og-white);
        }

        /* === STATS STRIP === */
        .pip-og-stats-strip {
            background: var(--pip-og-primary);
            padding: 40px 0;
        }

        .pip-og-stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .pip-og-stat-item {
            padding: 10px;
        }

        .pip-og-stat-item strong {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--pip-og-accent);
            line-height: 1;
        }

        .pip-og-stat-item span {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* === RESPONSIVE === */
        @media (max-width: 991px) {
            .pip-og-intro-grid,
            .pip-og-imgbreak-inner,
            .pip-og-faq-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .pip-og-intro-text h2 {
                font-size: 32px;
            }

            .pip-og-img-badge {
                bottom: -16px;
                left: 16px;
            }

            .pip-og-benefits-grid {
                grid-template-columns: 1fr;
            }

            .pip-og-stats-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .pip-og-conclusion-inner h2 {
                font-size: 32px;
            }

            .pip-og-section-title h2 {
                font-size: 30px;
            }

            .pip-og-faq-left-img {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .pip-og-intro,
            .pip-og-benefits,
            .pip-og-imgbreak,
            .pip-og-faq,
            .pip-og-conclusion {
                padding: 50px 0;
            }

            .pip-og-stats-inner {
                grid-template-columns: 1fr 1fr;
            }

            .pip-og-conclusion-btns {
                flex-direction: column;
                align-items: center;
            }

            .pip-og-img-main {
                height: 260px;
            }
        }

/* <!-- Isolated Scoped CSS for Panels to completely prevent any class name conflicts --> */
    
        .acc-panels-wrapper { padding: 80px 0; background-color: var(--white-color); }
        .acc-panels-title-sub { font-family: var(--accent-font); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; color: var(--accent-color); margin-bottom: 10px; }
        .acc-panels-title-main { font-family: var(--accent-font); font-size: 42px; color: var(--primary-color); font-weight: 700; line-height: 1.2em; margin-bottom: 25px; }
        .acc-panels-desc { font-family: var(--default-font); color: var(--text-color); font-size: 16px; line-height: 1.8em; margin-bottom: 30px; }
        .acc-panels-showcase-img { width: 100%; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .acc-panels-showcase-img img { width: 100%; transition: transform 0.5s ease; }
        .acc-panels-showcase-img:hover img { transform: scale(1.05); }
        
        .acc-panels-gallery-wrapper { padding: 40px 0 80px 0; background-color: var(--secondary-color); border-radius: 50px; margin-bottom: 80px; }
        .acc-panels-gallery-title { text-align: center; font-family: var(--accent-font); font-size: 32px; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
        .acc-panels-grid-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: var(--white-color); padding: 10px; }
        .acc-panels-grid-item img { width: 100%; border-radius: 15px; aspect-ratio: 4/3; object-fit: cover; transition: all 0.4s ease-in-out; }
        .acc-panels-grid-item:hover img { transform: scale(1.03); }
        .acc-panels-grid-caption { font-family: var(--accent-font); font-size: 18px; font-weight: 600; color: var(--primary-color); text-align: center; margin-top: 12px; margin-bottom: 5px; } 
        
        
        
        
        
        
        
        
        /* Main Grid Section Container */
        .greengal-section-wrapper {
            padding: 90px 0;
            background-color: var(--white-color);
        }
        
        /* Premium Responsive 3x3 Grid Framework */
        .greengal-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
            margin-bottom: 60px;
        }

        /* Card Container Structural Shell */
        .greengal-card-item {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            box-shadow: 0 12px 35px rgba(22, 51, 0, 0.06);
            cursor: pointer;
            background-color: var(--secondary-color);
        }

        /* Image Display State Mapping */
        .greengal-card-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Zoom Scaling on Card Hover Frame */
        .greengal-card-item:hover img {
            transform: scale(1.12);
        }

        /* Context Overlay Skin Layout */
        .greengal-info-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(22, 51, 0, 0.9) 0%, rgba(22, 51, 0, 0.3) 60%, rgba(22, 51, 0, 0.0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease-in-out;
            z-index: 2;
        }

        /* Activate Animation Frame states on Hover interface triggers */
        .greengal-card-item:hover .greengal-info-overlay {
            opacity: 1;
            visibility: visible;
        }

        /* Micro Meta Typography Wrapper elements */
        .greengal-micro-tag {
            font-family: var(--accent-font);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 6px;
            transform: translateY(15px);
            transition: transform 0.4s ease 0.1s;
        }

        .greengal-meta-title {
            font-family: var(--accent-font);
            font-size: 22px;
            font-weight: 700;
            color: var(--white-color);
            margin: 0;
            line-height: 1.2em;
            transform: translateY(15px);
            transition: transform 0.4s ease 0.15s;
        }

        .greengal-card-item:hover .greengal-micro-tag,
        .greengal-card-item:hover .greengal-meta-title {
            transform: translateY(0);
        }

        /* Category Header Formatting styling setup */
        .greengal-category-title {
            font-family: var(--accent-font);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 20px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /* ==========================================================================
           ADVANCED BUILT-IN LIGHTBOX ENGINE SYSTEM STYLES
           ========================================================================== */
        .greengal-lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            user-select: none;
        }

        .greengal-lightbox-modal.active {
            opacity: 1;
            visibility: visible;
        }

        /* Viewing Box Wrapper */
        .greengal-lightbox-stage {
            position: relative;
            width: 85vw;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .greengal-lightbox-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            transition: transform 0.2s cubic-bezier(0.1, 0.8, 0.3, 1);
            transform: scale(1);
            will-change: transform;
        }

        /* Engine Controls Navigation Buttons Shell */
        .greengal-lightbox-btn {
            position: absolute;
            background: rgba(22, 51, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.15);
            color: var(--white-color);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.25s ease-in-out;
            z-index: 1000002;
            backdrop-filter: blur(5px);
        }

        .greengal-lightbox-btn:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            border-color: var(--accent-color);
        }

        /* Positioning Coordinates Mapping */
        .greengal-btn-close { 
            top: 25px; 
            right: 25px; 
            font-size: 26px; 
            font-weight: 700;
            background-color: rgb(230, 87, 87);
            border-color: rgba(230, 87, 87, 0.3);
        }
        .greengal-btn-close:hover {
            background-color: rgb(200, 60, 60);
            color: var(--white-color);
            border-color: rgb(200, 60, 60);
        }
        .greengal-btn-prev { left: 30px; top: 50%; transform: translateY(-50%); }
        .greengal-btn-next { right: 30px; top: 50%; transform: translateY(-50%); }

        /* Top Centered Smart Toolbar Panel Layout */
        .greengal-lightbox-toolbar {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            background: rgba(22, 51, 0, 0.7);
            padding: 8px 22px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000002;
            backdrop-filter: blur(5px);
        }

        .greengal-toolbar-tool {
            color: var(--white-color);
            background: transparent;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 6px;
            font-family: var(--accent-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s ease;
        }

        .greengal-toolbar-tool:hover {
            color: var(--accent-color);
        }

        /* Responsive Breakpoint Matrix Extensions */
        @media only screen and (max-width: 991px) {
            .greengal-grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media only screen and (max-width: 650px) {
            .greengal-grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .greengal-lightbox-btn { width: 45px; height: 45px; font-size: 16px; }
            .greengal-btn-close { top: 15px; right: 15px; }
            .greengal-btn-prev { left: 10px; }
            .greengal-btn-next { right: 10px; }
            .greengal-lightbox-toolbar { top: 75px; width: 85%; justify-content: center; }
        }
    
    