* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #1f1f1f;
}

.hero-section {
    background: linear-gradient(to right, #1d1d1d, #353535);
    padding: 40px 0;
    overflow: hidden;
}
.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-title span {
    color: #fd5507;
}

.counter-box h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-box p {
    color: #bcbcbc;
    margin: 0;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #fd5304;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 24px;
}

.banner-card {
    background: linear-gradient(135deg, #42ff9d, #c5ff33);
    border-radius: 30px;
    padding: 50px;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.second-bg {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.banner-card h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.banner-card p {
    font-size: 20px;
    color: #222;
    margin-bottom: 25px;
}

.banner-img {
    max-height: 260px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.loan-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.loan-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.loan-card h3 {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

.loan-card p {
    color: #d4d4d4;
    font-size: 18px;
    margin-bottom: 30px;
}

.card-icon {
    color: #fd5507;
    font-size: 34px;
}

.tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffe600;
    color: #111;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .banner-card {
        padding: 35px;
    }

    .banner-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .counter-box h3 {
        font-size: 24px;
    }

    .banner-card {
        text-align: center;
        min-height: auto;
    }

    .banner-card h2 {
        font-size: 28px;
    }

    .banner-card p {
        font-size: 16px;
    }

    .loan-card h3 {
        font-size: 26px;
    }
}

.education-slider-section {
    background: #f3f3f3;
}

.education-banner {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 60px;
    min-height: 320px;
    background: #003f7d;
}

.second-banner {
    background: #004d40;
}

.third-banner {
    background: #4a148c;
}

.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45),
        rgba(0, 52, 102, 0.85)
    );
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-content h2 span {
    color: #ffd400;
}

.banner-content p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 35px;
}

.apply-btn {
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.4s;
}

.apply-btn:hover {
    transform: translateY(-5px);
    color: #111;
}

.student-img {
    max-height: 320px;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.yellow-shape {
    position: absolute;
    width: 260px;
    height: 260px;
    background: #ffd400;
    border-radius: 50%;
    top: -130px;
    left: -110px;
}

.blue-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #005bb5;
    border-radius: 50%;
    top: -70px;
    left: 90px;
    opacity: 0.5;
}

.custom-indicators {
    bottom: -60px;
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: #ccc !important;
    border: none !important;
}

.custom-indicators .active {
    background: #39ff9c !important;
}

/* Floating Animation */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .education-banner {
        padding: 40px;
        text-align: center;
    }

    .banner-content h2 {
        font-size: 38px;
    }

    .student-img {
        max-height: 250px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .education-banner {
        padding: 30px 20px;
    }

    .banner-content h2 {
        font-size: 30px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .apply-btn {
        padding: 14px 28px;
    }
}
.custom-slider {
    margin-bottom: 0;
    padding-bottom: 0;
}

.carousel-inner {
    margin-bottom: 0;
    padding-bottom: 0;
}

.slider-box {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Fix indicator gap */
.custom-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: none;
    background: #d9d9d9 !important;
    margin: 0 4px !important;
}

.custom-indicators .active {
    background: #2de39a !important;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 34px;
        text-align: center;
        margin-bottom: 20px;
    }

    .slider-box {
        height: 170px;
        border-radius: 12px;
    }

    .slider-image {
        object-fit: contain;
    }

    .row.mt-5 {
        margin-top: 20px !important;
    }

    .loan-card {
        padding: 15px;
    }

    .loan-card h3 {
        font-size: 18px;
    }

    .loan-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .counter-box h3 {
        font-size: 18px;
    }

    .counter-box p {
        font-size: 11px;
    }

    .icon-box {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

.loan-slider {
    padding: 30px 0;
    background: #fff;
}

.loan-slider .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 25px;
}

.carousel-indicators {
    bottom: -45px;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #bdbdbd !important;
}

.carousel-indicators .active {
    background-color: #00d084 !important;
}

@media (max-width: 768px) {
    .loan-slider .carousel-item img {
        height: 180px;
        border-radius: 15px;
    }
}

.financial-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 58px;
    font-weight: 700;
    color: #222;
}

.section-title span {
    color: #33d69f;
}

.section-subtitle {
    font-size: 22px;
    color: #555;
    margin-top: 15px;
}

/* Cards */

.financial-section {
    padding: 80px 0;
    background: #f5f5f5;
}

/* Heading */

.section-title {
    font-size: 58px;
    font-weight: 700;
    color: #222;
}

.section-title span {
    color: #014924;
}

.section-subtitle {
    font-size: 22px;
    color: #555;
    margin-top: 15px;
}

/* Card */

.financial-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.financial-card:hover {
    transform: translateY(-5px);
}

/* Icon */

.icon-box1 {
    width: 90px;
    height: 90px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
}

.icon-box1 i {
    font-size: 35px;
}

/* Card Text */

.financial-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 34px;
    margin-bottom: 15px;
}

