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

:root {
    --primary-color: #00CDE5;
    --text-color: #82828a;
    --title-color: #2b2b5e;
    --white-color: #ffffff;
    --black-color: #000000;


}

.container{
    width: 100%;
    max-width: 1260px;
}


body {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.padding-0 {
    padding: 0px !important;
    margin: 0px !important;
}

/* header-start  */

.mm-top-bar {
    background-color: #f6f6f8;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
}

.mm-top-bar ul li a {
    color: var(--text-color);
    line-height: 1.2;
    font-size: 15px;
    font-weight: 500;

}

.mm-top-bar ul li a span {
    padding: 0px 8px;

}

.mm-top-bar ul li a i {
    font-size: 15px;
    color: var(--primary-color);

}

.mm-top-bar ul li a:hover {
    text-decoration: underline;
}

.mm-top-bar .mm-socil-pading {
    padding-left: 50px;

}

.mm-top-bar .mm-socil-pading li i {
    color: var(--text-color);
}

/* Navbar */
.navbar {
    padding: 10px 20px;
    background-color: var(--white-color);
}

.navbar-nav .nav-item {

    align-content: center;
}

.mm-justify-menu {
    justify-content: end;
}

.navbar-nav .nav-link {
    color: var(--title-color);
    font-size: 15px;
    line-height: 1.25em;
    font-weight: 500;
    padding: 8px 12px;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.mm-heder-btn a {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 0px;
    padding: 15px 30px;
}

.mm-heder-btn a:hover {
    background-color: var(--title-color);
    color: var(--white-color);

}

@media (min-width: 767px) and (max-width: 1367px) {
    .navbar-nav .nav-link {

        font-size: 12px;

    }
}


/* header end  */

/* section-1  */

.section-1 {
    position: relative;
    overflow: hidden;
}

/* base image styling */
.section-1 .carousel-inner img {
    height: auto;
    width: 100%;
    object-fit: cover;
    filter: brightness(70%) contrast(105%);
    transition: transform 8s ease-in-out;
}


.section-1 .carousel-inner .carousel-item {
    width: 100% !important;
    height: auto !important;
}

.section-1 .carousel-item.active img {
    transform: scale(1.1);
}

/* overlay gradient */
.section-1 .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* caption */
.section-1 .carousel-caption {
    bottom: 35%;
    left: 10%;
    right: auto;
    text-align: left;
    z-index: 2;
    animation: fadeInUp 1.5s ease forwards;
}

.section-1 .caption-bg {

    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 35px;
    display: inline-block;

}

.section-1 .carousel-caption h5 {
    font-size: 52px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.321);
    /* animation: glowText 2s infinite alternate; */
}

.section-1 .carousel-caption p {
    font-size: 1.2rem;
    color: #eaeaea;
    margin: 10px 0 20px;
    line-height: 1.6;
}

/* button */
.slider-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00bcd4, #00e5ff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.slider-btn:hover {
    background: linear-gradient(45deg, #00e5ff, #00bcd4);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

/* indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
}

.carousel-indicators .active {
    background-color: #00e5ff;
}

/* controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px #00e5ff, 0 0 20px #00bcd4;
    }

    to {
        text-shadow: 0 0 30px #00e5ff, 0 0 60px #00bcd4;
    }
}

/* 📱 Responsive Design */
@media (max-width: 991px) {
    .section-1 .carousel-inner img {
        /* height: 80vh; */
    }

    .section-1 .carousel-caption {
        bottom: 15%;
        left: 5%;
    }

    .section-1 .caption-bg {
        padding: 20px 25px;
    }

    .section-1 .carousel-caption h5 {
        font-size: 2.2rem;
    }

    .section-1 .carousel-caption p {
        font-size: 1rem;
        max-width: 450px;
    }

    .slider-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .section-1 .carousel-inner img {
        height: 70vh;
    }

    .section-1 .carousel-caption {
        bottom: 20%;
        left: 0%;
        transform: translateX(-50%);
        text-align: center;
    }

    .section-1 .caption-bg {
        padding: 15px 20px;
        width: 85%;
    }

    .section-1 .carousel-caption h5 {
        font-size: 28px;
    }

    .section-1 .carousel-caption p {
        font-size: 16px;
    }

    .slider-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-1 .carousel-inner img {
        height: 40vh;
    }

    .section-1 .carousel-caption h5 {
        font-size: 25px;
    }

    .section-1 .carousel-caption p {
        font-size: 14px;
    }

    .slider-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}


/* end  */


/* section-2 */

/* Section Base */
.section-2 {

    padding: 100px 20px;

    position: relative;
    background-color: var(--white-color, #F6F6F8);
    overflow: hidden;

}


.section-2 .about-money {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 50px;
    bottom: 120px;
    opacity: 0.25;
    animation: moveHorizontal2 4s linear infinite;
}

/* Define the keyframes for the animation */
@keyframes moveHorizontal2 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
        /* move 20px to the right */
    }

    100% {
        transform: translateX(0);
    }
}


.section-2 .about-shape {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    animation: zumpBottom 4s linear infinite;
}

/* Define the keyframes for zumpBottom animation */
@keyframes zumpBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);

    }

    100% {
        transform: translateY(0);
    }
}


