* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif !important;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}



/* topbar-section-css-start */

.topbar-section {
    width: 100%;
    background: linear-gradient(90deg, #92c53d, #0a729f);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
}

/*==============================
      CONTACT INFO
===============================*/

.contact-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
    white-space: nowrap;
}

.contact-info a:hover {
    color: #000;
}

.contact-info i {
    color: #ffd54a;
    margin-right: 6px;
    font-size: 13px;
}

/*==============================
        MARQUEE
===============================*/

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 28s linear infinite;
}

.marquee-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-right: 80px;
    white-space: nowrap;
}

.marquee-text strong {
    color: #FFD54A;
}

@keyframes marqueeMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/*==============================
        TABLET
===============================*/

@media(max-width:992px) {

    .contact-info {
        /* justify-content: center;
        margin-bottom: 8px;
        gap: 12px; */
        display: none;
    }

    .marquee-text {
        font-size: 13px;
    }

}

/*==============================
        MOBILE
===============================*/

@media(max-width:768px) {

    .topbar-section {
        padding: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }

    .contact-info a {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }

    .marquee-text {
        font-size: 14px;
        /* padding-right: 50px; */
    }

}

/*==============================
      SMALL MOBILE
===============================*/

@media(max-width:480px) {

    /* .contact-info a {
        font-size: 12px;
    } */

    .marquee-text {
        font-size: 13px;
    }

}


/* topbar-section-css-end */


/* navbar-section-css-start */

.custom-navbar {
    width: 100%;
    background: #fff;
    padding: 0 !important;
    position: relative;
    z-index: 999;
    transition: all .4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    border-bottom: 1px solid #91c43e2b;
}

/* Fixed Navbar on Scroll */
.custom-navbar.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: navbarSlide .45s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    background: #fff;
}

@keyframes navbarSlide {

    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }

}

.navbar-brand {
    padding-right: 0px !important;
    margin-right: 0px !important;
}

.logo-img {
    width: 90px;
}

.nav-center {
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px !important;
    border-radius: 40px;
    color: #076c9a !important;
    font-size: 14px;
    font-weight: 600 !important;
    transition: .35s;
}

.nav-link i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: #eef8f2;
    color: #2C9B51;
    transition: .35s;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(90deg, #2C9B51 0%, #57AC45 50%, #9AC733 100%);
    color: #fff !important;
}

.nav-link:hover i,
.nav-link.active i {
    background: #fff;
    color: #2C9B51;
    transform: rotate(360deg);
}

/* nav-text- */
/*==============================
Animated Mobile Nav Text
==============================*/

.nav-text {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    position: relative;
    overflow: hidden;
    user-select: none;
}

/* Text */

.nav-text .txt {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #2C9B51;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    background: linear-gradient(90deg,
            #2C9B51,
            #9AC733,
            #2C9B51);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 4s linear infinite;
}

/* Sun */

.nav-text .sun {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FDB813;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(253, 184, 19, .8);
    animation: sunRotate 8s linear infinite;
}

.nav-text .sun::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px dashed rgba(253, 184, 19, .7);
    border-radius: 50%;
}

/* Solar Panel */

.nav-text .panel {
    color: #0077B6;
    font-size: 15px;
    display: flex;
    align-items: center;
    animation: panelMove 2.2s ease-in-out infinite;
}

/* Shine */

.nav-text::after {
    content: "";
    position: absolute;
    left: -35%;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(110deg,
            transparent,
            rgba(255, 255, 255, .9),
            transparent);
    animation: shine 3.5s linear infinite;
}

/* Animations */

@keyframes sunRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes panelMove {

    0%, 100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-3px) rotate(8deg);
    }

}

@keyframes textGlow {

    from {
        background-position: 0%;
    }

    to {
        background-position: 200%;
    }

}

@keyframes shine {

    from {
        left: -35%;
    }

    to {
        left: 130%;
    }

}

/* Mobile */

@media(max-width:767px) {

    .nav-text {
        display: flex;
        margin: 0px 8px;
        padding: 10px 0px;
    }
}



/*==============================
Dropdown
==============================*/

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: #63B32E;
    color: #fff;
}

/*==============================
Button
==============================*/

.quote-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 2px solid #63B32E;
    border-radius: 50px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    font-size: 14px;
    background: linear-gradient(90deg, #2C9B51 0%, #57AC45 50%, #9AC733 100%);
}

.quote-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: 50px;
    /* background: linear-gradient(90deg, #63B32E, #0077B6); */
    background: #fff;
    transition: width .4s ease;
    z-index: -1;

}

.quote-btn:hover::before {
    width: 100%;
}

.quote-btn:hover {
    border-color: #0077B6;
    color: #0077B6;
}

/*==============================
Menu Button
==============================*/

.menu-btn {
    background: #63B32E !important;
    color: #fff !important;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn:focus {
    box-shadow: none;
}

/*==============================
OFFCANVAS
==============================*/
.custom-offcanvas {
    width: 320px;
    background: linear-gradient(135deg, #0B2545, #0077B6, #63B32E);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 16px !important;
}

.offcanvas-logo {
    width: 80px;
    border: 2px solid #54a875;
    border-radius: 5px;
}

/*==============================
Mobile Menu
==============================*/

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0px 0;

}

.mobile-menu li {
    margin-bottom: 12px;
}

.mobile-menu li>a {
    display: block;
    background: #fff;
    color: #0B2545;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
    font-size: 14px;
}

.mobile-menu li>a:hover {
    background: #63B32E;
    color: #fff;

}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

details {
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;

}

summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #0B2545;
}

details a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 8px 0 0 15px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

details a:hover {
    color: #63B32E;
    transition: 0.3s;
}

/*==============================
Mobile Button
==============================*/
.mobile-btn {
    display: block;
    text-align: center;
    background: #fff;
    color: #0077B6;
    text-decoration: none;
    padding: 12px;
    border-radius: 40px;
    margin: 20px 0;
    font-weight: 600;
}

/*==============================
Glass Contact
==============================*/

.offcanvas-contact-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
}

.offcanvas-contact-box h5 {
    color: #FFD54A;
    margin-bottom: 6px;
}

.offcanvas-contact-box p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.offcanvas-close-btn {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .35s ease;
    cursor: pointer;
}

.offcanvas-close-btn:hover {
    background: #fff;
    color: #0077B6;
    border-color: #fff;
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .25);
}


.offcanvas-contact-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    transition: .35s ease;
}

.offcanvas-contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 22px;
    transition: .35s;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFD54A;
    font-size: 18px;
    transition: .35s;
}

.contact-item:hover .contact-icon {
    background: #FFD54A;
    color: #0B2545;
    transform: rotate(12deg) scale(1.08);
}

.contact-item h5 {
    color: #FFD54A;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    color: #fff;
    margin: 0;
    line-height: 1.7;
    font-size: 13px;
    font-weight: 600;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px) {
    .logo-img {
        width: 65px;
    }

}