.financial-card p {
    font-size: 18px;
    color: #666;
    line-height: 28px;
    margin-bottom: 25px;
}

/* Button */

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #014924;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.card-btn:hover {
    background: #20c78e;
    color: #111;
}

/* Badge */

.offer-badge {
    position: absolute;
    top: -12px;
    right: 18px;
    background: #ffcc00;
    color: #111;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 30px;
}

/* Mobile */

@media (max-width: 768px) {
    .financial-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 24px;
        padding: 0 10px;
    }

    .financial-card {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .icon-box {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .financial-card h3 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .financial-card p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .card-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .offer-badge {
        font-size: 12px;
        padding: 5px 12px;
        top: -10px;
        right: 10px;
    }
}

/* =========================
CREDIT CARD SECTION
========================= */

.credit-card-section {
    padding: 90px 0;
    background: linear-gradient(to right, #232323, #3b3b3b);
    overflow: hidden;
    position: relative;
}

/* =========================
HEADER
========================= */

.section-header {
    margin-bottom: 80px;
}

.credit-main-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.credit-main-title span {
    color: #2de39a;
}

.credit-main-subtitle {
    max-width: 950px;
    margin: auto;
    color: #bfbfbf;
    font-size: 20px;
    line-height: 34px;
}

/* =========================
IMAGE
========================= */

.credit-card-image-box {
    position: relative;
    text-align: center;
}

.credit-card-image {
    width: 420px;
    max-width: 100%;
    transform: rotate(-16deg);
    position: relative;
    z-index: 2;
}

/* Dots */

.credit-dot-shape {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(#2de39a 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
}

.left-dots {
    left: 20px;
    top: 60px;
}

.right-dots {
    right: 20px;
    bottom: 30px;
}

/* =========================
CONTENT
========================= */

/* =========================
SECTION
========================= */

.credit-card-section {
    background: linear-gradient(to right, #232323, #404040);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* =========================
IMAGE EFFECT
========================= */

.credit-card-image-box {
    position: relative;
    text-align: center;
}

/* Main Card */

.credit-card-image {
    width: 420px;
    max-width: 100%;
    transform: rotate(-15deg);
    position: relative;
    z-index: 2;
    transition: 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Hover Effect */

.credit-card-image:hover {
    transform: rotate(-10deg) translateY(-15px);
}

/* =========================
DOT EFFECTS
========================= */

.credit-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 1;
    opacity: 0.8;
    animation: floating 4s ease-in-out infinite;
}

/* Create Dots */

.credit-dots::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2de39a 2px, transparent 2px);
    background-size: 14px 14px;
}

/* Left Dots */

.dots-left {
    left: 20px;
    top: 40px;
}

/* Right Dots */

.dots-right {
    right: 10px;
    bottom: 20px;
}

/* =========================
CONTENT
========================= */

.credit-content-box h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 35px;
}

.credit-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.credit-feature-list li {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 38px;
}

.credit-feature-list i {
    color: #fff;
    font-size: 20px;
    margin-top: 8px;
}

/* =========================
BUTTONS
========================= */

.credit-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.credit-apply-btn {
    background: #2de39a;
    color: #111;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.credit-apply-btn:hover {
    background: #20cb85;
    transform: translateY(-5px);
    color: #111;
}

.credit-outline-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.credit-outline-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-5px);
}