.section-2 .about-main {
    text-align: right;
    padding-right: 90px;
    position: relative !important;
}



.section-2 .about-img-2 {
    position: absolute;
    right: 65px;
    bottom: 50px;
    z-index: 3;
    border: 10px solid var(--easilon-white, #ffffff);
    filter: drop-shadow(0px 4px 60px rgba(117, 165, 67, 0.12));
    animation: moveHorizontal2 2s linear infinite;
}

/* Keyframes for horizontal floating animation */
@keyframes moveHorizontal2 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
        /* moves 20px to the right */
    }

    100% {
        transform: translateX(0);
    }
}



.section-2 .about-img-3 {
    position: absolute;
    top: 20px;
    right: 75px;
    animation: zumpBottom 2s linear infinite;
}

/* Keyframes for zumpBottom animation */
@keyframes zumpBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
        /* moves up 20px */
    }

    100% {
        transform: translateY(0);
    }
}


/* Background */
.section-2 .about-bg {
    position: absolute;
    inset: 0;
    background: url('img/about-bg.jpg') center/cover no-repeat;
    opacity: 0.08;
    /* faint background */
    z-index: 0;
}

/* Left Images */
.section-2 .main-img {
    border-radius: 0px;
    position: relative;
    z-index: 3 !important;
}

.section-2 .main-img img {

    z-index: 3 !important;
}