@media(max-width:767px) {
    .custom-navbar {
        padding: 8px 0;
    }

    .logo-img {
        width: 58px;
        border: 1px solid #8bc137;
        border-radius: 8px;
        box-shadow: 0px 0px 15px #309d5040;
    }

    /* .nav-text{
        display: block;
    } */

}

/* navbar-section-css-end */




/* banner-section-css-start */

.banner-section {
    width: 100%;
    position: relative;
}

.banner-slider .banner-item {
    width: 100%;
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Banner Images */

.banner-one {
    background-image: url("../img/banner/banner01.webp");
}

.banner-two {
    background-image: url("../img/banner/banner02.webp");
}

.banner-three {
    background-image: url("../img/banner/banner03.jpeg");
}

/* Overlay */

.banner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .18));
}

/*====================================
        CONTENT
=====================================*/

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 50px;
}

.banner-content span {
    display: inline-block;
    background: #ffffff20;
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.banner-content h5 {
    color: #A8E63D;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-content p {
    color: #f3f3f3;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* Button */

.banner-btn {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Filled Button */

.theme-btn {
    position: relative;
    display: inline-block;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    background: linear-gradient(90deg, #2EA44F, #B7DB10);
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .45s ease;
    z-index: -1;
}

.theme-btn:hover::before {
    left: 0;
}

.theme-btn:hover {
    color: #2EA44F;
    border-color: #fff;
    transform: translateY(-4px);
}


/* Outline */

.theme-btn-outline {
    position: relative;
    display: inline-block;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}

.theme-btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2EA44F, #B7DB10);
    transition: .45s ease;
    z-index: -1;
}

.theme-btn-outline:hover::before {
    left: 0;
}

.theme-btn-outline:hover {
    color: #fff;
    border-color: #2EA44F;
    transform: translateY(-4px);
}


/*====================================
        NAVIGATION
=====================================*/


.banner-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.banner-slider .owl-prev,
.banner-slider .owl-next {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .15) !important;
    backdrop-filter: blur(8px);
    color: #fff !important;
    transition: .35s;
}

.banner-slider .owl-prev {
    left: 40px;
}

.banner-slider .owl-next {
    right: 40px;
}

.banner-slider .owl-prev:hover,
.banner-slider .owl-next:hover {
    background: #63B32E !important;
}


/*====================================
        DOTS
=====================================*/

.banner-slider .owl-dots {
    position: absolute;
    bottom: 35px;
    width: 100%;
    text-align: center;
}

.banner-slider .owl-dot span {
    width: 14px !important;
    height: 14px !important;
    background: #fff !important;
    opacity: .5;
    transition: .3s;
}

.banner-slider .owl-dot.active span {
    width: 36px !important;
    border-radius: 20px;
    background: #63B32E !important;
    opacity: 1;
}

.banner-section {
    width: 100%;
    overflow: hidden;
}

.banner-slider {
    overflow: hidden;
}

.banner-slider .owl-stage-outer {
    overflow: hidden;
}

.banner-slider .owl-stage {
    display: flex;
}

.banner-slider .owl-item {
    overflow: hidden;
}

/*====================================
        ANIMATION
=====================================*/

.banner-slider .active .banner-content span {
    animation: fadeUp .7s;
}

.banner-slider .active h1 {
    animation: fadeUp .9s;
}

.banner-slider .active h5 {
    animation: fadeUp 1.1s;
}

.banner-slider .active p {
    animation: fadeUp 1.3s;
}

.banner-slider .active .banner-btn {
    animation: fadeUp 1.5s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {

        opacity: 1;
        transform: translateY(0);
    }

}

/*====================================
        TABLET
=====================================*/

@media(max-width:991px) {

    .banner-slider .banner-item {
        height: 620px;
    }

    .banner-content {
        max-width: 100%;
        margin-left: 0px;
    }

    .banner-content h1 {
        font-size: 46px;
    }

    .banner-content h5 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-slider .owl-prev {
        left: 15px;
    }

    .banner-slider .owl-next {
        right: 15px;
    }

}

/*====================================
        MOBILE
=====================================*/

@media(max-width:767px) {
    .banner-slider .banner-item {
        height: 400px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner-content h5 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .banner-btn {
        justify-content: center;
    }

    .theme-btn, .theme-btn-outline {
        padding: 10px 24px;
        font-size: 13px;
    }

    .banner-slider .owl-nav {
        display: none;
    }

    .banner-content span {
        padding: 8px 20px;
        font-size: 12px;
        margin-bottom: 10px;
    }

}


/* banner-section-css-end */


/* about-highlight-section-css-start */


.about-highlight-section {

    position: relative;
    margin-top: -70px;
    z-index: 20;
    padding-bottom: 80px;

}

.about-highlight-section .container {

    background: linear-gradient(90deg, #2C9B51 0%, #57AC45 50%, #9AC733 100%);
    border-radius: 24px;
    padding: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);

}

/*====================================
VIDEO
====================================*/

.video-box {

    position: relative;
    overflow: hidden;
    border-radius: 20px;

}

.video-box img {

    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: .6s;

}

.video-box:hover img {

    transform: scale(1.08);

}

.video-play-btn {

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    color: #2C9B51;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    transition: .35s;
    box-shadow: 0 0 0 15px rgba(255, 255, 255, .25);

}

.video-play-btn:hover {

    background: #0B2545;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.08);

}

/* Pulse Animation */

.video-play-btn::before {

    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .45);
    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(.8);
        opacity: 1;

    }

    100% {

        transform: scale(1.4);
        opacity: 0;

    }

}

/*====================================
CONTENT
====================================*/

.section-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-content h2 {
    color: #fff;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.about-content h2 span {
    color: #FFE56A;
}

.about-content p {
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/*====================================
FEATURES
====================================*/
.feature-list {
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff2e;
    padding: 4%;
    border-radius: 8px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: #2C9B51;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-item h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.7;
}

/*====================================
BUTTON
====================================*/

.about-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-top: 30px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    transition: .4s;
}

.about-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .45s;
    z-index: -1;
}

.about-btn:hover::before {
    left: 0;
}

.about-btn:hover {
    color: #2C9B51;
    transform: translateY(-4px);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px) {

    .about-highlight-section {
        margin-top: 40px;
    }

    .about-highlight-section .container {
        padding: 28px;
    }

    .video-box {
        margin-bottom: 10px;
    }

    .video-box img {
        height: 280px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .feature-list {
        flex-direction: column;
    }

}

@media(max-width:767px) {

    .about-highlight-section {
        margin-top: 35px;
        padding-bottom: 70px;
    }

    .about-highlight-section .container {
        padding: 22px;
    }

    .video-box img {
        height: 220px;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 18px;
    }

    /* .about-content {
        text-align: center;
    } */

    .about-content h2 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .feature-item {
        text-align: left;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-item h5 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .about-btn {
        /* width: 100%; */
        /* text-align: center; */
        margin-top: 15px;
        padding: 8px 30px;
    }

    .section-tag {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 10px;
    }

}


/* about-highlight-section-css-end */

/* service-highlight-section-css-start */

.service-highlight-section {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
}

.service-highlight-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: .45s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.service-highlight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, #2C9B51, #9AC733);
    transition: .45s;
}

.service-highlight-card:hover::before {
    height: 100%;
}

.service-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2C9B51, #57AC45, #9AC733);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: .45s;
}