/* =========================
ANIMATION
========================= */

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 767px) {
    .credit-card-section {
        padding: 60px 0;
    }

    .credit-card-image {
        width: 240px;
    }

    .credit-content-box {
        margin-top: 40px;
        text-align: center;
    }

    .credit-content-box h2 {
        font-size: 30px;
    }

    .credit-feature-list li {
        font-size: 15px;
        line-height: 24px;
        text-align: left;
    }

    .credit-btn-group {
        justify-content: center;
    }

    .credit-apply-btn,
    .credit-outline-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .credit-dots {
        width: 90px;
        height: 90px;
    }
}

/* =========================
PERSONAL LOAN SECTION
========================= */

.personal-loan-section {
    padding: 100px 0;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

/* =========================
CONTENT
========================= */

.personal-loan-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
}

/* =========================
LIST
========================= */

.personal-loan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.personal-loan-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.personal-loan-list li span {
    flex: 1;
    font-size: 24px;
    line-height: 38px;
    color: #111;
}

.personal-loan-list li i {
    font-size: 20px;
    color: #111;
    margin-top: 8px;
}

/* =========================
BUTTONS
========================= */

.personal-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.personal-apply-btn {
    background: #35d89a;
    color: #111;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.personal-apply-btn:hover {
    background: #22c786;
    color: #111;
}

.personal-outline-btn {
    border: 2px solid #222;
    color: #111;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.personal-outline-btn:hover {
    background: #111;
    color: #fff;
}

/* =========================
IMAGE
========================= */

.personal-image-box {
    position: relative;
    text-align: center;
}

.personal-card-image {
    width: 400px;
    max-width: 100%;
    transform: rotate(14deg);
    position: relative;
    z-index: 2;
    transition: 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.personal-card-image:hover {
    transform: rotate(10deg) translateY(-12px);
}

/* =========================
DOT EFFECT
========================= */

.personal-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 1;
}

.personal-dots::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#66e6ad 2px, transparent 2px);
    background-size: 14px 14px;
}

.dots-top {
    top: -20px;
    left: 70px;
}

.dots-bottom {
    right: 20px;
    bottom: -20px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .personal-loan-content {
        margin-bottom: 50px;
    }

    .personal-loan-content h2 {
        font-size: 40px;
    }

    .personal-loan-list li span {
        font-size: 18px;
        line-height: 30px;
    }

    .personal-apply-btn,
    .personal-outline-btn {
        font-size: 18px;
        padding: 14px 26px;
    }
}

@media (max-width: 767px) {
    .personal-loan-section {
        padding: 60px 0;
    }

    .personal-loan-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .personal-loan-content h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .personal-loan-list {
        margin-bottom: 25px;
    }

    .personal-loan-list li {
        gap: 10px;
        text-align: left;
    }

    .personal-loan-list li span {
        font-size: 15px;
        line-height: 25px;
    }

    .personal-loan-list li i {
        font-size: 16px;
        margin-top: 4px;
    }

    .personal-btn-group {
        justify-content: center;
        gap: 12px;
    }

    .personal-apply-btn,
    .personal-outline-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .personal-card-image {
        width: 240px;
    }

    .personal-dots {
        width: 80px;
        height: 80px;
    }

    .dots-top {
        left: 20px;
    }

    .dots-bottom {
        right: 10px;
    }
}

/* =========================
SECTION
========================= */

.loan-step-section {
    position: relative;
    padding: 90px 0 120px;
    background: #f7f7f7;
    overflow: hidden;
}

/* =========================
BACKGROUND TEXT
========================= */

.loan-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    font-weight: 700;
    line-height: 0.9;
    color: rgba(0, 0, 0, 0.04);
    text-align: center;
    z-index: 0;
}

/* =========================
HEADING
========================= */

