html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.container,
.container-fluid {
    overflow: visible !important;
}

/********** Template CSS **********/
:root {
    --primary: #47b549;
    --light: #F6F7F8;
    --dark: #1A2A36;
}


.color-h{
    color: #47b549;
}
.bg-color{
    background-color: #47b549;
}
.main-btn{
    background-color: #47b549;
    color: #fff;
}
.main-btn:hover{
    background-color: #fff;
    color: #47b549;
    border: 1px solid #47b549;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 20px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ---------------------------- */
/*      MOBILE MENU (ONLY)      */
/* ---------------------------- */
@media (max-width: 991px) {

    #mobileMenu {
        position: fixed;
        top: 0;
        left: -270px;
        height: 100vh;
        width: 270px;
        background: #fff;
        box-shadow: 0 0 15px rgba(0,0,0,0.25);
        transition: left 0.35s ease;
        z-index: 99999;
        padding-top: 20px;
    }

    #mobileMenu.show {
        left: 0;
    }

    /* Mobile Logo */
    #mobileMenu .mobile-logo {
        margin-left: 14px;
        margin-bottom: 11px;
        display: block;
        max-height: 36px;
    }

    /* Close Icon */
    #mobileMenu .close-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #000;
    }

    /* Menu item style */
    #mobileMenu a.nav-item.nav-link {
        color: #000 !important;
        font-weight: 600;
        border-bottom: 1px solid #f0f0f0;
        padding: 14px 20px;
        text-transform: uppercase;
    }

    /* Hide bootstrap collapse menu */
    #navbarCollapse {
        display: none !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    #mobileMenu {
        display: none;
    }
}