/* Experience Box */
.section-2 .experience-box {
    position: absolute;

    top: -15%;
    left: -27%;
    max-width: 200px;
    height: 200px;
    align-content: center;
    padding: 20px 20px;
    text-align: center;
    border-radius: 0px;
    z-index: 4;
    color: var(--white-color);
    background-image: linear-gradient(135deg, rgba(0, 205, 229, 0.8), rgba(0, 123, 255, 0.8)), url(img/about-experience-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(0, 0);
}


.section-2 .img-wrap {
    position: relative;
    display: inline-block;
}



.section-2 .experience-box::before {
    content: "";
    width: 101px;
    height: 67px;
    background-color: var(--easilon-black, #2B2B5E);
    position: absolute;
    left: 0;
    bottom: -67px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.section-2 .experience-box i {
    font-size: 45px;
    display: block;
    margin-bottom: 20px;
}




.section-2 .experience-box h3 {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

.section-2 .experience-box p {
    margin: 0;
    font-size: 16px;
}

/* Right content */
/* Subtitle */
.sub-title {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 47px;
}

/* Left blue line */
.sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 4px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

/* Optional: right side bhi line add karni ho to */
.sub-title::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 22px;
    height: 4px;
    background: var(--primary-color);
    transform: translateY(-50%);
}



.title {
    color: var(--title-color);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;

}

.text {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Features */
.section-2 .about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.section-2 .about-list li {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 600;

}

.section-2 .about-list i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 16px;
}

/* Button */
.section-2 .know-btn {
    font-weight: 600;
    padding: 12px 22px;
    border-width: 2px;
    border: 1px solid;
    border-color: var(--primary-color);
    border-radius: 0px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.section-2 .know-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* end  */

/* section-3 */

/* Section background */
.section-3 {
    padding: 100px 20px 400px 20px;
    position: relative;
    background-color: var(--title-color);
    /* dark blue look */
    /* overflow: hidden; */
}

.section-3 .services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(img/service-bg.jpg) no-repeat top/cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
}

/* Sub-title */
.sub-title-2 {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    padding: 0 50px;
}

.sub-title-2::before,
.sub-title-2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.sub-title-2::before {
    left: 0;
}

.sub-title-2::after {
    right: 0;
}

/* Loan marquee */
.loan-marquee {
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 25px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.loan-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 65px;
    /* large bold text */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    white-space: nowrap;
}

.marquee-track .span-2 {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 65px;
    /* large bold text */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-color);
    text-shadow: 1px 1px 0 var(--easilon-white, #ffffff), -1px -1px 0 var(--easilon-white, #ffffff), 1px -1px 0 var(--easilon-white, #ffffff), -1px 1px 0 var(--easilon-white, #ffffff), 1px 1px 0 var(--easilon-white, #ffffff);
    white-space: nowrap;
}

.marquee-track .span-2 i {
    font-size: 25px;
    color: var(--primary-color);
    text-shadow: none;
}

.marquee-track span i {
    font-size: 25px;
    color: var(--primary-color);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------tab------------ */


.section-3 .mm-tab input {
    display: none;
}

.section-3 .mm-tab {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid #ffffff6d;
    overflow: hidden;
}

.section-3 .mm-tab .list {
    display: flex;
    flex-direction: column;
    width: 60%;
    border-right: 1px solid #ffffff6d;
}

.section-3 .mm-tab .list label {
    position: relative;
    cursor: pointer;
    text-align: left;
    line-height: 70px;
    font-size: 45px;
    font-weight: 600;
    gap: 20px;
    font-weight: 600;
    color: var(--text-color);
    padding: 20px 20px 20px 50px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ffffff6d;

}

.section-3 .mm-tab .list label .study {

    border-bottom: none;

}


/* Default hollow black numbers */
.section-3 .mm-tab .list label span {
    font-weight: 700;
    margin-right: 12px;
    font-size: 47px;
    color: transparent;
    -webkit-text-stroke: 1px #ffffffa0;
    /* black outline */
    transition: all 0.3s ease;
}

/* Hover pe cyan stroke */
.section-3 .mm-tab .list label:hover span {
    color: transparent !important;
    -webkit-text-stroke: 1px var(--white-color);
}

/* Active (checked) pe white fill + white stroke */
#auto:checked~.list label.auto span,
#personal:checked~.list label.personal span,
#home:checked~.list label.home span,
#study:checked~.list label.study span {
    color: transparent !important;
    /* fill white */
    -webkit-text-stroke: 1px var(--white-color);
    /* outline white */
}


.section-3 .mm-tab .list label .arrow {
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 20px;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff6d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

/* Hover Effect */
.section-3 .mm-tab .list label:hover {
    color: #fff;
}

.section-3 .mm-tab .list label:hover span {
    color: #fff;
}

.section-3 .mm-tab .list label:hover .arrow {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Active checked style */
#auto:checked~.list label.auto,
#personal:checked~.list label.personal,
#home:checked~.list label.home,
#study:checked~.list label.study {
    color: #fff;
}

#auto:checked~.list label.auto span,
#personal:checked~.list label.personal span,
#home:checked~.list label.home span,
#study:checked~.list label.study span {
    color: #fff;
}

#auto:checked~.list label.auto .arrow,
#personal:checked~.list label.personal .arrow,
#home:checked~.list label.home .arrow,
#study:checked~.list label.study .arrow {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Right Content */
.mm-tab .text-content {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mm-tab .text {
    display: none;
    text-align: center;
}

.mm-tab .text img {
    width: 100%;
    height: auto;

}

#auto:checked~.text-content .auto,
#personal:checked~.text-content .personal,
#home:checked~.text-content .home,
#study:checked~.text-content .study {
    display: block;
}


/* 2  part  */

.section-3 .mm-padding-top {
    position: absolute;
    bottom: -15%;
    z-index: 9;
    left: 0%;
    /* padding: 0px 24px 0px 24px; */

}

.section-3 .mm-service-r {
    position: relative;
    background: url('img/service-bg.jpg') bottom right / cover no-repeat;
    background-color: var(--white-color);
    z-index: 1;
    box-shadow: 0px 4px 60px rgba(117, 165, 67, 0.1);
    border-radius: 2px;
    overflow: hidden;
}


.section-3 .mm-service-r::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.911);
    z-index: 0;
}

.section-3 .mm-service-r>* {
    position: relative;
    z-index: 1;
}



.section-3 .service-bg-2 {
    background: url('img/service-1.jpg') center center / cover no-repeat;
    border-radius: 0px;
    overflow: hidden;
}


.section-3 .service-bg-2:hover {
    transform: scale(1.02);
    transition: all 0.4s ease;
}

.section-3 .mm-service-content {
    padding: 40px 50px;
    text-align: left;
}


.section-3 .feature-subtitle {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 47px;
}

/* Left blue line */
.section-3 .feature-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 4px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

/* Optional: right side bhi line add karni ho to */
.section-3 .feature-subtitle::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 22px;
    height: 4px;
    background: var(--primary-color);
    transform: translateY(-50%);
}



.section-3 .feature-title {
    color: var(--title-color);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;

}

.section-3 .feature-text {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}


.section-3 .feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section-3 .feature-box .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    margin-right: 22px
}

.section-3 .feature-box .content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--title-color);
}

.section-3 .feature-box .content p {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
}


/* new section  section-3  */
.loan-card {
    height: 600px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.loan-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
/* IMAGE WRAP */
.loan-img {

    position: relative;
    overflow: hidden;
}

/* IMAGE */
.loan-img img {
    width: 100%;

    object-fit: cover;
}

/* BLACK OVERLAY (initially hidden below) */
.loan-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(3, 2, 60, 0.55),
            rgba(16, 1, 61, 0.25),
            transparent);
    transition: 0.6s ease;
}

/* ON CARD HOVER → overlay moves UP */
.loan-card:hover .loan-img::after {
    bottom: 0;
}