.section-top {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.loan-step-title {
    font-size: 56px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.loan-step-title span {
    color: #32de9f;
}

.loan-step-subtitle {
    font-size: 18px;
    color: #555;
}

/* =========================
PROCESS WRAPPER
========================= */

.loan-process-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    min-height: 620px;
}

/* =========================
SVG LINE
========================= */

.process-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-line {
    fill: none;
    stroke: url(#gradientStroke);
    stroke-width: 6;
    stroke-linecap: round;

    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;

    animation: drawLine 4s linear forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* =========================
STEP
========================= */
/* ─── SECTION ─── */
.applicationSteps {
    background: #ededea;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

/* dot-grid background */
.applicationSteps::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c0bfb8 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.55;
    pointer-events: none;
}

/* ─── HEADING ─── */
.applicationSteps .sec-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.applicationSteps .sec-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #222;
    line-height: 1.2;
}
.applicationSteps .sec-title h2 span {
    color: #014924;
}
.applicationSteps .sec-title p {
    font-size: 1rem;
    color: #555;
    margin-top: 8px;
    font-weight: 400;
}

/* ─── STEPS WRAPPER: 3 columns ─── */
.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* ─── LEFT & RIGHT text columns ─── */
.stepInner {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 0;
}

.secondTile {
    align-items: flex-start;
}

/* Individual step text block */
.indStep {
    position: relative;
    padding: 10px 0;
}

/* Large ghost number behind */
.stepBgtext {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: rgba(30, 201, 126, 0.18);
    margin-bottom: -16px;
    user-select: none;
}

/* Bold step number */
.stepNum {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    line-height: 1.1;
    margin-bottom: 6px;
}

/* Step title */
.stepTitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Step description */
.stepDesc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.55;
    font-weight: 400;
}

.textRight {
    text-align: right;
}
.textLeft {
    text-align: left;
}

/* ─── CENTRE SVG COLUMN ─── */
.stepsSVG {
    flex: 1;
    position: relative;
    min-height: 440px;
}

/* The SVG fills the centre column */
.timelineContainer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timelineSVG {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Animated snake paths */
.snake-path {
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.path-dark {
    stroke: #1c1c1c;
}
.path-green {
    stroke: #1ec97e;
}

/* Draw animation */
.snake-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawSnake 2.2s ease forwards;
}
.path-green {
    animation-delay: 0.6s;
}

@keyframes drawSnake {
    to {
        stroke-dashoffset: 0;
    }
}

/* Icon circles */
.stepIcon {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    z-index: 3;
    cursor: default;
}
.stepIcon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(30, 201, 126, 0.35);
}
.stepIcon svg {
    width: 27px;
    height: 27px;
    fill: #1ec97e;
}

/* CTA button */
.stepsBtn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.stepsBtn a {
    background: #014924;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.stepsBtn a:hover {
    background: #17b36d;
    transform: translateY(-1px);
}

/* ══════════════════════════════════
     MOBILE  (≤ 767px)
  ══════════════════════════════════ */
.steps-mobile {
    display: none;
}

@media (max-width: 767px) {
    .steps {
        display: none;
    }
    .steps-mobile {
        display: block;
        position: relative;
        z-index: 1;
    }

    .mob-wrap {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
        padding-left: 58px;
    }

    /* vertical spine */
    .mob-wrap::before {
        content: "";
        position: absolute;
        left: 29px;
        top: 28px;
        bottom: 28px;
        width: 3px;
        background: linear-gradient(to bottom, #1c1c1c 40%, #1ec97e 100%);
        border-radius: 2px;
    }

    .mob-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }
    .mob-step:last-child {
        margin-bottom: 0;
    }

    .mob-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #1c1c1c;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: -58px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }
    .mob-icon svg {
        width: 25px;
        height: 25px;
        fill: #1ec97e;
    }

    .mob-text {
        flex: 1;
        padding-top: 2px;
    }
    .mob-text .stepBgtext {
        font-size: 3.2rem;
        margin-bottom: -10px;
    }
    .mob-text .stepNum {
        font-size: 1.3rem;
    }
    .mob-text .stepTitle {
        font-size: 0.93rem;
    }
    .mob-text .stepDesc {
        font-size: 0.8rem;
    }

    .applicationSteps .sec-title h2 {
        font-size: 1.4rem;
    }
    .applicationSteps {
        padding: 50px 0 60px;
    }
}

.calculator-section {
    background: #2f2f2f;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* ================= BACKGROUND ================= */

.calculator-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.04) 75%,
        transparent 75%
    );
    background-size: 400px 400px;
    opacity: 0.25;
}