/*** Header ***/
 /* Carousel Height */
    .header-carousel,
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img {
        height: 80vh;
    }

    /* Image */
    .header-carousel .owl-carousel-item img {
        width: 100%;
        object-fit: cover;
    }

    /* Overlay */
    .owl-carousel-inner {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        display: flex;
        align-items: center;

        background: rgba(0, 0, 0, 0.55);

        z-index: 2;
    }

    /* Text */
    .owl-carousel-inner h1,
    .owl-carousel-inner p {
        color: #fff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    }

    /* Button */
    .main-btn {
        background: #47b549;
        color: #fff;
        font-weight: 600;
        transition: 0.3s;
    }

    .main-btn:hover {
        background: #fff;
        color: #47b549;
    }

    /* Dots */
    .header-carousel .owl-dots {
        position: absolute;
        top: 50%;
        right: 25px;

        transform: translateY(-50%);

        display: flex;
        flex-direction: column;

        z-index: 10;
    }

    .header-carousel .owl-dots .owl-dot {
        width: 14px;
        height: 14px;

        margin: 7px 0;

        border-radius: 50%;
        background: rgba(255,255,255,0.5) !important;

        transition: 0.3s;
    }

    .header-carousel .owl-dots .owl-dot.active {
        background: #47b549 !important;
        transform: scale(1.3);
    }

    /* Faster Animation */
    .animated {
        animation-duration: 0.6s !important;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {

        .header-carousel,
        .header-carousel .owl-carousel-item,
        .header-carousel .owl-carousel-item img {
            height: 70vh;
        }

        .owl-carousel-inner {
            padding: 20px;
        }

        .owl-carousel-inner h1 {
            font-size: 30px !important;
        }

        .owl-carousel-inner p {
            font-size: 15px !important;
        }

        .header-carousel .owl-dots {
            display: none;
        }

    }


/* Image */
.about-img{
    position: relative;
}

.about-img img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 30px;
}

/* Experience Box */
.exp-box{
    position: absolute;
    left: 25px;
    bottom: 25px;

    background: #47b549;
    color: #fff;

    padding: 18px 25px;
    border-radius: 18px;
}

.exp-box h3{
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 700;
}

.exp-box span{
    font-size: 14px;
}

/* Content */
.about-tag{
    display: inline-block;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #47b549;

    padding: 8px 18px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

.about-content h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;

    margin-bottom: 20px;
    color: #111;
}

.about-content p{
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* Feature Box */
.about-feature{
    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;

    padding: 16px 18px;
    border-radius: 18px;

    border: 1px solid #eee;

    transition: 0.3s;
}

.about-feature:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Proper Round Icon */
.feature-icon{
    min-width: 55px;
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #47b549;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i{
    color: #fff;
    font-size: 20px;
}

.about-feature span{
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

/* Button */
.about-btn{
    background: #47b549;
    color: #fff;

    padding: 14px 35px;
    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.about-btn:hover{
    background: #111;
    color: #fff;
}

/* Mobile */
@media(max-width:991px){

    .about-content{
        margin-top: 20px;
    }

    .about-content h2{
        font-size: 32px;
    }

}

@media(max-width:768px){

    .about-img img{
        height: 350px;
    }

    .about-content h2{
        font-size: 26px;
    }

    .about-feature{
        padding: 14px;
    }

    .feature-icon{
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .feature-icon i{
        font-size: 18px;
    }

}



/* Section */
.cta-section{
    background: #f8f9fa;
}

/* CTA Box */
.cta-box{
    background: linear-gradient(135deg, #47b549, #1c721e);

    padding: 60px;
    border-radius: 30px;

    position: relative;
    overflow: hidden;
}

/* Background Shape */
.cta-box::before{
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    top: -120px;
    right: -100px;
}

/* Tag */
.cta-tag{
    display: inline-block;

    background: rgba(255,255,255,0.15);
    color: #fff;

    padding: 8px 18px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

/* Heading */
.cta-box h2{
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;

    color: #fff;

    margin-bottom: 20px;
}

/* Text */
.cta-box p{
    color: rgba(255,255,255,0.9);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 0;
}

/* Button */
.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #47b549;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 700;
    text-decoration: none;

    transition: 0.3s;
}

.cta-btn:hover{
    background: #111;
    color: #fff;
}

/* Responsive */
@media(max-width:991px){

    .cta-box{
        padding: 45px 30px;
        text-align: center;
    }

    .cta-box h2{
        font-size: 34px;
    }

}

@media(max-width:768px){

    .cta-box{
        padding: 35px 20px;
        border-radius: 20px;
    }

    .cta-box h2{
        font-size: 26px;
    }

    .cta-box p{
        font-size: 15px;
    }

    .cta-btn{
        width: 100%;
        margin-top: 10px;
    }

}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
/* Section */
.counter-section{
    background: #fff;
}

/* Box */
.counter-box{
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

/* Hover Effect */
.counter-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Top Border Animation */
.counter-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #47b549;
    transition: 0.4s;
}

.counter-box:hover::before{
    width: 100%;
}

/* Icon */
.counter-icon{
    width: 80px;
    height: 80px;

    margin: auto;
    margin-bottom: 20px;

    border-radius: 50%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

.counter-icon i{
    font-size: 32px;
    color: #47b549;
}

.counter-box:hover .counter-icon{
    background: #47b549;
    transform: rotateY(180deg);
}

.counter-box:hover .counter-icon i{
    color: #fff;
}

/* Number */
.counter-number{
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* Title */
.counter-box h5{
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

/* Text */
.counter-box p{
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px){

    .counter-box{
        padding: 25px 15px;
    }

    .counter-number{
        font-size: 30px;
    }

    .counter-icon{
        width: 65px;
        height: 65px;
    }

    .counter-icon i{
        font-size: 26px;
    }

    .counter-box h5{
        font-size: 17px;
    }

    .counter-box p{
        font-size: 14px;
    }

}

/*** Project Portfolio ***/
/* ===========================
   Portfolio Filter
=========================== */

#portfolio-flters{
    padding:0;
    margin:0;
}

#portfolio-flters li{
    display:inline-block;
    list-style:none;
    margin:8px 10px;
    padding:8px 18px;
    font-weight:600;
    border:2px solid #e9ecef;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
    color:#333;
}

#portfolio-flters li:hover,
#portfolio-flters li.active{
    background:#47b549;
    border-color:#47b549;
    color:#fff;
}


/* ===========================
   Portfolio Card
=========================== */

.portfolio-item{
    margin-bottom:10px;
}

.portfolio-img{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    height:280px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.portfolio-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
    display:block;
}

/* Dark Overlay */

.portfolio-img::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    transition:.4s;
    z-index:1;
}

/* Zoom Effect */

.portfolio-item:hover img{
    transform:scale(1.08);
}

.portfolio-item:hover .portfolio-img::before{
    opacity:1;
}

/* Eye Button */

.portfolio-btn{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    z-index:2;
    transition:.4s;
    text-decoration:none;
}

.portfolio-item:hover .portfolio-btn{
    opacity:1;
}

.portfolio-btn i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#fff;
    color:#47b549;
    text-align:center;
    font-size:22px;
    transition:.3s;
}

.portfolio-btn i:hover{
    background:#47b549;
    color:#fff;
}


/* ===========================
   Responsive
=========================== */

@media (max-width:991px){

    .portfolio-img{
        height:240px;
    }

}

@media (max-width:767px){

    .portfolio-img{
        height:220px;
    }

    #portfolio-flters li{
        padding:7px 14px;
        font-size:14px;
        margin:5px;
    }

}

@media (max-width:575px){

    .portfolio-img{
        height:200px;
    }

    #portfolio-flters{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    #portfolio-flters li{
        margin:5px;
        font-size:13px;
        padding:6px 12px;
    }

}

@media (max-width:420px){

    .portfolio-img{
        height:180px;
    }

}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

    /* Container for the entire logo section */
.logo-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #f8f9fa;  /* Light background */
}

/* Logo track to hold all logos */
.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

/* Individual logo item */
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    flex-shrink: 0;
}

