* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family);
}
.navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 150px;
}
.dropdown-toggle::after {
    display: none;
}
.my-navbar .navbar-nav .nav-item {
    margin-right: 70px;
}
.my-navbar .navbar-nav .nav-item {
    font-size: 16px;
    color: #0b131f;
    font-weight: 600;
}
.my-navbar .navbar-nav .nav-link svg {
    font-size: 13px;
    padding-left: 5px;
}
.btn-primary {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family);
}
.my-navbar .dropdown-menu {
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    padding: 10px;
    width: 12rem;
    background-color: white;
}
.my-navbar .dropdown-menu .dropdown-item {
    padding: 10px;
    border-radius: 5px;
    line-height: 1.3rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #2c3045;
    font-size: 14px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}
.my-navbar .dropdown-menu li {
    margin-bottom: 10px;
}
.my-navbar .dropdown-menu li:last-child {
    margin-bottom: 0;
}
.my-navbar .dropdown-menu .dropdown-item:hover {
    background: #f5f8fd;
}
.sticky-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar-scroll {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    animation: 0.4s slideDown;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-section-1 {
    background-blend-mode: overlay;
    background-image: url("../../frontend/images/solar-power-station.jpg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-repeat: no-repeat;
    background-size: cover;
    max-height: -moz-fit-content;
    max-height: fit-content;
    min-height: calc(100vh - 3rem);
}

.home-section-1 .section-content {
    font-family: var(--font-family);
    height: calc(100vh - 7rem);
}

.home-section-1 .section-content .section-content-1 {
    flex-grow: 1;
    padding: 0 15px;
}

.home-section-1 .section-content .content-header {
    color: #fff;
    font-size: 3rem;
}

.home-section-1 .section-content .content-subheader {
    color: #fff;
    font-size: 1.7rem;
    line-height: 2;
}

.home-section-1 .section-content .content-subheader .sse-slider-header-2 {
    letter-spacing: 1px;
}

.sse-slider-header-1 {
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}
.sse-slider-header-2 {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 600;
}
.sse-block-header {
    font-family: var(--font-family);
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}
p {
    font-size: 1.1rem;
}
.our-solutions {
    margin-top: 20px;
}

.solution-card {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.solution-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 18px;
    font-size: 25px;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    display: flex;
    align-items: center;
    gap: 15px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 15px 25px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.logo-item img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.logo-item:hover {
    transform: scale(1.07);
    filter: grayscale(0%);
    opacity: 1;
}
.arrow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.arrow-icon svg {
    font-size: 17px;
}
.footer-logo {
    max-width: 190px;
}
.social-media-list ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}
.social-media-list ul li {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.social-media-list ul li a {
    text-decoration: none;
    color: #fff;
}
footer {
    background: linear-gradient(90.16deg, #047355 -15.84%, #03221a 122.54%);
}
.footer-solutions h5 {
    color: #fff;
    font-family: var(--font-family);
    font-weight: 600;
}
.footer-solutions ul {
    list-style: none;
    padding: 0;
}
.footer-solutions ul a {
    color: #fff;
    display: block;
    font-family: var(--font-family);
    font-size: 14px;
    margin: 0.8rem 0;
    text-decoration: none;
}
.footer-discription p {
    color: #fff;
}
.copyright-area {
    background-color: #1885c4;
}
.copyright-area .copyright-item {
    padding-top: 20px;
    padding-bottom: 20px;
}
.copyright-area .copyright-item p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}
.my-togller {
    border: none;
    background: transparent;
    padding: 0;
}
.my-togller:focus {
    box-shadow: none;
}
#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition-duration: 0.5s;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
}

#bar2 {
    transition-duration: 0.8s;
}

#bar1,
#bar3 {
    width: 70%;
}

#checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
    width: 80%;
    transform: rotate(45deg);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
    width: 80%;
    transform: rotate(-45deg);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
    transition-duration: 0.5s;
    transform: rotate(180deg);
}
.btn-primary a {
    color: #fff;
    text-decoration: none;
}
.sp-section-1 {
    max-height: -moz-fit-content;
    max-height: fit-content;
    min-height: calc(100vh - 5rem);
}
.sp-section-1 .swiper .swiper-slide-img-bg.swiper-slide-img-bg-1 {
    background-image: url("../images/hand-with-dollars.jpg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg {
    background-blend-mode: overlay;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 5rem);
    width: 100%;
}
.sp-section-1 .swiper .swiper-slide-img-bg .swiper-slide-content .row {
    bottom: 5rem;
    position: absolute;
    text-align: left;
}
.swiper-wrapper {
    position: relative;
    z-index: 1;
}
.sse-slider-header-3 {
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #fff;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}
.sp-section-1 .swiper .swiper-slide-img-bg.swiper-slide-img-bg-2 {
    background-image: url(https://sse-website.s3.ap-south-1.amazonaws.com/homes/slider-2.jpg),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg.swiper-slide-img-housing-2 {
    background-image: url("../images/workers-installing.jpg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg.swiper-slide-img-bg-3 {
    background-image: url("../images/engineer-standing.avif"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg.swiper-slide-img-bg-4 {
    background-image: url("../images/industrial-plant.jpg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px !important;
}
.swiper-button-prev,
.swiper-button-next {
    height: 40px !important;
    width: 40px !important;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}
.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
}
.required:after {
    color: red;
    content: " *";
}
.form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}
.form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}
.form-control,
.form-select {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(
        90.16deg,
        var(--primary-color) -15.84%,
        #03221a 122.54%
    );
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.partner-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 25px;
}
.partner-card:last-child {
    margin-bottom: 0;
}
.partner-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 10px;
    background: linear-gradient(90.16deg, #047355 -15.84%, #03221a 122.54%);
}
.partner-card-icon img {
    width: 75%;
}
.partner-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: var(--font-family);
    font-weight: 600;
}
.partner-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}
.solar-features-block {
    display: flex;
    align-items: center;
    gap: 15px;
}
.solar-features-heading {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.2rem;
}
.solar-features-subheading {
    font-family: var(--font-family);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Feature Card */
.solar-features-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.solar-features-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Heading */
.solar-features-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

/* Description */
.solar-features-subheading {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
}
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90.16deg, #047355 -15.84%, #03221a 122.54%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #fff;
    flex: none;
    font-size: 30px;
}
div:where(.swal2-icon) {
    font-size: 13px !important;
}
div:where(.swal2-container) div:where(.swal2-popup) {
    width: 25em !important;
}
div:where(.swal2-container) h2:where(.swal2-title) {
    padding-top: 0 !important;
}
div:where(.swal2-container) div:where(.swal2-html-container) {
    padding: 10px 0 !important;
}
div:where(.swal2-container) div:where(.swal2-actions) {
    margin: 0 !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--primary-color) !important;
}
.btn-side {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.service-item {
    padding: 35px 30px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.service-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.service-img svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.service-item h6 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-item > p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    margin: 0;
}

.service-item ul li {
    color: #e2e8f0;
    font-size: 15px;
    position: relative;
    padding-left: 1rem;
}

.service-item ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.btn-learn-more {
    width: 100%;
    padding: 14px;
    background: rgba(51, 65, 85, 0.8);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.btn-learn-more:hover {
    background: rgba(71, 85, 105, 1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Different gradient colors for each service */
.service-item:nth-child(1) .service-img {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.service-item:nth-child(2) .service-img {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.service-item:nth-child(3) .service-img {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.service-item:nth-child(4) .service-img {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.service-item:nth-child(5) .service-img {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.service-item:nth-child(6) .service-img {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

@media (max-width: 992px) {
    .service-item {
        min-height: 350px;
    }
}
.cta-section {
    background: linear-gradient(135deg, #04654b 0%, #033326 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-cta-primary {
    background: #ffffff;
    color: #0f172a;
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff !important;
}
.btn-cta {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.sp-section-1 .swiper .swiper-slide-img-bg.roof-solar-1 {
    background-image: url("../images/roof-solar-1.jpeg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg.roof-solar-housing-1 {
    background-image: url("../images/solar-power.avif"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.sp-section-1 .swiper .swiper-slide-img-bg.roof-solar-3 {
    background-image: url("../images/roof-solar-3.jpeg"),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}
.consultation-section {
    padding: 60px 0;
    background-image: url("../images/farmer-solar-panels.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.form-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 10px;
}
.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.bill-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.bill-option {
    position: relative;
}
.bill-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.bill-option label {
    display: block;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}
.bill-option label:hover {
    border-color: var(--primary-color);
}
.bill-option input[type="radio"]:checked + label {
    background: linear-gradient(
        90.16deg,
        var(--primary-color) -15.84%,
        #03221a 122.54%
    );
    color: white;
    border-color: var(--primary-color);
}
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.checkbox-group label {
    font-size: 0.9rem;
    color: #6b7280;
    cursor: pointer;
}
.checkbox-group a {
    color: #667eea;
    text-decoration: none;
}
.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}
.left-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
.left-content .highlight {
    background: linear-gradient(to right, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.left-content p {
    font-size: 1rem;
    margin-bottom: 0px;
}
.benefits {
    margin-top: 25px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        90.16deg,
        var(--primary-color) -15.84%,
        #03221a 122.54%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.benefit-text {
    font-size: 1rem;
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0;
    text-align: center;
    height: 100%;
}
.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}
.feature-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.feature-card img {
    width: 100%;
    max-width: 90px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    padding: 10px;
    border-radius: 10px;
}
.submit-enquiry-section {
    padding: 100px 0;
    background: linear-gradient(
            186.24deg,
            rgb(29 28 34 / 49%) 4.68%,
            rgba(14, 13, 27, 0.9) 94.91%
        ),
        url(https://html.awaikenthemes.com/soare/images/cta-bg-img.jpg)
            no-repeat center center;
    background-size: cover;
}
.content-area {
    text-align: center;
    width: 100%;
    max-width: 745px;
    margin: 0 auto;
}
.content-area h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
}
.content-area p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin: 20px 0 40px 0;
}
.commercial-consultation-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
}
.commercial-consultation-form .form-group label {
    color: #f3f4f6;
}
.commercial-consultation-form .checkbox-group label {
    color: #f3f4f6;
}
.commercial-section {
    background-image: url("../images/commercial-solar.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    padding: 160px 0 180px;
}
.commercial-section::before {
    content: "";
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(14, 13, 27, 0) 0%,
        rgba(14, 13, 27, 0.55) 40.5%
    );
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}
.commercial-section-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}
.commercial-section-content p {
    color: white;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 20px auto 0 auto;
    text-align: center;
}
.page-header {
    position: relative;
    padding: 150px 0px;
    background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%),
        url(../images/page-header-bg.jpg) no-repeat center center;
    background-size: cover;
}
.page-header-box h1 {
    color: #fff;
    font-size: 80px;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    cursor: none;
}
.page-header-box {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header-box ol {
    display: inline-flex;
    margin-bottom: 0;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 80px;
    padding: 15px 20px;
}
.page-header-box ol li.breadcrumb-item {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1em;
    text-transform: capitalize;
}
.page-header-box ol li.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
}
.page-header-box ol li.breadcrumb-item {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1em;
    text-transform: capitalize;
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.page-header::after {
    content: "";
    position: absolute;
    background-image: url("https://html.awaikenthemes.com/soare/images/white-squre-bg-img.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}
.contact-icon-box {
    border: 1px solid #e9e9ea;
    border-radius: 6px;
    padding: 25px;
}
.icon-box {
    background: #eef7ec;
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin: 0px 0px 40px 0px;
    border-radius: 50%;
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-icon-box:hover .icon-box {
    background: var(--primary-color);
}
.contact-icon-box:hover .icon-box svg {
    color: #fff;
}
.icon-box svg {
    color: var(--primary-color);
    font-size: 35px;
}
.icon-box-item-content h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #414141;
}
.icon-box-item-content p {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    color: #1f242c;
    margin: 2px auto 0px auto;
}
.icon-box-item-content p a {
    text-decoration: none;
    color: #1f242c;
}
.about-us-content h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0px 0px 0px 10px;
    border-left: 3px solid var(--primary-color);
}
.about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.about-story {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.about-story li {
    width: 48%;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    position: relative;
}
.about-us-images {
    position: relative;
}
.about-us-images-1 {
    text-align: right;
}
.about-us-images-1 img {
    padding: 0px 0px 50px 20px;
    border-style: solid;
    border-width: 0px 0px 0px 10px;
    border-color: var(--primary-color);
}
.about-us-images-2 {
    position: absolute;
    bottom: -15px;
    left: 35px;
}
.about-us-images-3 {
    position: absolute;
    right: -15px;
    bottom: -15px;
    animation: bounce-x 2s infinite linear;
    z-index: -1;
}
@keyframes bounce-x {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}
.company-counter {
    background-color: #1f242c;
    background-image: url(https://slaze.nextwpcook.com/wp-content/uploads/2024/03/shape-18.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px 80px 0px;
}
.counter-number {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}
.counter-content p {
    color: #b4b4b9;
    margin: 0;
}
.counter-content {
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #414141;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px 70px 0px 0px;
}
.col-lg-3.mb-3.mb-lg-0:last-child {
    border: 0;
}
.counter-content img {
    max-width: 75px;
}

.about-icon-box {
    position: relative;
    background-color: #f2f4e9;
    width: 85px;
    height: 85px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    flex-shrink: 0;
    border-radius: 5px;
}
.about-icon-box img {
    z-index: 1;
    position: relative;
    max-width: 100%;
}
.quality-item {
    display: flex;
    align-items: center;
}
.quality-item h3 {
    margin: 0;
    text-transform: capitalize;
    font-size: 17px;
}
.smart-way {
    padding: 40px 70px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.smart-way h1 {
    color: #fff;
    font-size: 45px;
    margin: 0;
    font-weight: 600;
    max-width: 650px;
}
.get-in-touch {
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 15px 30px;
    border-radius: 5px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery a:hover img {
    transform: scale(1.05);
}

.hero {
    position: relative;
    padding: 160px 0 180px;
    background-image: url("https://html.awaikenthemes.com/soare/images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
}

.hero::before {
    content: "";
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(14, 13, 27, 0) 0%,
        rgba(14, 13, 27, 0.55) 40.5%
    );
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.hero.hero-slider {
    text-align: center;
    background: none;
    padding: 0;
}

.hero-slider-layout .hero-slide {
    position: relative;
    padding: 160px 0 180px;
}

.hero.hero-slider:before {
    display: none;
}

.hero.hero-slider .hero-slider-layout {
    position: relative;
    z-index: 2;
}

.hero-slider-layout .hero-slide::before {
    content: "";
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(14, 13, 27, 0) 0%,
        rgba(14, 13, 27, 0.55) 40.5%
    );
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
    bottom: 100px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-title {
    margin-bottom: 30px;
}

.hero-content-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.hero-content-title h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.hero-content-body {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.hero-content-body p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.our-services {
    position: relative;
    background: #f2f4e9
        url("https://html.awaikenthemes.com/soare/images/white-squre-bg-img.svg")
        no-repeat;
    background-position: right bottom;
    background-size: auto;
    padding: 100px 0;
}

.our-services .section-title h3 {
    background-color: #fff;
}

.our-service-item {
    position: relative;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.section-title h3 {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 0.095em;
    text-transform: uppercase;
    padding: 10px;
    margin-bottom: 15px;
}
.section-title h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
    color: #000;
}

.our-service-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    height: 100%;
    z-index: 1;
}

.our-service-item:hover:before {
    top: 0;
}

.our-service-item::after {
    content: "";
    position: absolute;
    background-image: url("https://html.awaikenthemes.com/soare/images/squre-bg-img.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.our-services .col-lg-3:nth-of-type(even) .our-service-item {
    margin-top: 70px;
}

.our-service-item .icon-box {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.service-body {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.service-body h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.our-service-item:hover .service-body h3 {
    color: #fff;
}

.service-body p {
    margin: 0;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.our-service-item:hover .service-body p {
    color: #fff;
}

.process-box i,
.benefit-box i {
    font-size: 40px;
    color: #f4b400;
    margin-bottom: 15px;
}

.process-box h6 {
    font-weight: 600;
}

.benefit-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.benefit-box h5 {
    margin-top: 15px;
    font-weight: 600;
}
.benefit-box svg {
    width: 40px;
    height: 40px;
    padding: 20px;
    margin: 0 auto 25px;
    background: linear-gradient(90.16deg, #047355 -15.84%, #03221a 122.54%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.guide-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guide-card svg {
    color: var(--primary-color); /* Solar yellow */
}
.solar-benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.solar-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.solar-benefit-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-text {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 15px;
    border-radius: 5px;
}

.solar-benefit-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.extra-text {
    font-size: 13px;
    color: #8a8f98;
    display: block;
}
.solar-power-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solar-power-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.solar-power-list i {
    font-size: 22px;
    color: #0d6efd;
    margin-top: 4px;
}

.solar-power-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.solar-power-list span {
    font-size: 14px;
    color: #6c757d;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header p {
    font-size: 1.2rem;
    color: #475569;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

/* CARD */
.process-card {
    position: relative;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

/* ICON */
.icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2),
        rgba(139, 92, 246, 0.2)
    );
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

/* STEP NUMBER */
.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* TITLE */
.process-card h5 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 12px;
}

/* TEXT */
.process-card p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
}

/* ARROW */
.arrow {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #3b82f6;
    animation: arrowMove 1.5s infinite;
}

.process-card:last-child .arrow {
    display: none;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translate(0, -50%);
    }
    50% {
        transform: translate(8px, -50%);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.4rem;
    }
}

/* Media Query */

@media only screen and (max-width: 756px) {
    .sse-slider-header-1 {
        font-size: 2rem;
        text-align: center;
    }
    .sse-slider-header-2 {
        font-size: 1rem;
    }
    .home-section-1 {
        min-height: 0;
    }
    .home-section-1 .section-content {
        height: calc(75vh - 7rem);
    }
    .sse-block-header {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    p {
        font-size: 14px;
    }
    .solution-image img {
        height: 100%;
    }
    .solution-title {
        font-size: 20px;
    }
    .arrow-icon {
        width: 30px;
        height: 30px;
    }
    .arrow-icon svg {
        font-size: 13px;
    }
    .trusted-logos {
        gap: 5px;
    }
    .logo-item img {
        max-width: 120px;
    }
    .logo-item {
        padding: 15px;
    }
    .footer-logo {
        max-width: 150px;
        padding-bottom: 15px;
    }
    .navbar-brand {
        max-width: 125px;
        padding-bottom: 10px;
    }
    .my-navbar .navbar-nav .nav-item {
        margin-right: 0px;
    }
    .my-navbar .navbar-nav .nav-item:last-child {
        padding-top: 10px !important;
        border: 0 !important;
    }
    .btn-primary {
        padding: 10px 15px;
        font-size: 12px;
    }
    .my-navbar .navbar-nav .nav-item {
        font-size: 15px;
        border-bottom: 1px solid #e2e4ec !important;
        padding: 5px 0 !important;
    }
    .navbar-collapse {
        border-top: 1px solid rgb(228, 228, 228);
        margin-top: 5px;
    }
    .my-navbar .dropdown-menu.show {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
    }
    .sp-section-1 .swiper .swiper-slide-img-bg {
        height: calc(75vh - 5rem);
    }

    .sp-section-1 {
        min-height: calc(75vh - 5rem);
    }
    .swiper-button-next,
    .swiper-button-prev {
        bottom: 20px;
        top: auto;
    }
    .swiper-button-prev,
    .swiper-button-next {
        height: 30px !important;
        width: 30px !important;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 10px !important;
    }
    .partner-card-icon {
        width: 80px;
        height: 80px;
    }
    .partner-card:last-child {
        margin-bottom: 25px;
    }
    .cta-section h2,
    .content-area h2 {
        font-size: 1.8rem;
    }
    .commercial-section-content h1 {
        font-size: 1.8rem;
    }
    .commercial-section-content p,
    .content-area p {
        font-size: 1rem;
    }
    .commercial-section {
        padding: 70px 0 70px;
    }
    .commercial-consultation-form {
        padding: 20px;
    }
    .submit-enquiry-section {
        padding: 50px 0;
    }
    .page-header-box h1 {
        font-size: 30px;
    }
    .page-header {
        padding: 80px 0px;
    }
    .about-us-images-3 img,
    .about-us-images-2 img {
        width: 100%;
    }
    .about-us-images-3 {
        max-width: 150px;
        right: 35px;
        bottom: 0;
    }
    .about-us-images-1 {
        max-width: 340px;
    }
    .about-us-images-1 img {
        width: 100%;
        border: 0;
        padding: 0;
    }
    .about-us-images-2 {
        position: absolute;
        right: 0 !important;
        bottom: 50px !important;
        left: auto;
        border: 10px solid #fff;
        border-radius: 20px 0 0 20px;
        overflow: hidden;
        max-width: 330px;
    }
    .about-us-content h2 {
        font-size: 1.5rem;
    }
    .about-story li {
        width: 50%;
        font-size: 14px;
    }
    .smart-way {
        padding: 30px;
    }
    .smart-way h1 {
        font-size: 20px;
        max-width: 280px;
    }
    .get-in-touch {
        padding: 10px;
    }
    .company-counter {
        padding: 60px 0px 60px 0px;
    }
    .counter-content {
        margin: 0px 20px 0px 0px;
        text-align: center;
    }
    .counter-content img {
        max-width: 50px;
    }
    .counter-content img {
        margin: 0 auto;
    }
    .hero-content-title h1 {
        font-size: 24px;
    }
    .hero {
        padding: 100px 0 100px;
    }
    .hero-content-body p {
        font-size: 15px;
    }
    .section-title h2 {
        font-size: 20px;
    }
    .our-services {
        padding: 60px 0;
    }
    /* .our-services .col-lg-3:nth-of-type(even) .our-service-item {
        margin-top: 30px;
    } */
    .bill-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .bill-option label {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .two-columns {
        grid-template-columns: auto;
    }
    .sse-slider-header-3 {
        text-align: center;
    }
    .left-content h1 {
        font-size: 1.5rem;
    }
}

:root {
    --primary-color: #047355;
    --font-family: "Poppins", sans-serif;
    --secondary-color: #03221a;
}
