@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-color: #0F53B7;
    --orange-color: orange;
    --black-color: #000;
    --white-color: #fff;
    --blue: #0F53B7;

}

a {
    color: var(--black-color);
}

.footer li {
    list-style: none;
}


.btn.focus,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-warning {
    background-color: var(--blue);
    border: none;
    font-weight: 600;
}

.btn-warning {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--orange-color);
    font-family: "Montserrat", sans-serif;
    /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    cursor: pointer;
    border: none;
    margin-bottom: 0px !important;
}

.btn-warning:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--blue-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.btn-warning:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-warning span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: var(--black-color);
    letter-spacing: 0.70px;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.btn-warning:hover span {
    color: var(--white-color) !important;
    animation: scaleUp 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--blue);
    border: none;
    font-weight: 600;
}

.btn-primary {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--blue-color);
    font-family: "Montserrat", sans-serif;
    /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    cursor: pointer;
    border: none;
    margin-bottom: 0px !important;
}

.btn-primary:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--orange-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.btn-primary:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-primary span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: var(--white-color);
    letter-spacing: 0.70px;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover span {
    color: var(--white-color) !important;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.form-control:focus {
    box-shadow: none;
}

body {
    background-color: var(--white-color);
    font-family: "Open Sans", sans-serif;

}


/* =================== navbar start ========================= */
/* .header {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
} */


.header .nav-link {
    color: var(--black-color);
    /* padding: 10px !important; */
    border: none;
    font-size: 17px;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    text-decoration: none;
    text-align: end;
}

.header .nav-link:hover {
    background-color: var(--blue);
    color: var(--white-color);
    transition: all 0.5s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--black-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
    transition: width 0.3s ease;
}

.nav-link.active {
    background-color: var(--blue);
    color: var(--white-color) !important;
}


.header .navbar-toggler {
    background-color: transparent !important;
}

.header .navbar-toggler.custom-toggler {
    background-color: transparent;
    border-color: var(--black-color);
    color: var(--black-color) !important;
}


.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar-brand img {
    height: auto;
    width: 70px;
}

.btn-gold {
    background-color: #F59A03;
}

.header .navbar-toggler {
    background-color: var(--black-color);
}

.header .nav-item {
    margin-right: 0.1rem;
}

/* =================== header scroll and navbar color change=================== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.bg-box {
    background-color: var(--blue);
}

/* ================ responsive navbar styling ===================== */
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 300px;
    transition: transform 0.3s ease-out;
}

.modal.right .modal-content {
    height: 100%;
    background-color: var(--white-color);
    color: var(--black-color) !important;
    overflow-y: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.modal.right.fade .modal-dialog {
    transform: translateX(100%);
}

.modal.right.fade.show .modal-dialog {
    transform: translateX(0);
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    color: var(--black-color);
    padding: 8px;
    cursor: pointer;
}

.custom-close i {
    font-size: 30px;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.navbar-modal .nav-item {
    margin: 8px 0px;

}

.navbar-modal .nav-link {
    border-bottom: 1px solid var(--black-color);
    color: var(--black-color) !important;
}


.navbar-modal .nav-item:hover {
    border-radius: 0px;
    color: var(--black-color) !important;
}

.navbar-collapse {
    flex-grow: 0;
}

/* ================ responsive navbar styling end===================== */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width:1400px) {
    .header .nav-link {
        color: var(--black-color);
        padding: 10px 30px !important;
        border: none;
        transition: background-color 0.3s;
    }
}

@media (max-width:1200px) {
    .header .nav-link {
        padding: 10px 20px !important;
    }

    #section_one {
        margin-top: 20%;
    }
}

@media (max-width:1100px) {
    .header .nav-link {
        padding: 10px !important;
    }

    #section_one {
        margin-top: 0%;
    }
}