/* ICON */
.loan-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;

    /* 🔥 YE LINE IMPORTANT HAI */
    transition: all 0.5s ease;
}

/* HOVER EFFECT */
.loan-card:hover .loan-icon {
    width: 62px;
    height: 62px;
    bottom: 30px;
    left: 30px;
}


/* CONTENT */
.loan-content {
    padding: 32px;
}

.loan-content h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}

.loan-content p {
    color: #555;
    line-height: 1.7;
}



/* end  */


/* section-4 */

.section-4 {
    padding: 300px 20px 100px 20px;
    position: relative;
    background-color: var(--white-color);
    overflow: hidden;
    text-align: center;
}


.section-4 .sub-title-2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color, #00c3ff);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-4 .sub-title-2::before,
.section-4 .sub-title-2::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #00c3ff);
    margin: 0 8px;
    vertical-align: middle;
}

.section-4 .title {
    color: var(--title-color, #1a1a1a);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.process-wrapper {
    margin-bottom: 60px;
    /* Optional */
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}




.step-badge {
    position: absolute;
    width: 60%;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 5px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.section-4 .process-step:hover .step-badge {

    background: var(--title-color);

}


.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 10px;
    color: var(--title-color);
}

.process-step p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 auto;


}




/* .section-5  */
.section-5 {
    position: relative;
    position: relative;
    background-color: var(--easilon-black, #2B2B5E);
    padding: 100px 20px;
    /* 
    overflow: hidden;
    z-index: 1;
    color: #fff; */
}

/* .section-5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2B2B5E;
    opacity: 0.9;
    z-index: -1;
} */

.section-5 .mm-bg5 {

    background: url('img/company-transparency-bg.jpg') center center/cover no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--easilon-black, #2B2B5E);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;

}

.section-5 .mm-bg5::after {
    content: "";
    position: absolute;
    top: 0;
    left: -215px;
    width: calc(100% + 215px);
    height: 100%;
    background: linear-gradient(90deg, var(--easilon-black, #2B2B5E) 10.89%, RGBA(var(--easilon-black-rgb), 0) 53.02%);
}


.section-5 .mm-high {

    z-index: 9;
}

/* Typography */

.section-5 .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/* accordiun  */




/* Tag buttons */
/* Base style for all nav-tabs in .tag-buttons */
.tag-buttons .nav-link {
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important;
    border: 1px solid rgba(153, 153, 153, 0.36) !important;
    color: #fff !important;
    font-size: 16px !important;
    padding: 6px 20px !important;
    margin: 5px !important;
    border-radius: 0px !important;
    transition: color 0.3s ease, border-color 0.3s ease !important;
    z-index: 1 !important;
}

/* Add the animated background */
.tag-buttons .nav-link::before {
    content: "" !important;
    position: absolute !important;
    top: -100% !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #00c3ff !important;
    z-index: -1 !important;
    transition: top 0.4s ease !important;
}

/* On hover or active, slide background down */
.tag-buttons .nav-link:hover::before,
.tag-buttons .nav-link.active::before {
    top: 0 !important;
}

/* Make sure text color remains white on top of bg */
.tag-buttons .nav-link:hover,
.tag-buttons .nav-link.active {
    color: #fff !important;
    border-color: #00c3ff !important;
}

.section-5 .nav-tabs {
    --bs-nav-tabs-border-width: none;
}

/* Text */

.section-5 .accordion {

    /* background-color: red !important; */
    --bs-accordion-bg: none;
    --bs-accordion-border-width: none;

}


.section-5 .description .accordion-body {
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    line-height: 1.6;
    margin: 0 auto;

}

/* Contact Info */

.section-5 .contact-info .icon {
    padding-right: 20px;

}

.section-5 .contact-info .icon i {
    font-size: 22px;
    padding: 10px;
    background-color: var(--white-color);
    border-radius: 0% 50% 50% 50%;
    transition: all 0.4s ease;
    /* Smooth hover effect */
}

/* .section-5 .contact-info:hover .icon i {
    background-color: var(--primary-color) !important;
    border-radius: 50% 0% 50% 50%;
    filter: brightness(0) invert(1);
} */


.section-5.contact-info h5 {
    font-size: 20px;
    color: #fff;
}


/* section-6 */

.section-6 {
    background-color: var(--easilon-white2, #F6F6F8);
    position: relative;
    padding: 100px 20px;
    overflow: hidden;

    /* background-image: url("img/faq-shape-1.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain; */


}


.section-6 .faq-shap {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    height: 100%;
    animation: bgMove 5s linear infinite;
    /* speed adjust kar sakte ho */
}

/* Animation keyframes */
@keyframes bgMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}


.section-6 .faq-image {
    z-index: 2 !important;
    position: relative;
}



.section-6 .img-2 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
    animation: moveHorizontal2 4s linear infinite;
}

/* Keyframes for horizontal floating animation */
@keyframes moveHorizontal2 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
        /* moves 20px to the right */
    }

    100% {
        transform: translateX(0);
    }
}