.logo-item img {
    width: 120px;  /* Logo size */
    object-fit: contain;
    
    transition: filter 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

/* Infinite scroll animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120px * 6)); } /* Adjust to match the number of logos */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-item img {
        width: 80px;  /* Smaller logo size on mobile */
    }

    .logo-track {
        animation-duration: 15s;  /* Faster scroll on mobile */
    }
}

/* become a partner section code  */
/* Fade Animations */
.fadeInLeft {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.fadeInRight {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}


/* Hover Effect for Stats */
.stat-item {
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-6px);
}


/* Icon Background */
.icon-box {
    width: 70px;
    height: 70px;
    background: #47b549; /* Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto;
    transition: 0.3s ease;
}

/* Card Style */
.info-card {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

/* Hover Effects */
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-card:hover .icon-box {
    background: #47b549; /* dark green on hover */
    transform: scale(1.1);
}


.icon-circle {
        width: 60px;
        height: 60px;
        background: #47b549; /* green */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: #fff;
        font-size: 28px;
    }

    .revenue-card {
        transition: all 0.3s ease;
    }

    .revenue-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }


    .partnership-card {
    transition: all 0.35s ease;
    border-radius: 14px;
    cursor: pointer;
}
.partnership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.partnership-card i {
    transition: 0.35s ease;
}
.partnership-card:hover i {
    transform: scale(1.15);
}