@media (max-width: 991px) {
    .header .navbar-nav {
        border: 1px solid var(--black-color);
        border-radius: 50px;
        padding: 0.5rem;
    }

    .header .nav-item:hover {
        background-color: none !important;
    }

    .header .navbar-nav {
        border: none;
        color: var(--black-color);
    }

    .header {
        background-color: var(--white-color);

    }

    .header .nav-link,
    .header .navbar-brand {
        color: var(--black-color);
        font-weight: bold;
    }

    .header .btn-custom {
        background-color: var(--black-color);
        color: var(--black-color);
        padding: .7rem 2rem;
        margin-right: 1rem;
        border: 1px solid var(--black-color);
        border-radius: 50px;
    }

    .header.scrolled .navbar-nav {
        border: none;
    }

    #section_one {
        margin-top: 5%;
    }
}

@media (max-width:420px) {
    .contact-section h1 {
        font-size: 35px;
    }
}

/* ========================////////// navbar end///////////////////////// =============================== */

/* ============= hero section =============== */
.hero-section .hero-video {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 1;
}

@media (min-aspect-ration:19/6) {
    .hero-section .hero-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ration:19/6) {
    .hero-section .hero-video {
        width: auto;
        height: 100%;
    }
}

.hero-section {
    min-height: 60.38vh;
}

/* ============= hero section =============== */


/* ============= estimates section =============== */
.estimates .card {
    height: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.estimates .card p {
    letter-spacing: 1px;
}

/* ============= estimates section end =============== */

/* ============= stars section  =============== */
.stars i {
    font-size: 90px;
    color: #F59A03;
}

/* ============= starts section end =============== */

/* ============= Review section  =============== */
.accurate .card {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

h2 {
    color: #000;
    font-weight: 300;
    text-align: center;
    position: relative;
    margin: 30px 0 60px;
}

h2::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 4px;
    border-radius: 1px;
    background: orange;
    left: 0;
    right: 0;
    bottom: -20px;
}

.review .carousel .carousel-item {
    color: #999;
    overflow: hidden;
    min-height: 120px;
    font-size: 13px;
}

.review .carousel .media {
    position: relative;
    padding: 0 0 0 20px;
}

.review .carousel .media img {
    width: 75px;
    height: 75px;
    display: block;
    border-radius: 50%;
}

.review .carousel .testimonial-wrapper {
    padding: 0 10px;
}

.review .carousel .testimonial {
    color: #808080;
    position: relative;
    padding: 15px;
    background: #f1f1f1;
    border: 1px solid #efefef;
    border-radius: 3px;
    margin-bottom: 15px;
}

.review .carousel .testimonial::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: #f1f1f1;
    border: 1px solid #efefef;
    border-width: 0 0 1px 1px;
    position: absolute;
    bottom: -8px;
    left: 46px;
    transform: rotateZ(-46deg);
}

.review .carousel .star-rating li {
    padding: 0 2px;
}

.review .carousel .star-rating i {
    font-size: 16px;
    color: #ffdc12;
}

.review .carousel .overview {
    padding: 3px 0 0 15px;
}

.review .carousel .overview .details {
    padding: 5px 0 8px;
}

.review .carousel .overview b {
    text-transform: uppercase;
    color: orange;
}

.review .carousel .carousel-indicators {
    bottom: -70px;
}

.review .carousel-indicators li,
.carousel-indicators li.active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 1px 2px;
    box-sizing: border-box;
}

.review .carousel-indicators li {
    background: #e2e2e2;
    border: 4px solid #fff;
}

.review .carousel-indicators li.active {
    color: #fff;
    background: orange;
    border: 5px double;
}


/* ============= Review section end =============== */


/* ============= faqs section  =============== */
.faqs a:hover,
.faqs a:focus {
    text-decoration: none !important;
    outline: none !important;

}

.faqs .panel-group .panel {
    background-color: var(--white-color);
    border: none;
    box-shadow: none;
    border-radius: 10px;
    margin-bottom: 11px;
}

.faqs .panel .panel-heading {
    padding: 0;
    border-radius: 10px;
    border: none;
}

.faqs .panel-heading a {
    color: var(--white-color) !important;
    display: block;
    border: none;
    padding: 20px 35px 20px;
    font-size: 20px;
    background-color: var(--blue);
    font-weight: 600;
    position: relative;
    color: var(--white-color);
    box-shadow: none;
    transition: all 0.1s ease 0;
}