.section-6 .accordion-item {

    border: none;
    border-radius: none;
}





.section-6 .accordion-button::after {}

.section-6 .accordion-button {
    background: #fff;
    border-radius: none;
    border: none !important;
    box-shadow: none;
    font-weight: 600;
    color: var(--title-color);
    padding: 18px 20px;
}

.section-6 .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.section-6 .accordion-body {
    font-size: 15px;
    color: var(--text-color);
}


/* .section-7  */

.section-7 {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;

    /* Background image */
    background: url("img/testimonel-bg.jpg") center/cover no-repeat;

    /* Overlay using pseudo-element */
}

.section-7::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.782);
    /* light black overlay */
    z-index: 1;
    /* overlay above background */
}

/* Content inside section */
.section-7>* {
    position: relative;
    z-index: 2;
    /* ensure content is above overlay */
}


.section-7 .title {
    color: var(--white-color);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;

}


/* testimonel  */



/* @import url(//cdn.rawgit.com/rtaibah/dubai-font-cdn/master/dubai-font.css); */




.testim .wrap {
    /* position: relative; */
    width: 100%;
    /* max-width: 1020px; */
    padding: 40px 150px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: var(--white-color);
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: var(--primary-color);
}


.testim .arrow.left {
    left: 30px;
}

.testim .arrow.right {
    right: 30px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;
    -moz-animation: testim-scale .5s ease-in-out forwards;
    -ms-animation: testim-scale .5s ease-in-out forwards;
    -o-animation: testim-scale .5s ease-in-out forwards;
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}


.testim .cont>div.active {
    position: relative;
    opacity: 1;
}


.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
    margin: 15px 0;
}

.testim .cont div h6 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.testim .cont div p {
    font-size: 17px;
    color: #eee;
    font-weight: 500;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .6s ease-in-out forwards;
    -moz-animation: testim-show .6s ease-in-out forwards;
    -ms-animation: testim-show .6s ease-in-out forwards;
    -o-animation: testim-show .6s ease-in-out forwards;
    animation: testim-show .6s ease-in-out forwards;
}

.testim .cont div.active h3 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;
    -moz-animation: testim-content-in .4s ease-in-out forwards;
    -ms-animation: testim-content-in .4s ease-in-out forwards;
    -o-animation: testim-content-in .4s ease-in-out forwards;
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.inactive h6 {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .6s ease-in-out forwards;
    -moz-animation: testim-content-in .6s ease-in-out forwards;
    -ms-animation: testim-content-in .6s ease-in-out forwards;
    -o-animation: testim-content-in .6s ease-in-out forwards;
    animation: testim-content-in .6s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .6s ease-in-out forwards;
    -moz-animation: testim-hide .6s ease-in-out forwards;
    -ms-animation: testim-hide .6s ease-in-out forwards;
    -o-animation: testim-hide .6s ease-in-out forwards;
    animation: testim-hide .6s ease-in-out forwards;
}

.testim .cont div.inactive h3 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;
    -moz-animation: testim-content-out .4s ease-in-out forwards;
    -ms-animation: testim-content-out .4s ease-in-out forwards;
    -o-animation: testim-content-out .4s ease-in-out forwards;
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive h6 {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .6s ease-in-out forwards;
    -moz-animation: testim-content-out .6s ease-in-out forwards;
    -ms-animation: testim-content-out .6s ease-in-out forwards;
    -o-animation: testim-content-out .6s ease-in-out forwards;
    animation: testim-content-out .6s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }

}

/* end  */


/* section-8  */

.section-8 {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background-color: var(--easilon-white2, #F6F6F8)
}

.section-8 .bg {
    background-image: url(img/form-bg-1.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.25;
}


.section-8 .line {
    max-width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    animation: upDown 3s ease-in-out infinite;
    /* continuous up-down movement */
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
        /* move down 20px */
    }

    100% {
        transform: translateY(0);
        /* back to start */
    }
}


.section-8 .side-bg {
    width: 131px;
    height: 168px;
    position: absolute;
    right: 83px;
    bottom: 0;
    background-color: var(--easilon-black, #2B2B5E);
    border-radius: 1000px 1000px 0 0;
    animation: moveHorizontal 3s linear infinite;
    /* horizontal movement */
}

.section-8 .side-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -17px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--easilon-base, #00CDE5);
    border-radius: inherit;
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
        /* move left */
    }

    100% {
        transform: translateX(0);
        /* back to start */
    }
}


.section-8 .content-wrapper {
    position: relative;
    z-index: 2;
}


.section-8 p {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}


.section-8 .features {
    gap: 20px;
    display: flex;
}