.step-circle {
    width: 70px;
    height: 70px;
    background: #d86c2b;
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.step-card p {
    color: #666;
    font-size: 15px;
}

.step-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.hover-card {
        transition: all 0.3s ease;
        border-radius: 12px;
    }

    .hover-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }


        .feature-card {
        transition: all 0.3s ease;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .feature-card .icon-box {
        width: 80px;
        height: 80px;
        background-color: #47b549 !important; /* Green background */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
        font-size: 32px;
        transition: 0.3s ease;
    }

    .feature-card:hover .icon-box {
        background-color: #47b549; /* Darker green on hover */
        transform: scale(1.1);
    }

    .feature-card h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #555;
    }


        .cta-section {

        color: white;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .cta-section p {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }

    .cta-section .btn {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 0 15px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-section .btn-call {
        background-color: #fff;
        color: #128C7E;

    }



    .cta-section .btn-enquire, .cta-section .btn-whatsapp {
        background-color: #25D366; /* WhatsApp color */
        color: white;
        border: none;
    }


    .cta-section .btn-whatsapp {
        background-color: #25D366;
    }

    .cta-section .btn-whatsapp i {
        margin-right: 10px;
    }


     .blog-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-logo {
    width: 269px;
    height: 69px;
    position: absolute;
    top: 15px;
    right: 15px;
    object-fit: cover;
    border: 2px solid #fff;
  }

  .blog-btn i {
    transition: transform 0.3s ease;
  }

  .blog-btn:hover i {
    transform: translateX(5px);
  }

  .hide {
    display: none !important;
  }

  /* sticky */
      .sticky-icons {
        position: fixed;
        left: 15px;
        bottom: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    }

    .sticky-icons.show {
    opacity: 1;
    visibility: visible;
}

    .sticky-icons a {
        width: 55px;
        height: 55px;
        background: #24d366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        text-decoration: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
        transition: 0.3s ease;
    }

    .sticky-icons a:hover {
        transform: scale(1.12);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    }

    /* ----------------------------- */
    /* RESPONSIVE ADJUSTMENTS       */
    /* ----------------------------- */
    @media (max-width: 768px) {
        .sticky-icons {
            left: 15px;
            bottom: 15px;
            gap: 12px;
        }

        .sticky-icons a {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .sticky-icons {
            left: 10px;
            bottom: 15px;
            gap: 10px;
        }

        .sticky-icons a {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }
    }



    /* Section */
.why-choose-us{
    position: relative;
}

/* Tag */
.why-choose-us-tag{
    display: inline-block;

    background: #ffffff;
    color: #47b549;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    padding: 8px 18px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* Title */
.why-choose-us-title{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;

    margin-bottom: 18px;
    color: #111;
}

/* Text */
.why-choose-us-text{
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Card */
.why-choose-us-card{
    background: #fff;

    padding: 35px 25px;
    border-radius: 25px;

    text-align: center;

    border: 1px solid #eee;

    transition: 0.4s;
    height: 100%;

    position: relative;
    overflow: hidden;
}

/* Hover */
.why-choose-us-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Top Border */
.why-choose-us-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #47b549;

    transition: 0.4s;
}

.why-choose-us-card:hover::before{
    width: 100%;
}

/* Icon */
.why-choose-us-icon{
    width: 80px;
    height: 80px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

.why-choose-us-icon i{
    font-size: 30px;
    color: #47b549;
}

/* Hover Icon */
.why-choose-us-card:hover .why-choose-us-icon{
    background: #47b549;
    transform: rotateY(180deg);
}

.why-choose-us-card:hover .why-choose-us-icon i{
    color: #fff;
}

/* Card Title */
.why-choose-us-card h4{
    font-size: 22px;
    font-weight: 700;

    margin-bottom: 15px;
    color: #111;
}

/* Card Text */
.why-choose-us-card p{
    color: #666;
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 0;
}

/* Responsive */
@media(max-width:991px){

    .why-choose-us-title{
        font-size: 34px;
    }

}

@media(max-width:768px){

    .why-choose-us-title{
        font-size: 28px;
    }

    .why-choose-us-card{
        padding: 30px 20px;
    }

    .why-choose-us-icon{
        width: 70px;
        height: 70px;
    }

    .why-choose-us-icon i{
        font-size: 26px;
    }

}


/* =========================================
   MODERN PAGE HEADER
========================================= */

.modern-page-header{
    position: relative;

    width: 100%;
    height: 500px;

    background-image: url('../img/carousel-1.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Dark Overlay */
.modern-page-header-overlay{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 15px;
}

/* Content */
.modern-page-header-content{
    position: relative;
    z-index: 2;

    text-align: center;
}

/* Small Tag */
.modern-page-header-tag{
    display: inline-block;

    background: rgba(255,255,255,0.12);

    color: #fff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

/* Main Title */
.modern-page-header-title{
    font-size: 70px;
    font-weight: 800;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 25px;
}

/* Breadcrumb */
.modern-page-breadcrumb{
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

/* Breadcrumb Links */
.modern-page-breadcrumb a{
    color: rgba(255,255,255,0.85);

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: 0.3s;
}

.modern-page-breadcrumb a:hover{
    color: #47b549;
}

/* Separator */
.modern-page-breadcrumb span{
    color: rgba(255,255,255,0.6);
}

/* Active Page */
.modern-page-breadcrumb p{
    margin: 0;

    color: #47b549;

    font-size: 16px;
    font-weight: 600;
}

/* =========================================
   LARGE DEVICES
========================================= */

@media(max-width:1200px){

    .modern-page-header{
        height: 450px;
    }

    .modern-page-header-title{
        font-size: 58px;
    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .modern-page-header{
        height: 400px;
    }

    .modern-page-header-title{
        font-size: 46px;
    }

    .modern-page-header-tag{
        padding: 8px 20px;
        font-size: 13px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .modern-page-header{
        height: 320px;
    }

    .modern-page-header-overlay{
        padding: 20px;
    }

    .modern-page-header-title{
        font-size: 34px;
        margin-bottom: 18px;
    }

    .modern-page-header-tag{
        font-size: 12px;
        padding: 7px 16px;

        margin-bottom: 18px;
    }

    .modern-page-breadcrumb{
        gap: 8px;
    }

    .modern-page-breadcrumb a,
    .modern-page-breadcrumb p,
    .modern-page-breadcrumb span{
        font-size: 14px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .modern-page-header{
        height: 280px;
    }

    .modern-page-header-title{
        font-size: 28px;
    }

    .modern-page-breadcrumb a,
    .modern-page-breadcrumb p,
    .modern-page-breadcrumb span{
        font-size: 13px;
    }

}





/* Image */
.vision-section-image img{
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 30px;
}

/* Content */
.vision-section-content{
    padding: 10px;
}

/* Tag */
.vision-section-tag{
    display: inline-block;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #47b549;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

/* Title */
.vision-section-content h2{
    font-size: 44px;
    font-weight: 700;

    line-height: 1.3;

    color: #111;

    margin-bottom: 20px;
}

/* Text */
.vision-section-content p{
    font-size: 16px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 30px;
}

/* Button */
.vision-section-btn{
    display: inline-block;

    background: #47b549;
    color: #fff;

    padding: 14px 34px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.vision-section-btn:hover{
    background: #111;
    color: #fff;
}

/* Responsive */
@media(max-width:991px){

    .vision-section-content h2{
        font-size: 34px;
    }

    .vision-section-image img{
        height: 380px;
    }

}

@media(max-width:768px){

    .vision-section-content h2{
        font-size: 28px;
    }

    .vision-section-content p{
        font-size: 15px;
    }

    .vision-section-image img{
        height: 300px;
        border-radius: 20px;
    }

}



/* Section */
.modern-why-choose{
    background: #f8f9fa;
    overflow: hidden;
}

/* Tag */
.modern-why-choose-tag{
    display: inline-block;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #47b549;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* Title */
.modern-why-choose-title{
    font-size: 46px;
    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 18px;

    color: #111;
}

/* Text */
.modern-why-choose-text{
    color: #666;

    font-size: 16px;
    line-height: 1.9;
}

/* Feature Item */
.modern-why-choose-item{
    display: flex;
    align-items: flex-start;

    gap: 18px;

    background: #fff;

    padding: 25px;

    border-radius: 25px;

    margin-bottom: 25px;

    transition: 0.4s;

    border: 1px solid #eee;
}

.modern-why-choose-item:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon */
.modern-why-choose-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #47b549;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

.modern-why-choose-icon i{
    color: #fff;
    font-size: 28px;
}

/* Hover */
.modern-why-choose-item:hover .modern-why-choose-icon{
    transform: rotateY(180deg);
}

/* Text */
.modern-why-choose-item h4{
    font-size: 22px;
    font-weight: 700;

    margin-bottom: 10px;

    color: #111;
}

.modern-why-choose-item p{
    margin-bottom: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}

/* Center Image */
.modern-why-choose-image{
    position: relative;
}

.modern-why-choose-image img{
    width: 100%;
    max-width: 380px;

    height: 520px;

    object-fit: cover;

    border-radius: 40px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Responsive */
@media(max-width:991px){

    .modern-why-choose-title{
        font-size: 36px;
    }

    .modern-why-choose-image{
        margin: 20px 0;
    }

    .modern-why-choose-image img{
        height: 420px;
    }

}

@media(max-width:768px){

    .modern-why-choose-title{
        font-size: 28px;
    }

    .modern-why-choose-text{
        font-size: 15px;
    }

    .modern-why-choose-item{
        padding: 20px;
        border-radius: 20px;
    }

    .modern-why-choose-icon{
        min-width: 60px;
        width: 60px;
        height: 60px;
    }

    .modern-why-choose-icon i{
        font-size: 22px;
    }

    .modern-why-choose-item h4{
        font-size: 18px;
    }

    .modern-why-choose-image img{
        height: 320px;
        border-radius: 25px;
    }

}




/* Section */
.work-process-section{
    background: #f8f9fa;
    overflow: hidden;
}

/* Tag */
.work-process-tag{
    display: inline-block;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #47b549;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* Title */
.work-process-title{
    font-size: 46px;
    font-weight: 700;

    color: #111;

    line-height: 1.3;

    margin-bottom: 18px;
}

/* Text */
.work-process-text{
    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

/* Card */
.work-process-card{
    position: relative;

    background: #fff;

    padding: 40px 25px;

    border-radius: 30px;

    text-align: center;

    border: 1px solid #eee;

    transition: 0.4s;

    height: 100%;

    overflow: hidden;
}

/* Hover */
.work-process-card:hover{
    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Top Border */
.work-process-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 5px;

    background: #47b549;

    transition: 0.4s;
}

.work-process-card:hover::before{
    width: 100%;
}

/* Number */
.work-process-number{
    position: absolute;

    top: 20px;
    right: 20px;

    font-size: 55px;
    font-weight: 800;

    color: #47b54946;

    line-height: 1;
}

/* Icon */
.work-process-icon{
    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

.work-process-icon i{
    font-size: 34px;
    color: #47b549;
}

/* Hover Icon */
.work-process-card:hover .work-process-icon{
    background: #47b549;

    transform: rotateY(180deg);
}

.work-process-card:hover .work-process-icon i{
    color: #fff;
}

/* Card Title */
.work-process-card h4{
    font-size: 24px;
    font-weight: 700;

    color: #111;

    margin-bottom: 15px;
}

/* Card Text */
.work-process-card p{
    color: #666;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 0;
}

/* Responsive */
@media(max-width:991px){

    .work-process-title{
        font-size: 36px;
    }

}

@media(max-width:768px){

    .work-process-title{
        font-size: 28px;
    }

    .work-process-text{
        font-size: 15px;
    }

    .work-process-card{
        padding: 35px 20px;
        border-radius: 22px;
    }

    .work-process-icon{
        width: 75px;
        height: 75px;
    }

    .work-process-icon i{
        font-size: 28px;
    }

    .work-process-card h4{
        font-size: 20px;
    }

    .work-process-number{
        font-size: 45px;
    }

}