.service-highlight-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-tag {
    display: inline-block;
    color: #2C9B51;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-highlight-card h4 {
    font-size: 24px;
    color: #0B2545;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-highlight-card p {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 22px;
}

.service-readmore {
    text-decoration: none;
    color: #2C9B51;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .35s;
}

.service-readmore i {
    transition: .35s;
}

.service-readmore:hover {
    color: #0B2545;
}

.service-readmore:hover i {
    transform: translateX(8px);
}

/*=========================
Responsive
=========================*/
@media(max-width:991px) {
    .service-highlight-section {
        padding: 70px 0;
    }

    .service-highlight-card {
        padding: 28px;
    }

}

@media(max-width:767px) {

    .service-highlight-section {
        padding: 20px 0;
    }

    .service-highlight-card {
        text-align: center;
        padding: 20px;
    }

    .service-icon {
        margin: auto auto 8px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 10px;
    }

    .service-tag {
        font-size: 12px;
        margin-bottom: 0px;
    }

    .service-highlight-card h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-highlight-card p {
        color: #000;
        line-height: 1.5;
        font-size: 13px;
        margin-bottom: 5px;
    }

    /* .service-highlight-card h4 {
        font-size: 22px;
    } */

    .service-readmore {
        justify-content: center;
    }

}

/* service-highlight-section-css-end */


/* our-project-section-css-start */


.project-section {
    width: 100%;
    padding: 80px 0;
    background: #f8fbfd;
    overflow: hidden;
}

/*==========================
HEADING
==========================*/

.project-section .section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.project-section .section-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-section .section-title span .serv-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.project-section .section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 12px;
}

.project-section .section-title p {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}

/*==========================
OWL
==========================*/

.project-slider .owl-stage {
    display: flex;
}

.project-slider .owl-item {
    display: flex;
}

.project-item {
    width: 100%;
    padding: 12px;
}

/*==========================
CARD
==========================*/

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

/* Top middle line */

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 10px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    z-index: 10;
    transition: .45s ease;
}

/* Border */

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 10px solid transparent;
    border-radius: 24px;
    pointer-events: none;
    transition: .45s ease;
    z-index: 9;
}

/* Hover */

.project-card:hover {
    box-shadow: 0 22px 45px rgba(0, 0, 0, .15);
}

.project-card:hover::before {
    width: 100%;
}

.project-card:hover::after {
    border-color: #57AC45;
}

/*==========================
IMAGE
==========================*/

.project-img {
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/*==========================
CONTENT
==========================*/

.project-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    z-index: 11;
}

.project-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    transition: .45s;
}

.project-card:hover .project-icon {
    transform: rotateY(180deg);
}

.project-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-content p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

/*==========================
OWL DOTS
==========================*/

.project-slider .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 35px;
}

.project-slider .owl-dot {
    outline: none;
}

.project-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50px;
    background: #cfd8cf !important;
    transition: .35s ease;
}

.project-slider .owl-dot:hover span {
    background: #57AC45 !important;
}

.project-slider .owl-dot.active span {
    width: 38px;
    height: 12px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733) !important;
    box-shadow: 0 5px 15px rgba(44, 155, 81, .35);
}



/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px) {

    .project-section .section-title h2 {
        font-size: 30px;
    }

    .project-img img {
        height: 360px;
    }

}

@media(max-width:767px) {

    .project-section {
        padding: 60px 0;
    }

    .project-section .section-title {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 30px;
    }

    .project-section .section-title span {
        gap: 5px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .project-section .section-title h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .project-section .section-title p {
        font-size: 13px;
        line-height: 1.5;
    }

    .project-img img {
        height: 300px;
    }

    .project-content {
        left: 0px;
        right: 30px;
        bottom: 7px;
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }

    .project-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
        border-radius: 8px;
        margin-bottom: 0px;
    }

    .project-content h4 {
        font-size: 12px;
    }

    .project-content p {
        font-size: 11px;
    }

}


/* our-project-section-css-end */



/* proposal-timeline-css-start */

.proposal-timeline-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/*=========================
Heading
=========================*/

.proposal-timeline-heading {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 0px;
}

.proposal-timeline-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #2C9B51;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.proposal-timeline-heading span .solar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.proposal-timeline-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 15px;
}

.proposal-timeline-heading p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/*=========================
Timeline
=========================*/

.proposal-timeline-wrap {
    position: relative;
    padding: 0px 0 0px;
}

/* Main Line */

.proposal-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 30px;
    background: #d9e7dc;
    transform: translateY(-50%);
    overflow: hidden;
}

.proposal-timeline-line::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    animation: timelineMove 5s linear infinite;
}

@keyframes timelineMove {

    100% {
        left: 100%;
    }

}

/*=========================
Items
=========================*/

.proposal-timeline-item {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.proposal-timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: #0B2545;
    margin: 15px 0;
    transition: .35s;
}

.proposal-timeline-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #2C9B51;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border: 3px solid #fff;
    transition: .45s;
    position: relative;
    z-index: 5;
}

/* Dot */

.proposal-timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: auto;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    border: 5px solid #fff;
    box-shadow: 0 0 0 6px rgba(44, 155, 81, .15);
    position: relative;
    z-index: 5;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }

}

/* Vertical Line */

.proposal-timeline-top .proposal-timeline-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    width: 2px;
    height: 70px;
    background: #2C9B51;
    transform: translateX(-50%);
}

.proposal-timeline-bottom .proposal-timeline-dot::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 2px;
    height: 70px;
    background: #2C9B51;
    transform: translateX(-50%);
}

/* Hover */

.proposal-timeline-item:hover .proposal-timeline-icon {

    transform: translateY(-10px) rotateY(180deg);

    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);

    color: #fff;

    box-shadow: 0 20px 45px rgba(44, 155, 81, .35);

}

.proposal-timeline-item:hover .proposal-timeline-title {

    color: #2C9B51;

}

/*=========================
Button
=========================*/

.proposal-timeline-btn {

    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transition: .4s;
    isolation: isolate;
    border: 2px solid #fff;

}

.proposal-timeline-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .45s;
    z-index: -1;
}

.proposal-timeline-btn span,
.proposal-timeline-btn i {
    position: relative;
    z-index: 2;
}

.proposal-timeline-btn:hover::before {
    left: 0;
}

.proposal-timeline-btn:hover {
    color: #2C9B51;
    border: 2px solid #2C9B51;
}

.proposal-timeline-btn:hover i {
    transform: translateX(6px);
}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .proposal-timeline-heading h2 {
        font-size: 32px;
    }

    .proposal-timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .proposal-timeline-wrap {
        padding: 50px 0;
    }

}