.faqs .panel-heading a:after,
.faqs .panel-heading a.collapsed:after {
    content: "\f068";
    font-family: fontawesome;
    text-align: center;
    position: absolute;
    left: -20px;
    top: 10px;
    color: var(--white-color) !important;
    background-color: #000;
    border: 5px solid var(--white-color);
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}

.faqs .panel-heading:hover a:after,
.faqs .panel-heading:hover a.collapsed:after {
    transform: rotate(360deg);
}

.faqs .panel-heading a.collapsed:after {
    content: "\f067";
}

#accordion .panel-body {
    background-color: #fbf8f8;
    color: #8C8C8C;
    line-height: 25px;
    padding: 10px 25px 20px 35px;
    border-top: none;
    font-size: 14px;
    position: relative;
}

.faqs .text-white {
    color: var(--white-color);
    text-transform: uppercase;
}

.faqs .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid var(--white-color);
    top: 50%;
    animation: loader 2s infinite ease;
}

.faqs .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: var(--white-color);
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

/* ============= faqs section end =============== */

/* ============= organization section  =============== */
.organization .card {
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.organization .card img {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    text-align: center;

    /* border-radius: 20px;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

/* ============= organization section end =============== */


/* ============= leaderships section  =============== */
.profile-card-5 {
    margin-top: 20px;
}

.profile-card-5 .btn {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 20px;
}

.profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;
}

.profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
}

.profile-card-5 h5 {
    color: #4e5e30;
    font-weight: 600;
}

.profile-card-5 p {
    font-size: 14px;
    font-weight: 300;
}

.profile-card-5 .btn-primary {
    background-color: #4e5e30;
    border-color: #4e5e30;
}

.info-btn {
    background-color: var(--blue);
    color: var(--white-color);
    border: #0F53B7;
}

.success-btn {
    background-color: #F59A03;
}

.tick {
    color: var(--blue);
}

.fw-6 {
    font-weight: 600;
}

/* ============= leaderships section end =============== */

/* ============= footer  =============== */
.footer .links a {
    font-size: 18px;
    font-weight: 300;
}

.footer .links li {
    margin: 7px 0px;
}

/* ============= footer end =============== */



/* blog section */
.blog a:hover {
    text-decoration: none;
}

.blog .card {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.blog .card img {
    border-radius: 10px 10px 0px 0px;
}

.blog .card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all 0.3s ease;
}

/* blog detail */
.blog-detail .pic {
    border-radius: 25px;
    height: 60%;
    width: 70%;
}

.blog-detail .hedingthree {
    font-size: 45px;
    letter-spacing: 1px;
}

/* ================ chat box ====================== */

.chatbot-toggler {
    width: 50px;
    height: 50px;
    background-color: var(--orange-color);
    color: var(--white-color);
    right: 40px;
    bottom: 35px;
    position: fixed;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    z-index: 1;
}

.chatbot-toggler i {
    font-size: 30px;
}

.chatbot-toggler i:first-child {
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s;
}

.chatbot-toggler i:last-child {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
}

.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.show-chatbot .chatbot-toggler i:first-child {
    opacity: 0;
}

.show-chatbot .chatbot-toggler i:last-child {
    opacity: 1;
}

.chatbot {
    /* background-color:rgba(0, 0, 0, 0.76); */
    background-color: white;
    width: 420px;
    right: 80px;
    bottom: 60px;
    position: fixed;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.1s ease;
    transform-origin: bottom right;
    z-index: +999;
}