.section-8 .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
}

.section-8 .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}






.section-8 .mm-paddimg-right {
    padding-right: 40px;
}

.section-8 .loan-form {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.section-8 .loan-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2a56;
    text-align: center;
}

.section-8 .loan-form .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}


.section-8 .loan-form .mm-half {
    width: 50%;
}

.section-8 .loan-form .form-control {
    width: 100%;
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    display: block;
    z-index: 2;
    position: relative;
    cursor: text;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-8 .loan-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
    outline: none;
}


.section-8 .loan-form .form-check-input {
    border-width: 3px;
    border-color: var(--primary-color);
}

.section-8 .loan-form .btn-submit {
    background: linear-gradient(90deg, #00cde5, #27dff3);
    color: #fff;
    font-weight: 700;
    padding: 15px 20px;
    width: 100%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.section-8 .loan-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
    .section-8 .loan-form {
        padding: 25px 20px;
    }

    .section-8 .loan-form h3 {
        font-size: 1.5rem;
    }

    .section-8 .loan-form .mm-half {
        width: 100%;
    }
}


/* form step ----  */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-buttons {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background: #6b7280;
}


/* end  */


/* section-9  */


.section-9 {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    background-color: var(--white-color);
}

.section-9 .mm-padding-top {
    padding-top: 30px;
}



/* Slider */
.slick-slide {
    margin: 0px 20px;
    justify-items: center;
}

.slick-slide img {
    width: 60%;
}

/*
.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
} */
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

/*.slick-slide.dragging img {*/
/*    pointer-events: none;*/
/*}*/

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}



/* footer  */

.mm-footer-top {
    /* z-index: 9; */
    margin-bottom: -100px;
    margin-top: 40px;
}

.mm-footer-top .row {
    position: relative;
    background-color: var(--white-color);
    box-shadow: 0px 4px 50px 10px rgba(0, 205, 229, 0.12);
}

.mm-footer-top .mm-left {
    padding: 40px;
}

.mm-footer-top .mm-left h2 {
    font-size: 25px;
    color: var(--title-color);
    margin-bottom: 15px;
}



.mm-footer-top .mm-left p {

    color: var(--primary-color);
}

.mm-footer-top .mm-right {
    width: 100%;
    max-width: 600px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--easilon-base, #00CDE5);
    clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);

}

.mm-footer-top .mm-right .bg-img-last {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/quick-loan-1-.jpg');
    /* add your image URL */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: overlay;
    opacity: 0.4;
}



.mm-footer-top .mm-right .mm-btn {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #00CDE5;
    border: 2px solid #00CDE5;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 500;

    transition: all 0.3s ease;
}

.mm-footer-top .mm-right .mm-btn:hover {
    background-color: var(--title-color);
    color: #fff;
}

.mm-footer-top .mm-right .mm-btn .btn-icon {
    width: 24px;
    height: 24px;
    /* Set fixed height for consistency */
    margin-right: 10px;
    display: inline-block;
    /* Ensures proper alignment */
}

.mm-footer-top .mm-right .mm-btn i {
    margin-left: 10px;
    display: inline-block;
    /* Ensures proper spacing */
}


.footer {
    background-color: var(--title-color);
    padding: 180px 20px 30px 20px;

    color: var(--white-color);
    /* overflow: hidden; */
    /* position: relative; */


}


.footer .bg {
    background-image: url('img/footer-bg.png');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: color-burn;
    opacity: 0.3;
    z-index: 0;
}

.footer>.container {
    position: relative;
    z-index: 1;
}


.footer p {
    color: #c5c5c5;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer .padding-right {
    padding-right: 100px !important;
}

.footer h5 {
    border-bottom: 2px solid #00c0e4;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links a {
    color: #c5c5c5;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.footer-links a:hover {
    color: #00c0e4;
}

.footer-contact li {
    color: #c5c5c5;
    margin-bottom: 10px;
    list-style: none;
    font-size: 15px !important;
    font-weight: 500;
}

.footer-social .social-btn {
    color: #fff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.footer-social .social-btn:hover {
    background: #00c0e4;
    color: #fff;
}

.footer-subscribe input {
    background: var(--white-color);
    color: var(--title-color);
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
}

.footer .form-control:focus {
    color: var(--title-color);
    background-color: var(--white-color);
    border-color: none;
    outline: 0;
    box-shadow: none !important;
}

.footer-subscribe .btn {
    background-color: var(--primary-color);
    border: none;
}

.footer-subscribe .btn:hover {
    background-color: var(--primary-color)
}

.mm-copright {
    color: #a0a0c0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 0px !important;
}


.mm-copright a:hover {
    color: var(--primary-color);

}


.mm-mobile-none {
    display: block;
}

.mm-p-1 {
    padding: 0px;
}

.mm-herderright {

    padding-right: 0px;

}