/* ================= SECTION TITLE ================= */

.section-heading {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-heading h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: #fd5507;
}

.section-heading p {
    color: #d1d5db;
    font-size: 17px;
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

/* ================= CARD ================= */

.calculator-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 80px 30px 35px;
    text-align: center;
    position: relative;
    height: 100%;
    min-height: 300px;
    backdrop-filter: blur(8px);
    transition: 0.4s;
    overflow: visible;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-card:hover {
    transform: translateY(-10px);
    border-color: #27e2a4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ================= ICON ================= */

.icon-box1 {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    z-index: 5;
}

.icon-box1 i {
    font-size: 34px;
}

/* ================= COLORS ================= */

.blue i {
    color: #4f46e5;
}

.purple i {
    color: #2563eb;
}

.green i {
    color: #10b981;
}

.orange i {
    color: #f97316;
}

.cyan i {
    color: #06b6d4;
}

.yellow i {
    color: #eab308;
}

/* ================= TEXT ================= */

.calculator-card h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
}

.calculator-card p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ================= BUTTON ================= */

.explore-btn {
    background: #111;
    color: #fff;
    text-decoration: none;

    padding: 18px 35px;
    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
    transition: 0.3s;

    position: relative;
    z-index: 2;
}

.explore-btn:hover {
    background: #fd5507;
    color: #fff;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .calculator-section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .calculator-card {
        min-height: 280px;
        padding: 75px 25px 30px;
    }

    .calculator-card h3 {
        font-size: 26px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .calculator-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 2 BOX IN ROW */
    .calculator-section .col-md-6 {
        width: 50%;
    }

    .calculator-card {
        padding: 65px 15px 25px;
        min-height: 240px;
        border-radius: 20px;
    }

    .calculator-card h3 {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .calculator-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .icon-box {
        width: 65px;
        height: 65px;
        top: -32px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .explore-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

.faq-section {
    background: #f5f5f5;
    padding: 90px 0;
}

/* ================= HEADING ================= */

.faq-heading {
    margin-bottom: 60px;
}

.faq-heading h2 {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.faq-heading p {
    font-size: 18px;
    color: #666;
}

/* ================= LEFT CARD ================= */

.faq-left-card {
    background: linear-gradient(180deg, #1e1e1e, #121212);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.faq-left-card::before {
    content: "?";
    position: absolute;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    top: 20px;
    left: 20px;
    font-weight: 800;
}

.faq-left-card::after {
    content: "?";
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    bottom: -10px;
    right: 20px;
    font-weight: 800;
}

.faq-left-card h3 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.faq-icon {
    font-size: 90px;
    font-weight: 900;
    color: #2fe29d;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.faq-left-card h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.faq-left-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    position: relative;
    z-index: 2;
}

/* ================= ACCORDION ================= */

.faq-accordion {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    height: 100%;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0 !important;
}

.accordion-button {
    background: none;
    box-shadow: none !important;
    padding: 28px 0;
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: #014924;
}

.accordion-button::after {
    background-size: 18px;
}

.accordion-body {
    padding: 0 0 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .faq-heading h2 {
        font-size: 42px;
    }

    .faq-left-card {
        margin-bottom: 20px;
    }

    .faq-left-card h3 {
        font-size: 34px;
    }

    .accordion-button {
        font-size: 18px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-heading {
        margin-bottom: 40px;
    }

    .faq-heading h2 {
        font-size: 32px;
        line-height: 1.4;
    }

    .faq-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-left-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .faq-left-card h3 {
        font-size: 28px;
    }

    .faq-icon {
        font-size: 70px;
    }

    .faq-left-card h4 {
        font-size: 24px;
    }

    .faq-left-card p {
        font-size: 15px;
    }

    .faq-accordion {
        padding: 15px 20px;
        border-radius: 18px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 22px 0;
        line-height: 1.5;
    }

    .accordion-body {
        font-size: 14px;
        line-height: 1.7;
    }
}
.partners-section {
    background: linear-gradient(to right, #000, #3b3b3b);
    padding: 90px 50px;
    position: relative;
    overflow: hidden;
}

/* LEFT CURVE DESIGN */

.partners-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(47, 226, 157, 0.15);
    left: -420px;
    top: -100px;
    box-shadow:
        0 0 0 40px rgba(47, 226, 157, 0.04),
        0 0 0 80px rgba(47, 226, 157, 0.03),
        0 0 0 120px rgba(47, 226, 157, 0.02),
        0 0 0 160px rgba(47, 226, 157, 0.02);
}

/* ================= LEFT CONTENT ================= */

.partners-content {
    max-width: 500px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.partners-content h2 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.partners-content h2 span {
    color: #2fe29d;
}

.partners-content p {
    color: #cbd5e1;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* BUTTON */

.view-btn {
    background: #2fe29d;
    color: #111;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 18px 38px;
    border-radius: 50px;

    font-size: 18px;
    font-weight: 700;

    transition: 0.3s;
}

.view-btn:hover {
    background: #fff;
    color: #111;
}

/* ================= GRID ================= */

.banks-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

/* CARD */

.bank-card {
    background: #fff;
    border-radius: 12px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;
    transition: 0.3s;
}

.bank-card:hover {
    transform: translateY(-6px);
}

.bank-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

/* ================= TABLET ================= */

@media (max-width: 1199px) {
    .banks-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .partners-section {
        padding: 70px 25px;
    }

    .partners-content {
        margin-bottom: 50px;
        text-align: center;
    }

    .partners-content h2 {
        font-size: 42px;
    }

    .partners-content p {
        font-size: 17px;
    }

    .banks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 15px;
    }

    .partners-content h2 {
        font-size: 34px;
    }

    .partners-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .view-btn {
        padding: 15px 28px;
        font-size: 15px;
    }

    /* 2 COLUMN MOBILE */

    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bank-card {
        height: 75px;
        padding: 12px;
    }

    .bank-card img {
        max-height: 35px;
    }
}

.custom-footer {
    background: #111;
    padding: 80px 0 30px;
    color: #fff;
}

/* ================= LOGO ================= */

.footer-logo {
    width: 240px;
    margin-bottom: 30px;
}

/* ================= TEXT ================= */

.footer-text {
    color: #d1d5db;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 35px;
}

/* ================= SOCIAL ================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #2fe29d;
    color: #111;
    transform: translateY(-5px);
}

/* ================= LINKS ================= */

.footer-links h4,
.footer-contact h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #2fe29d;
    padding-left: 5px;
}

/* ================= CONTACT ================= */

.contact-box {
    margin-bottom: 30px;
}

.contact-box h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.contact-box a,
.contact-box p {
    color: #d1d5db;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #d1d5db;
    font-size: 16px;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .custom-footer {
        padding: 70px 0 30px;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 26px;
    }

    .footer-text {
        font-size: 16px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .custom-footer {
        padding: 60px 0 25px;
        text-align: center;
    }

    .footer-logo {
        width: 180px;
        margin: auto auto 25px;
        display: block;
    }

    .footer-text {
        font-size: 15px;
        line-height: 1.9;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 14px;
    }

    .footer-links ul li a {
        font-size: 15px;
    }

    .contact-box h6 {
        font-size: 16px;
    }

    .contact-box a,
    .contact-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.full-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* IMAGE */

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* OPTIONAL HEIGHT */

@media (min-width: 992px) {
    .banner-img {
        max-height: 700px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .banner-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.login-btn {
    border: 2px solid #014924;
    color: #014924;
    background: transparent;
    transition: 0.3s;
}

.login-btn:hover {
    background: #014924;
    color: #fff;
}

.partner-btn {
    background: #014924;
    border: 2px solid #014924;
    color: #fff;
    transition: 0.3s;
}

.partner-btn:hover {
    background: #026633;
    border-color: #026633;
    color: #fff;
}

/* APPLY BUTTON */

.personal-apply-btn {
    background: #014924;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: 2px solid #014924;
}

.personal-apply-btn:hover {
    background: #026633;
    border-color: #026633;
    color: #fff;
}

/* OUTLINE BUTTON */

.personal-outline-btn {
    background: transparent;
    color: #014924;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: 2px solid #014924;
}

.personal-outline-btn:hover {
    background: #014924;
    color: #fff;
}