@media(max-width:767px) {

    .proposal-timeline-section {
        padding: 70px 0;
        display: none;
    }

    .proposal-timeline-heading {
        margin-bottom: 40px;
    }

    .proposal-timeline-heading h2 {
        font-size: 28px;
    }

    .proposal-timeline-wrap {
        padding: 0;
    }

    .proposal-timeline-line {
        display: none;
    }

    .proposal-timeline-top,
    .proposal-timeline-bottom {
        row-gap: 30px;
    }

    .proposal-timeline-item {
        padding: 20px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    }

    .proposal-timeline-dot::before,
    .proposal-timeline-dot::after {
        display: none;
    }

    .proposal-timeline-icon {
        margin-bottom: 18px;
    }

    .proposal-timeline-title {
        margin: 15px 0 0;
    }

}


/* proposal-timeline-css-end */


/* proposal-timeline-mobile-css-start */

.proposal-timeline-mobile {
    display: none;
}

@media(max-width:767px) {

    .proposal-timeline-mobile {
        display: block;
        padding: 70px 0;
        background: #fff;
        overflow: hidden;
    }

    /* Heading */

    .proposal-mobile-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .proposal-mobile-heading span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #2C9B51;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .proposal-mobile-heading .solar-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2C9B51, #9AC733);
        color: #fff;
        box-shadow: 0 10px 25px rgba(44, 155, 81, .25);
    }

    .proposal-mobile-heading h2 {
        margin: 8px 0 6px;
        font-size: 22px;
        font-weight: 800;
        color: #0B2545;
    }

    .proposal-mobile-heading p {
        color: #000;
        line-height: 1.6;
        font-size: 13px;
    }

    /* Cards */

    .proposal-mobile-card {
        position: relative;
        background: #fff;
        border-radius: 22px;
        text-align: center;
        padding: 20px 12px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        transition: .4s;
        border: 1px solid rgba(44, 155, 81, .08);
    }

    .proposal-mobile-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    }

    .proposal-mobile-icon {
        width: 60px;
        height: 60px;
        margin: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2C9B51, #9AC733);
        color: #fff;
        font-size: 24px;
        box-shadow: 0 12px 30px rgba(44, 155, 81, .30);
        transition: .45s;
    }

    .proposal-mobile-card h5 {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 700;
        color: #0B2545;
        line-height: 1.5;
    }

    .proposal-mobile-card:active {
        transform: translateY(-6px);
    }

    .proposal-mobile-card:active .proposal-mobile-icon {
        transform: rotateY(180deg);
    }

    /* Button */

    .proposal-mobile-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 22px;
        border-radius: 50px;
        background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 15px 35px rgba(44, 155, 81, .25);
        font-size: 13px;
    }

    .proposal-mobile-btn i {
        transition: .35s;
    }

    .proposal-mobile-btn:active i {
        transform: translateX(5px);
    }

}


/* proposal-timeline-mobile-css-end */




/* why-choose-us-section-css-start */

.whychoose-section {
    width: 100%;
    padding: 120px 0;
    background:
        linear-gradient(rgba(5, 35, 25, .72), rgba(5, 35, 25, .72)),
        url("../img/solar-background.webp") center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.whychoose-content {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.whychoose-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD84A;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.whychoose-content span .why-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.whychoose-content h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.whychoose-content h2 span {
    color: #9AC733;
}

.whychoose-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.whychoose-list {
    padding: 0;
    margin: 0 0 35px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.whychoose-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    transition: .35s;
    font-size: 16px;
}

.whychoose-list li .why-list-icon {
    color: #9AC733;
    font-size: 18px;
    margin-top: 0px;
}

.whychoose-list li:hover {
    transform: translateX(10px);
}

.whychoose-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.whychoose-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .45s;
    z-index: -1;
}

.whychoose-btn:hover {
    color: #2C9B51;
}

.whychoose-btn:hover::before {
    left: 0;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .whychoose-section {
        padding: 70px 0;
        /* background-attachment: scroll; */
    }

    .whychoose-content {
        padding: 35px;
    }

    .whychoose-content h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .whychoose-section {
        padding: 60px 0;
    }

    .whychoose-content {
        padding: 25px;
    }

    .whychoose-content h2 {
        font-size: 18px;
    }

    .whychoose-content p {
        line-height: 1.5;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .whychoose-list li {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .whychoose-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 30px;
        font-size: 14px;
    }

    .whychoose-list {
        margin: 0 0 10px;
        grid-template-columns: repeat(2, 1fr);
    }


}


/* why-choose-us-section-css-end */


/* faq-section-css-start */

/*==========================
FAQ SECTION
==========================*/

.faq-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.faq-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 20px;
}

/*==========================
Accordion
==========================*/

.custom-faq {
    padding: 8px 0;
}

.custom-faq .accordion-item {
    border: 2px solid #e4e7df;
    background: #fff;
    border-radius: 45px;
    margin-bottom: 22px;
    overflow: visible;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    transition: .4s;
}

.custom-faq .accordion-item:last-child {
    margin-bottom: 0;
}

/* .custom-faq .accordion-button{
    background:transparent;
    border:none;
    box-shadow:none;
    padding:24px 28px;
    border-radius:45px;
    display:flex;
    align-items:flex-start;
    gap:20px;
} */
.custom-faq .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 15px 28px;
    border-radius: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

/* .accordion-header{
    font-size: 14px;
} */

/*==========================
Active Item
==========================*/

.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    border-color: transparent;
    box-shadow: 0 18px 45px rgba(44, 155, 81, .30);
}

.custom-faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

.custom-faq .accordion-button.collapsed {
    color: #0B2545;
}

/*==========================
Number
==========================*/

.faq-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f2f3ef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: .35s;
}

.accordion-button:not(.collapsed) .faq-number {
    background: #fff;
    color: #2C9B51;
}

/*==========================
Text
==========================*/
/* 
.custom-faq h5{
    margin:0;
    font-size:23px;
    font-weight:800;
    line-height:1.35;
} */
.custom-faq h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

/* .custom-faq p{
    margin:10px 0 0;
    font-size:16px;
    line-height:1.8;
} */
.custom-faq p {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.5;
}

.accordion-button:not(.collapsed) p {
    color: #fff;
}

.custom-faq .accordion-body {
    padding: 0 30px 28px 104px;
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
}

/*==========================
Arrow
==========================*/

.custom-faq .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
    transition: .35s;
    filter: brightness(0) saturate(100%) invert(47%) sepia(87%) saturate(474%) hue-rotate(71deg);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
}

/*==========================
Hover
==========================*/

.custom-faq .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
}

/*==========================
Image
==========================*/

.faq-img {
    max-width: 100%;
    animation: faqFloat 4s ease-in-out infinite;
}

@keyframes faqFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/*==========================
Tablet
==========================*/

@media(max-width:991px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading h2 {
        font-size: 38px;
    }

    .custom-faq h5 {
        font-size: 20px;
    }

    .custom-faq .accordion-body {
        padding: 0 25px 24px 95px;
    }

    .faq-img {
        margin-top: 40px;
    }

}