.mm-herderright .navbar-collapse {
    justify-content: end;
}

@media only screen and (max-width: 767px) {
    .mm-mobile-none {
        display: none !important;
    }



    .section-2 {
        padding: 200px 10px 60px 10px;

    }

    .section-2 .about-main {
        padding-right: 0px;
        padding-left: 70px;
        padding-bottom: 30px;
    }

    .section-2 .experience-box {
        top: -138px;
        left: -69px;
        width: 168px;
        height: 167px;
        padding: 10px;
    }

    .section-2 .experience-box h3 {
        font-size: 25px;

    }

    .section-2 .experience-box p {

        font-size: 14px;
        line-height: 1.3em;

    }

    .section-2 .experience-box i {

        margin-bottom: 12px;
    }

    .section-2 .experience-box::before {
        width: 69px;
    }

    .section-2 .about-list {
        grid-template-columns: 1fr;
    }

    .section-3 .feature-title {

        font-size: 32px;

    }

    .section-3 .mm-padding-top {
        left: 0px;
        bottom: -15%;
        padding: 15px;
        background-color: var(--white-color);
    }

    .section-3 .mm-tab .list label {
        font-size: 18px;
        line-height: 1.3em;
        padding: 20px;
    }

    .section-3 .mm-tab .list label span {
        font-size: 18px;
    }

    .section-3 .mm-tab .list label .arrow {
        font-size: 18px;
        width: 30px;
        height: 30px;

    }

    .section-3 .mm-tab .list {

        width: 100%;

    }

    .section-3 .mm-tab {

        flex-direction: column;
    }

    .mm-tab .text-content {
        width: 100%;
    }

    .marquee-track .span-2 {

        font-size: 32px;
    }

    .section-3 {

        padding: 60px 10px 580px 10px;
    }

    .section-3 .mm-service-content {
        padding: 20px;
    }

    .section-3 .feature-box {
        gap: 15px;

    }


    .section-3 .feature-box .icon {
        width: 50px;
        height: 50px;
        margin-right: 0px;
        margin-bottom: 20px;
        font-size: 21px;
    }



    .section-4 {
        padding: 380px 10px 30px 10px;
    }

    .section-4 .process-step {
        padding-bottom: 40px;
    }

    .section-5 {
        padding: 60px 10px;
    }

    .title {
        font-size: 32px;
    }

    .section-3 .service-bg-2 {

        min-height: 336px;

    }

    .section-4 .title {

        font-size: 32px;

        margin-bottom: 35px;
    }

    .section-5 .title {
        font-size: 32px;

    }

    .section-5 .tab-content>.tab-pane {
        display: block;
        opacity: 1;
    }

    .section-5 .accordion-item .accordion-header .accordion-button {
        background-color: transparent;
        /* No background */
        border: 1px solid #ddd;
        /* Light border */
        transition: all 0.3s ease;
        color: var(--white-color);
        border-radius: 0px;
        margin-bottom: 15px;
    }

    .section-5 .accordion-item .accordion-header .accordion-button:hover {
        background-color: var(--primary-color) !important;
        /* Blue hover color */
        color: var(--white-color);
        /* White text on hover */
        border-color: var(--primary-color) !important;
    }

    .section-5 .contact-info {
        padding-top: 30px;
    }

    .section-6 {
        padding: 60px 10px;
    }

    .section-6 .container {
        position: relative;
        z-index: 6;
    }

    .section-6 .faq-shap {
        opacity: 0.6;

    }

    .section-6 .img-2 {

        top: -10px;
        left: -7px;

    }

    .section-6 .faq-image {

        padding-bottom: 30px;
    }

    .section-7 {
        padding: 60px 10px;
    }

    .section-7 .title {

        font-size: 32px;

    }

    .section-7 .testim .wrap {
        padding: 30px 00px;
    }

    .section-7 .testim .arrow.right {
        right: 2px;
    }

    .section-7 .testim .arrow.left {
        left: 2px;
    }

    .section-8 {
        padding: 60px 10px;
    }

    .section-8 .mm-paddimg-right {
        padding-right: 12px;
    }

    .section-8 .features {
        gap: 1px;

        flex-direction: column;
    }

    .section-8 .download-btns {
        gap: 14px;
        flex-direction: column;
    }

    .section-8 .side-bg {
        width: 100px;
        height: 140px;

        right: 17px;

    }

    .section-8 .side-bg::before {
        left: -10;
    }

    .section-9 {
        padding: 60px 10px 60px 10px;
    }




    .mm-footer-top {

        top: -10%;
        right: 0%;

    }

    .footer {
        padding: 150px 10px 25px 10px
    }

    .footer .padding-right {
        padding-right: 10px !important;
    }

    .mm-footer-top .mm-right {
        clip-path: none;
        padding: 20px;

    }

    .mm-footer-top .mm-right .mm-btn {

        top: 80%;
        right: 44%;

    }

    .mm-footer-top .mm-right .mm-desktop-none p {

        margin-bottom: 5px;
        color: var(--white-color);

    }

    .mm-footer-top .mm-right .mm-desktop-none .sub-title::before {

        background: var(--white-color);

    }

    .mm-footer-top .mm-right .mm-desktop-none .sub-title::after {

        background: var(--white-color);

    }

    .mm-footer-top .mm-right .mm-desktop-none h2 {

        margin-bottom: 10px;
        color: var(--white-color);
        font-size: 25px;

    }

    .navbar {
        padding: 10px 10px;
    }

    .mm-p-0 {
        padding: 0px !important;
    }

    .mm-h {
        justify-content: space-around !important;
    }


    .mm-gap {
        gap: 20px;
    }


    .mm-justify-menu {
        justify-content: left;
        padding-top: 20px;
    }

    .mm-justify-menu .nav-item {
        text-align: left;
    }

    .section-8 .line {
        max-width: 0%;
        height: auto;

    }

}