.show-chatbot .chatbot {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot p {
    margin-bottom: 0px !important;
}

.chatbot header {
    background-color: var(--white-color);
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    border-top-left-radius: var(--boder-radius);
    border-top-right-radius: var(--boder-radius);
    border-bottom: 1px solid black;
    padding: 10px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

.chatbot label {
    font-weight: 500;
}

.chatbot header .drop-icon {
    font-size: 18px;
    cursor: pointer;
    background-color: var(--orange-color);
    color: var(--white-color);
    border-radius: 100%;
    padding: 10px;
    margin-top: 15px;
    position: absolute;
    right: 20px;
}

.chatbot header .drop-icon:hover {
    background-color: var(--blue-color);
    transition: all 0.4s ease;
    color: var(--white-color);
}

.chatbot .chatbox {
    height: 450px;
    overflow-y: hidden;
    padding: 10px 20px 100px;
}

.chatbot .chatbox .chat {
    display: flex;
}



.chatbot .chat-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 180px;
}


.chatbot .chat-input span {
    color: white;
    font-size: 1.35rem;
    cursor: pointer;
    align-self: center;
}

@media (max-width:490px) {
    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chatbot .chatbox {
        height: 90%;
    }

}

@keyframes bloom1 {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@keyframes bloom2 {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

/* blog details */
@media (max-width:576px) {
    .BluePrint {
        font-size: 31px;
    }

    .blog-detail .pic {
        width: 100%;
    }

}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: #fafafa;
}

.main-topic {
    padding: 70px 20px;
    overflow: hidden;
    z-index: 1;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.main_heading {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.main_heading::before {
    content: '';
    background-image: url('/assets/images/chelsea-WvusC5M-TM8-unsplash.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: -1;
}

.main-topic-heading {
    color: #0f473d;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-topic-subheading {
    color: #0f473d;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.main-topic-tag {
    border: 2px solid #0f473d;
    padding: 12px 20px;
    border-radius: 50px;
    color: #0f473d;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.main-topic-tag:hover {
    background-color: #0f473d;
    color: white;
    cursor: pointer;
}

.main-topic-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.types {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}


.type-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 30px;
    background: linear-gradient(45deg, #0f473d, #67b59b);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.type-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}


.type-icon {
    background-color: white;
    color: #0f473d;
    border-radius: 50%;
    padding: 12px;
    margin-right: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.type-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}


.solar-benefits-container {

    padding: 0px 20px;

    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.solar-benefits-container .col-md-6 {
    margin: 7px 0px;
}

.section-heading {
    color: #0f473d;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    margin-bottom: 0px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon {
    background-color: #0f473d;
    color: white;
    padding: 25px;
    border-radius: 50%;
    margin-right: 20px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.icon i {
    font-size: 16px;
}

.benefit:hover .icon {
    transform: scale(1.2);
}

.benefit-text h3 {
    color: #0f473d;
    font-size: 18px;
    font-weight: 700;

}

.benefit-text {
    width: 75%;
}

.benefit-text p {
    color: #555;
    font-size: 14px;

}

.solar-info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    margin: 10px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.info-box h3 {
    color: #0f473d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    list-style-type: disc;
}

.info-box ul li a {
    color: #0f473d;
    text-decoration: none;
    font-weight: bold;
}

.info-box ul li a:hover {
    color: #ff8c00;
}


.info-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.info-box p strong {
    font-weight: bold;
    color: #0f473d;
}

.start_journey {
    padding: 50px 15px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.start_journey h1 {
    color: #0f473d;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.start_journey p strong {
    font-weight: bold;
    color: #0f473d;
}

@media (max-width: 992px) {
    .solar-benefits-container {
        padding: 40px 10px;
    }

    .solar-info-container {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .start_journey .section2 {
        margin-bottom: 25px;
    }

    .solar-info-container .info-box {
        width: 100%;
    }

    .solar-info-container .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .solar-info-container {
        padding: 40px 8px;
    }
}

@media (max-width: 768px) {

    .benefit {
        flex-direction: column;
        align-items: center;
    }

    .icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .start_journey {
        max-width: 100%;
    }


    .start_journey .section2 {
        margin-bottom: 25px;
    }



    .main-topic {
        padding: 15px 20px;
    }

    .start_journey .section2 {
        margin-bottom: 25px;
    }

    .start_journey .row {
        flex-direction: column-reverse;
    }

    .start_journey h1 {
        font-size: 22px;
    }

    .solar-benefits-container {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .solar-info-container .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================ chat box end ====================== */