/*==========================
Mobile
==========================*/

@media(max-width:767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-heading {
        text-align: center;
    }

    .faq-heading h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .custom-faq .accordion-item {
        border-radius: 28px;
        margin-bottom: 18px;
    }

    .custom-faq .accordion-button {
        padding: 18px;
        gap: 14px;
        border-radius: 28px;
    }

    .faq-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .custom-faq h5 {
        font-size: 17px;
    }

    .custom-faq p {
        font-size: 14px;
        line-height: 1.7;
    }

    .custom-faq .accordion-body {
        padding: 0 20px 22px;
        font-size: 14px;
    }

    .faq-img {
        margin-top: 35px;
    }

}

/* faq-section-css-end */

/* counter-section-css-start */

.counter-section {
    width: 100%;
    padding: 45px 0;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    overflow: hidden;
}

.counter-box {
    text-align: center;
    color: #fff;
    transition: .35s;
}

.counter-box {
    text-align: center;
    color: #fff;
    transition: .35s;
    padding: 20px;
    background: #ffffff26;
    border-radius: 10px;
}

.counter-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    font-size: 28px;
    transition: .35s;
}

.counter-box:hover .counter-icon {
    transform: rotateY(180deg);
    background: #fff;
    color: #2C9B51;
}

.counter-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.counter-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: .95;
}

@media(max-width:991px) {

    .counter-section {
        padding: 40px 0;
    }

    .counter-box {
        margin-bottom: 15px;
    }

}

@media(max-width:767px) {

    .counter-section {
        padding: 35px 0;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .counter-box h2 {
        font-size: 20px;
    }

    .counter-box p {
        font-size: 13px;
    }

}

/* counter-section-css-end */


/* team-member-section-css-start */

.team-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/* Heading */

.team-heading {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.team-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.team-heading .solar-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.team-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    margin: 8px 0;
}

.team-heading p {
    color: #000;
    line-height: 1.7;
    font-size: 14px;
}

/* Card */

.team-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(44, 155, 81, .08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.team-img {
    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #eaf8ee;
    transition: .4s;
}

.team-card:hover .team-img {
    border-color: #63B32E;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.team-card:hover img {
    transform: scale(1.08);
}

.team-card h4 {
    margin-top: 25px;
    font-size: 22px;
    color: #0B2545;
    font-weight: 700;
}

.team-card span {
    display: inline-block;
    margin-top: 10px;
    background: #eef8f2;
    color: #2C9B51;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Owl */

.team-slider .owl-stage {
    padding: 15px 0;
}

.team-slider .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.team-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #cfd8dc !important;
    margin: 5px;
    transition: .3s;
}

.team-slider .owl-dot.active span {
    width: 36px;
    border-radius: 20px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733) !important;
}

/* Responsive */

@media(max-width:991px) {
    .team-heading h2 {
        font-size: 28px;
    }

}

@media(max-width:767px) {
    .team-section {
        padding: 60px 0;
    }

    .team-heading h2 {
        font-size: 24px;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .team-card {
        padding: 20px 18px;
    }

    .team-heading {
        margin-bottom: 15px;
    }

    .team-card h4 {
        margin-top: 10px;
        font-size: 20px;
    }

}

/* team-member-section-css-end */





/* mission-vision-section-start */

.missionvision-section {
    width: 100%;
    padding: 80px 0;
    background: #f8fbfd;
    overflow: hidden;
}

.missionvision-heading {
    max-width: 700px;
    margin: 0 auto 30px;
}

.missionvision-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.missionvision-heading span .mi-vi-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.missionvision-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 10px;
}

.missionvision-heading p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.missionvision-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.missionvision-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transition: .4s;
}

.missionvision-card:hover::before {
    width: 100%;
}

.missionvision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.missionvision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    color: #fff;
    font-size: 32px;
    transition: .4s;
}

.missionvision-card:hover .missionvision-icon {
    transform: rotateY(180deg);
}

.missionvision-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 15px;
}

.missionvision-card p {
    margin: 0;
    color: #000;
    line-height: 1.9;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px) {

    .missionvision-section {
        padding: 70px 0;
    }

    .missionvision-heading h2 {
        font-size: 36px;
    }

}

@media(max-width:767px) {

    .missionvision-section {
        padding: 60px 0;
    }

    .missionvision-heading {
        margin-bottom: 35px;
    }

    .missionvision-heading h2 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .missionvision-card {
        padding: 25px;
    }

    .missionvision-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .missionvision-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .missionvision-card p {
        font-size: 13px;
        line-height: 1.5;
    }

}

/* mission-vision-section-end */


/* about-energy-section-start */

.about-energy-section {
    width: 100%;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.about-energy-left {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    /* animation: aboutFloat 4s ease-in-out infinite; */
}

/* Floating Animation */

@keyframes aboutFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/*=========================
Glass Badge
=========================*/

.about-rating {
    position: absolute;
    top: 32%;
    right: 12%;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    font-weight: 700;
    color: #0B2545;
    animation: badgeMove 3s infinite;
    display: flex;
}

.about-rating .rating-icon {
    color: #FFC107;
    margin-right: 8px;

}

@keyframes badgeMove {

    50% {

        transform: translateY(-8px);

    }

}

/*=========================
Capacity Bars
=========================*/

.about-capacity {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 18px;
}

.capacity-bar {
    width: 78px;
    border-radius: 40px;
    background: linear-gradient(180deg, #9AC733, #2C9B51);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 15px 0;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    animation: barMove 3s infinite;
}

.capacity-bar.small {
    height: 110px;
}

.capacity-bar.medium {
    height: 145px;
}

.capacity-bar.large {
    height: 190px;
}

.capacity-line {
    /* height: 10px; */
    font-size: 24px;
}

.capacity-bar .capacity-icon {
    font-size: 22px;
}

@keyframes barMove {

    50% {
        transform: translateY(-8px);
    }

}

/*=========================
Right Card
=========================*/

.about-energy-card {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    max-width: 480px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
    position: relative;
}

.about-energy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.about-energy-card span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-energy-card span i {
    font-size: 18px;
}

.about-energy-card h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-energy-card p {
    color: #000;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-energy-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-energy-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #0B2545;
}

.about-energy-card ul li i {
    color: #2C9B51;
}

/*=========================
Button
=========================*/
.about-energy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transition: .4s;
}

.about-energy-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 18px 35px rgba(44, 155, 81, .35);
}

.about-energy-btn i {
    transition: .35s;
}

.about-energy-btn:hover i {
    transform: translateX(5px);
}