/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .col-lg-4 {
        justify-content: center !important;
        margin-top: 20px;
    }


}

.mm-desktop-none {
    display: none;
    /* Desktop par hide */
}

@media (max-width: 767px) {
    .mm-desktop-none {
        display: block;
        /* Mobile par show */
    }
}




@media (max-width: 575px) {
    .mm-top-bar .row {
        text-align: center;
    }

    .mm-top-bar .col-md-6 {
        margin-bottom: 5px;
    }

    .navbar-brand {
        justify-content: center;
        width: 100%;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .marquee-track span {
        font-size: 28px;
    }

    .marquee-track span i {
        font-size: 20px;
    }
}


@media only screen and (max-width: 400px) {
    .mm-footer-top .mm-right .mm-btn {
        top: 80%;
        right: 39%;
    }

    .sub-title-2 {
        font-size: 13px;

    }

    .sub-title {
        font-size: 13px;
        padding-left: 35px;
    }

    .sub-title::before {

        width: 6px;

    }

    .sub-title::after {

        left: 9px;
        width: 15px;

    }

    .mm-footer-top .mm-right .mm-desktop-none h2 {
        margin-bottom: 10px;
        color: var(--white-color);
        font-size: 23px;
    }

}

@media only screen and (max-width: 350px) {
    .mm-footer-top .mm-right .mm-btn {
        top: 80%;
        right: 69%;
    }



}

.ss-yscroll {
    height: 300px;
    overflow-y: auto;
    position: relative;
    display: block;
}


/* section-10 */

/* .section-10{
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
 
} */
.section-10 {
    position: relative;
    padding: 100px 20px;
    /* overflow: hidden; */
    background: var(--title-color);

}

/* Background image */
.section-10 .bg-2 {
    position: absolute;
    inset: 0;
    background: url("img/team-bg.png") center/cover no-repeat;
    z-index: 1;
    opacity: 0.02 !important;

}

.section-10 .title {
    color: var(--white-color) !important;
}


/* Content always upar */
.section-10 .container {
    position: relative;
    z-index: 3;
}



.swiper-slide {
    /* width: 300px !important; */
    margin: 0px !important;
}

.teamSwiper {
    overflow: hidden;
}

.section-10 .swiper-wrapper {
    column-gap: 10px;

}


.team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    transition: .4s;
}

.team-card:hover::before,
.team-card.active::before {
    border-color: #1ecad3;
}



.team-card:hover .team-info,
.team-card.active .team-info {
    bottom: 0;
}



/* ------  */

.team-card {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
}

/* Image smooth transition */
.team-card img {
    transition: transform .4s ease, filter .4s ease;
}

/* Hover / Active effect */
.team-card:hover img,
.team-card.active img {
    filter: brightness(1.05);
    transform: scale(1.03);
}




/* Border */
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    transition: .4s;
    z-index: 3;
}

.team-card:hover::before,
.team-card.active::before {
    border-color: #1ecad3;
    box-shadow:
        0 0 15px rgba(30, 202, 211, 0.755),
        0 0 35px rgba(30, 202, 211, 0.66) !important;
}


.team-card:hover .team-overlay,
.team-card.active .team-overlay {
    opacity: 1;
}




/* Bottom Info */
.team-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #1ecad3;
    padding: 14px 16px;
    color: #fff;
    z-index: 4;
    transition: .4s ease;
}

.team-card:hover .team-info,
.team-card.active .team-info {
    bottom: 0;
}

.team-info h5 {
     margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.team-info p {
    margin: 0px;
    font-size: 15px;
}


/* Mobile */
@media(max-width:768px) {


    .section-10 {
        padding: 60px 10px;
    }

    .team-card {

        width: 100%;
        height: auto;

    }

    .section-10 .swiper-wrapper {
        column-gap: 30px;

    }
}



/* end  */