/* Digimoney hero section  */
.digimoney-hero {
    padding: 100px 20px 30px;
}

.digimoney-hero .hero-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.digimoney-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #f9ff01;
}

@media (max-width: 767px) {
    .digimoney-hero {
        padding: 50px 20px 20px;
    }
}

/* Introduction Section  */
.digimoney-intro {
    padding: 50px 20px;
}

.digimoney-intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.intro-content {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease-in-out;
}

.intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #f9ff01;
    margin-bottom: 20px;
}

.intro-desc {
    font-size: 16.5px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 25px;
}

.intro-points {
    list-style: none;
    padding: 0;
}

.intro-points li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.intro-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #f9ff01;
    border-radius: 50%;
}

.intro-image img {
    max-width: 100%;
    border-radius: 16px;
    animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .digimoney-intro-grid {
        flex-direction: column;
    }

    .intro-content {
        padding: 30px 20px;
    }

    .digimoney-intro {
        padding: 30px 20px;
    }
}

/* DigiMoney Features Section  */
.digimoney-features {
    padding: 50px 20px;
}

.features-heading {
    font-size: 30px;
    font-weight: 700;
    color: #f9ff01;
    margin-bottom: 10px;
}

.features-subheading {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: radial-gradient(circle, #134a76, #19b492);
    padding: 30px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px #072f7433;
    transition: transform 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    background: radial-gradient(circle, #aff3ff, #86a8ff);
    font-size: 36px;
    color: #000000;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #0095ff26;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    color: #e3ffd7;
    line-height: 1.6;
}

/* How Works Section  */
.digimoney-how-it-works {
    padding: 50px 20px;
}

.how-heading {
    font-size: 30px;
    font-weight: 700;
    color: #f9ff01;
    margin-bottom: 10px;
}

.how-subheading {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 60px;
}

.how-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.icon-circle {
    background: #a1fdc3;
    color: #046c5a;
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #f9ff01;
}

.timeline-content p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Optional: line between steps */
.how-timeline::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    width: 2px;
    height: calc(100% - 50px);
    background-color: #a1fdc3;
    z-index: 0;
}

@media (max-width: 768px) {
    .digimoney-how-it-works {
        padding: 20px 20px 0px;
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .how-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .icon-circle {
        margin-bottom: 10px;
    }
}

/* Eligibility Section  */
.digimoney-eligibility {
    padding: 50px 20px;
}

.eligibility-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.eligibility-content {
    flex: 1;
    min-width: 280px;
}

.eligibility-title {
    font-size: 28px;
    font-weight: 700;
    color: #f9ff01;
    margin-bottom: 15px;
}

.eligibility-desc {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.6;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-list i {
    font-size: 18px;
    color: #f9ff01;
    flex-shrink: 0;
}

.eligibility-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

/* Apply Now CTA Section  */
.cta-modern-strict {
    background: linear-gradient(to right, #072f74, #00b894);
    padding: 40px 20px;
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    flex: 1 1 600px;
}

.cta-headline {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.25px;
}

.cta-subtext {
    font-size: 16.5px;
    color: #fff900;
    max-width: 550px;
    line-height: 1.6;
}

.cta-action {
    flex-shrink: 0;
}

.cta-modern-button {
    padding: 14px 36px;
    background-color: #0b1d39;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    border-radius: 4px;
}

.cta-modern-button:hover {
    background-color: #ffffff;
    color: #0b1d39;
    border-color: #0b1d39;
    text-decoration: none;
}