/*=========================
Responsive
=========================*/
@media(max-width:991px) {

    .about-energy-section {
        padding: 70px 0;
    }

    .about-energy-left {
        margin-bottom: 40px;
    }

    .about-rating {
        right: 5%;
        top: 28%;
        font-size: 14px;
    }

    .about-energy-card {
        max-width: 100%;
    }

    .about-energy-card h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .about-energy-section {
        padding: 60px 0;
    }

    .about-rating {
        position: static;
        margin: 20px auto;
        width: max-content;
    }

    .about-capacity {
        position: relative;
        justify-content: center;
        margin-top: 25px;
        bottom: 0;
    }

    .capacity-bar {
        width: 60px;
    }

    .capacity-bar.small {
        height: 106px;
    }

    .capacity-bar.medium {
        height: 120px;
    }

    .capacity-bar.large {
        height: 150px;
    }

    .about-energy-card {
        padding: 28px;
    }

    .about-energy-card h2 {
        font-size: 20px;
        margin: 0px 0px 5px;
    }

    .about-energy-card ul li {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .about-energy-btn {
        gap: 10px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-energy-card ul {
        margin: 0 0 20px;
    }

    .about-energy-card p {
        line-height: 1.5;
        font-size: 13px;
        margin-bottom: 15px;
    }


}

/* about-energy-section-end */


/* marquee-section-css-start */

.marquee-section {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marqueeMove 28s linear infinite;
}

.marquee-content span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 18px;
    letter-spacing: .3px;
}

.marquee-icon {
    color: #FFD84A;
    font-size: 24px;
    margin: 0 12px;
    animation: sunRotate 4s linear infinite;
}

@keyframes sunRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* .marquee-content .sparkles-icon {
    color: #FFD84A;
    font-size: 16px;
    margin: 0 6px;
    animation: sparkle 1.8s ease-in-out infinite;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
} */

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.35) rotate(180deg);
        opacity: .7;
    }
}

/* Responsive */

@media(max-width:767px) {

    .marquee-section {
        padding: 12px 0;
    }

    .marquee-content span {
        font-size: 13px;
        margin: 0 14px;
    }

    .marquee-content i {
        font-size: 14px;
    }

    .marquee-icon {
        font-size: 16px;
        margin: 0 8px;
    }


}

/* marquee-section-css-end */


/* testimonial-section-css-start */

.testimonial-section {
    width: 100%;
    padding: 80px 0;
    background: #f8fbfd;
}

.testimonial-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.testimonial-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-heading span .tst-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.testimonial-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 10px;
}

.testimonial-heading p {
    color: #000;
    font-size: 14px;
}

.testimonial-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid #e6ece8;
    text-align: center;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.quote-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.testimonial-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-card h5 {
    margin: 0;
    color: #0B2545;
    font-weight: 700;
    font-size: 17px;
}

/* Owl Dots */

.testimonial-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-slider .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: #d7d7d7 !important;
    transition: .35s;
}

.testimonial-slider .owl-dot.active,
.testimonial-slider .owl-dot:hover {
    width: 35px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733) !important;
}

/* Responsive */

@media(max-width:991px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-heading h2 {
        font-size: 32px;
    }

}

@media(max-width:767px) {

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-heading {
        margin-bottom: 10px;
    }

    .testimonial-heading h2 {
        font-size: 24px;
        margin: 0;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-card p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

}

/* testimonial-section-css-end */

/* footer-section-css-start */

.footer-section {
    background: #0B2545;
    padding: 70px 0 0;
    color: #fff;
}

.footer-widget h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

/* Logo */

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
}

.footer-widget p {
    color: #d7d7d7;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Social */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transition: .35s;
}

.footer-social a:hover {
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transform: translateY(-5px);
}

/* Links */

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    text-decoration: none;
    color: #d9d9d9;
    transition: .35s;
}

.footer-widget ul li a:hover {
    color: #9AC733;
    padding-left: 8px;
}

/* Contact */

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    color: #fff;
    flex-shrink: 0;
}

.footer-contact span {
    color: #d7d7d7;
    line-height: 1.7;
}

/* Bottom */

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 0;
    background-color: #000;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    color: #d9d9d9;
    font-size: 15px;
}

.footer-bottom a {
    color: #9AC733;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .footer-section {
        padding-top: 60px;
        /* padding-left: 10px; */
    }

    .footer-widget {
        margin-bottom: 15px;
    }

}

@media(max-width:767px) {

    .footer-section {
        text-align: center;
    }

    /* .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    } */

    /* .footer-social {
        justify-content: center;
    } */

    .footer-contact li {
        text-align: left;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-logo {
        margin: auto auto 10px;
    }

    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        text-align: left;
    }

    .footer-widget ul {
        text-align: left;
    }

    .footer-widget ul li {
        margin-bottom: 6px;
    }

    .footer-widget {
        margin-bottom: 0px;
        text-align: left;
    }

    .footer-widget p {
        line-height: 1.5;
        margin-bottom: 13px;
        font-size: 12px;
    }





}

/* footer-section-css-end */



/* about-us-banner-css-start */

.about-us-banner {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2545 0%, #2C9B51 45%, #57AC45 75%, #9AC733 100%);
}

/* Dark Overlay */

.about-us-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 25, 18, .28);
    z-index: 1;
}

/* Solar Glow */

.about-us-banner::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    top: -70px;
    right: 8%;
    background: radial-gradient(circle, #FFD84A 0%, rgba(255, 216, 74, .9) 25%, rgba(255, 216, 74, .25) 55%, transparent 75%);
    animation: sunGlow 5s ease-in-out infinite;
    z-index: 1;
}

/* Solar Rays */

.about-us-banner .container::before {
    content: "";
    position: absolute;
    right: 3%;
    top: -115px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, .25);
    animation: rotateSun 25s linear infinite;
    z-index: 1;
}

/* Floating Particles */

.about-us-banner .container::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #FFD84A 2px, transparent 3px),
        radial-gradient(circle, #ffffff 2px, transparent 3px),
        radial-gradient(circle, #9AC733 2px, transparent 3px);
    background-size: 180px 180px;
    background-position: 0 0, 90px 90px, 40px 120px;
    animation: particleMove 18s linear infinite;
    opacity: .35;
    z-index: 1;
}

/* Content */

.about-content {
    position: relative;
    z-index: 5;
}

.about-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

/*==============================
Glass Breadcrumb
==============================*/

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    margin: 0 auto;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    white-space: nowrap;
}

.breadcrumb-box a,
.breadcrumb-box span {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
}

.breadcrumb-box a:hover {
    color: #FFD84A;
}

.breadcrumb-box i {
    color: #FFD84A;
    font-size: 12px;
}

.breadcrumb-box .active {
    color: #FFD84A;
    font-weight: 700;
}

.breadcrumb-box .breadcrumb-arrow {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #FFD84A;
    flex-shrink: 0;
    font-size: 12px;
    line-height: 1;
}

.breadcrumb-arrow i {
    font-size: 12px;
    line-height: 1;
}

.about-us-banner .breadcrumb-box .breadcrumb-arrow svg {
    position: static;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* Responsive */

@media(max-width:767px) {

    .breadcrumb-box {
        padding: 10px 20px;
        gap: 8px;
        font-size: 13px;
        white-space: nowrap;
    }

    .breadcrumb-box a,
    .breadcrumb-box span {
        font-size: 13px;
    }

}




/* Bottom Wave */

.about-us-banner .wave {
    display: none;
}

.about-us-banner svg {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* Animations */

@keyframes rotateSun {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes sunGlow {

    0%, 100% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

}

@keyframes particleMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(120px);
    }

}

/* Responsive */

@media(max-width:991px) {

    .about-us-banner {
        padding: 75px 0;
    }

    .about-content h1 {
        font-size: 38px;
    }

    .about-us-banner::after {
        width: 180px;
        height: 180px;
    }

    .about-us-banner .container::before {
        width: 250px;
        height: 250px;
    }

}

@media(max-width:767px) {

    .about-us-banner {
        padding: 55px 0;
    }

    .about-content h1 {
        font-size: 30px;
    }

    .breadcrumb-box {
        gap: 6px;
        flex-wrap: wrap;
    }

    .about-us-banner::after {
        width: 130px;
        height: 130px;
        right: -20px;
        top: -20px;
    }

    .about-us-banner .container::before {
        width: 170px;
        height: 170px;
        right: -30px;
        top: -40px;
    }

}

/* about-us-banner-css-end */

/* about-main-section-css-start */

.main-about-section {
    padding: 120px 0;
    background: #f8fbfd;
    overflow: hidden;
}


.main-about-image {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-img {
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.about-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

.img-one {
    margin-top: 40px;
}

.img-two {
    margin-bottom: 40px;
}

.img-three {
    margin-top: -10px;
}

.img-four {
    margin-top: 30px;
}

.about-experience {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C9B51, #57AC45, #9AC733);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(44, 155, 81, .35);
    animation: aboutFloat 4s ease-in-out infinite;
    z-index: 5;
}

.about-experience h3 {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-experience span {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

@keyframes aboutFloat {

    0%, 100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -58%);
    }

}

@media(max-width:991px) {

    .main-about-image {
        margin-bottom: 50px;
    }

    .about-img img {
        height: 200px;
    }

}

@media(max-width:767px) {

    .about-grid {
        gap: 12px;
    }

    .about-img img {
        height: 150px;
    }

    .about-experience {
        width: 95px;
        height: 95px;
        border-width: 5px;
    }

    .about-experience h3 {
        font-size: 24px;
    }

    .about-experience span {
        font-size: 11px;
    }

    .img-one,
    .img-two,
    .img-three,
    .img-four {
        margin: 0;
    }

}




.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #2C9B51;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-tag .main-about {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    color: #fff;
}

.main-about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 18px;
    line-height: 1.2;
}

.main-about-content h2 span {
    color: #2C9B51;
}

.main-about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    color: #2C9B51;
    font-size: 18px;
}

.about-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #0B2545;
}

.about-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: #0B2545;
    transition: .4s;
    z-index: -1;
}

.about-main-btn:hover::before {
    width: 100%;
}

.about-main-btn:hover {
    color: #fff;
}

.about-main-btn i {
    transition: .35s;
}

.about-main-btn:hover i {
    transform: translateX(6px);
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px) {

    .main-about-section {
        padding: 70px 0;
    }

    .main-about-content {
        margin-top: 20px;
    }

    .main-about-content h2 {
        font-size: 34px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:767px) {

    .main-about-section {
        padding: 80px 0;
    }

    .main-about-content {
        text-align: center;
    }

    .about-tag {
        justify-content: center;
        margin-bottom: 8px;
    }

    .main-about-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .main-about-content p {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .about-feature {
        justify-content: center;
        text-align: left;
        font-size: 14px;
    }

    .about-main-btn {
        width: 100%;
        justify-content: center;
    }

    .about-experience {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-feature span {
        font-size: 13px;
    }

    .about-main-btn {
        gap: 10px;
        padding: 10px 36px;
        font-size: 14px;
    }

}

/* about-main-section-css-end */


/* main-mission-vision-section-start */

.main-mission-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2545 0%, #1d6c5a 35%, #2C9B51 70%, #9AC733 100%);
}

/* Glow */

.main-mission-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: -180px;
    right: -120px;
    background: rgba(255, 255, 255, .08);
    filter: blur(20px);
}

.main-mission-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
    background: rgba(255, 216, 74, .12);
    filter: blur(15px);
}

/* Heading */

.main-mission-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.main-mission-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD84A;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.main-mission-heading span i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.main-mission-heading h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 0px;
}

.main-mission-heading h2 span {
    color: #FFD84A;
    font-size: 34px;
    font-weight: 800;
}

.main-mission-heading p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.8;
}

/* Glass Card */

.mission-glass-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    transition: .45s;
}

.mission-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
    border-color: rgba(255, 216, 74, .45);
}

/* Icon */

.mission-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #2C9B51, #57AC45, #9AC733);
    box-shadow: 0 10px 25px rgba(44, 155, 81, .35);
    transition: .4s;
}

.mission-glass-card:hover .mission-icon {
    transform: rotateY(180deg);
}

.mission-glass-card h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.mission-glass-card p {
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .main-mission-section {
        padding: 70px 0;
    }

    .main-mission-heading h2 {
        font-size: 34px;
    }

    .mission-glass-card {
        padding: 30px;
    }

}

@media(max-width:767px) {

    .main-mission-section {
        padding: 55px 0;
    }

    .main-mission-heading {
        margin-bottom: 35px;
    }

    .main-mission-heading h2 {
        font-size: 24px;
    }

    .main-mission-heading h2 span {
        font-size: 24px;
    }

    .main-mission-heading p {
        font-size: 12px;
        line-height: 1.5;
    }

    .mission-glass-card {
        padding: 25px;
        border-radius: 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .mission-glass-card h3 {
        font-size: 24px;
    }

    .mission-glass-card p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/* main-mission-vision-section-end */

/* gallery-section-css-start */

.gallery-section {
    width: 100%;
    padding: 80px 0;
    background: #f8fbfd;
    overflow: hidden;
}

/* Heading */

.gallery-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.gallery-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-heading span .gallery-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.gallery-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 5px;
}

.gallery-heading p {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
}

/* Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Item */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .6s;
}

/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(44, 155, 81, .25), rgba(44, 155, 81, .75));
    opacity: 0;
    transition: .45s;
}

.gallery-overlay i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #2C9B51;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transform: scale(.5);
    transition: .45s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive */

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-heading h2 {
        font-size: 32px;
    }

}

@media(max-width:767px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item img {
        height: 160px;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 22px;
    }

    .gallery-heading p {
        font-size: 13px;
    }

    .gallery-overlay i {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

}

/* gallery-section-css-end */


/* main-contact-section-css-start */

.main-contact-section {
    width: 100%;
    padding: 90px 0;
    background: linear-gradient(135deg, #0B2545, #2C9B51, #57AC45, #9AC733);
    overflow: hidden;
}

/* Heading */
.contact-heading {
    max-width: 760px;
    margin: 0 auto 40px;
}

.contact-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD84A;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-heading span .con-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.contact-heading h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-heading p {
    color: #e8f5eb;
    line-height: 1.8;
    font-size: 14px;
}

/*=========================
Glass Boxes
=========================*/
.contact-glass-box,
.contact-map-box {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
    transition: .4s;
}

.contact-glass-box:hover,
.contact-map-box:hover {
    transform: translateY(-8px);
}

/*=========================
Contact Content
========================*/
.contact-glass-box h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-glass-box>p {
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.contact-info-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    align-items: start;
    margin-bottom: 22px;
    transition: .35s;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: start;
    justify-content: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
}

.contact-item h5 {
    color: #FFD84A;
    margin-bottom: 6px;
    font-size: 16px;
}

.contact-item span, .contact-item a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
    transition: .3s;
    font-size: 14px;
    font-weight: 600;
}

.contact-item a:hover {
    color: #FFD84A;
}

/*=========================
MAP
=========================*/
.contact-map-box {
    padding: 15px;
}

.contact-map-box iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 18px;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .main-contact-section {
        padding: 70px 0;
    }

    .contact-heading {
        margin-bottom: 30px;
    }

    .contact-heading h2 {
        font-size: 34px;
    }

    .contact-map-box iframe {
        height: 400px;
    }

}

@media(max-width:767px) {

    .main-contact-section {
        padding: 60px 0;
    }

    .contact-heading h2 {
        font-size: 20px;
    }

    .contact-glass-box,
    .contact-map-box {
        padding: 25px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .contact-glass-box h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .contact-map-box iframe {
        height: 300px;
    }

    .contact-info-main {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 15px;
        transition: .3s;
    }

    .contact-glass-box>p {
        margin-bottom: 15px;
        line-height: 1.5;
        font-size: 13px;
    }

}

/* main-contact-section-css-end */




/* main-services-section-css-start */


.main-services-section {
    width: 100%;
    padding: 90px 0;
    background: #f8fbfd;
    overflow: hidden;
}

/*=================================
Heading
=================================*/

.main-services-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.main-services-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C9B51;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.main-services-heading span .ser-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    color: #fff;
    font-size: 16px;
}

.main-services-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B2545;
    margin-bottom: 5px;
}

.main-services-heading p {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/*=================================
Card
=================================*/

.main-services-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .45s;
    height: 100%;
    border: 1px solid rgba(44, 155, 81, .10);
}

.main-services-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transform: scaleX(0);
    transition: .45s;
    transform-origin: left;
}

.main-services-card:hover::before {
    transform: scaleX(1);
}

.main-services-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

/*=================================
Image
=================================*/

.main-services-image {
    position: relative;
    /* overflow: hidden; */
}

.main-services-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: .6s;
}

.main-services-card:hover .main-services-image img {
    transform: scale(1.12);
}

/*=================================
Icon
=================================*/

.main-services-icon {
    position: absolute;
    bottom: -28px;
    right: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    border: 5px solid #fff;
    transition: .45s;
    z-index: 5;
}

.main-services-card:hover .main-services-icon {
    transform: rotateY(180deg);
}

/*=================================
Content
=================================*/

.main-services-content {
    padding: 40px 22px 25px;
}

.main-services-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 5px;
    line-height: 1.4;
    min-height: 36px;
}

.main-services-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/*=================================
Whatsapp Button
=================================*/

.main-services-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, #2C9B51, #57AC45, #9AC733);
    transition: .4s;
    isolation: isolate;
}

.main-services-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: #fff;
    transition: .4s;
    z-index: -1;
}

.main-services-btn:hover::before {
    width: 100%;
}

.main-services-btn:hover {
    color: #2C9B51;
}

.main-services-btn i {
    font-size: 18px;
    transition: .35s;
}

.main-services-btn:hover i {
    transform: translateX(4px);
}

/*=================================
Hover Glow
=================================*/

.main-services-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: 0 0 0 rgba(44, 155, 81, .15);
    transition: .45s;
    pointer-events: none;
}

.main-services-card:hover::after {
    box-shadow: 0 0 45px rgba(44, 155, 81, .20);
}

/*=================================
Responsive
=================================*/

@media(max-width:1199px) {

    .main-services-content h3 {
        font-size: 18px;
        min-height: 52px;
    }

}

@media(max-width:991px) {

    .main-services-section {
        padding: 75px 0;
    }

    .main-services-heading {
        margin-bottom: 45px;
    }

    .main-services-heading h2 {
        font-size: 34px;
    }

    .main-services-image img {
        height: 220px;
    }

}

@media(max-width:767px) {

    .main-services-section {
        padding: 60px 0;
    }

    .main-services-heading h2 {
        font-size: 22px;
    }

    .main-services-heading p {
        font-size: 13px;
        line-height: 1.5;
    }

    .main-services-card {
        border-radius: 18px;
    }

    .main-services-image img {
        height: 210px;
    }

    .main-services-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
        bottom: -25px;
    }

    .main-services-content {
        padding: 36px 18px 20px;
    }

    .main-services-content h3 {
        font-size: 18px;
        min-height: auto;
    }

    .main-services-content p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .main-services-btn {
        padding: 12px;
        font-size: 13px;
    }

}

/* main-services-section-css-end */


















/* whatsapp-widget-css-start */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    z-index: 9999;

    background: linear-gradient(90deg, #2C9B51 0%, #57AC45 50%, #9AC733 100%);
    box-shadow: 0 10px 25px rgba(44, 155, 81, .45);

    animation: whatsappBounce 2s infinite;
    transition: .35s ease;
}

/* Ripple Effect */
.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(87, 172, 69, .6);
    animation: ripple 2s infinite;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

/* Hover */
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(44, 155, 81, .55);
}

/* Bounce Animation */
@keyframes whatsappBounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* Ripple Animation */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile */
@media(max-width:767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        right: 15px;
        bottom: 80px;
    }
}

/* whatsapp-widget-css-end */

/* top_to_bottam-css-start */

#scroll {
    position: fixed;
    right: 24px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    display: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 9999;
    text-indent: -9999px;


    background: linear-gradient(90deg, #0A729F 0%, #2C9B51 100%);
    box-shadow: 0 10px 25px rgba(44, 155, 81, 0.35);
    transition: all .35s ease;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    /* background: linear-gradient(90deg, #0A729F 0%, #2C9B51 100%); */
    background: linear-gradient(90deg, #2C9B51 0%, #57AC45 50%, #9AC733 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 114, 159, 0.4);
}

/* Mobile */

@media (max-width:767px) {

    #scroll {
        width: 48px;
        height: 48px;
        right: 15px;
        bottom: 15px;
    }

}

/* top_to_bottam-css-end */





@media (max-width: 576px) {

    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 28%;
    }

    #scroll {
        right: 17px;
        bottom: 16px;
        z-index: 99999;
    }

}



@media (min-width: 576px) and (max-width: 767.98px) {


    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 24%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }

}




@media (min-width: 768px) and (max-width: 991.98px) {

    .breadcrumbs-color {
        padding: 1% 35%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }
}




@media (min-width: 992px) and (max-width: 1199.98px) {


    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }


}