/* DigiRupee Hero Section  */
.digirupee-hero {
    padding: 100px 20px 70px;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f9ff01;
}

@media (max-width: 767px) {
    .digirupee-hero {
        padding: 50px 20px;
    }
}

/* DigiRupee About Section  */
.digirupee-modern-about {
    padding: 0px 20px;
}

.modern-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
}

.modern-about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.modern-about-image img:hover {
    transform: scale(1.03);
}

.modern-about-content {
    flex: 1;
    min-width: 280px;
}

.modern-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff900;
    margin-bottom: 20px;
}

.modern-text {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modern-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-item {
    background: #eef7ff;
    border-left: 4px solid #00b894;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 15px;
    color: #072f74;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

@media (max-width: 767px) {
    .modern-about-wrapper {
        padding: 0;
    }
}

/* DigiRupee Features Section  */
.digirupee-features {
    padding: 50px 20px;
}

.features-heading {
    font-size: 30px;
    font-weight: 700;
    color: #fff900;
    margin-bottom: 10px;
}

.features-subheading {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.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(-5px);
    box-shadow: 0 15px 35px 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 h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #e3ffd7;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .digirupee-features {
        padding: 70px 20px 30px;
    }
}


/* How It Works section  */
.digirupee-how-it-works {
    padding: 50px 20px;
}

.how-heading {
    font-size: 30px;
    font-weight: 700;
    color: #fff900;
    margin-bottom: 10px;
}

.how-subheading {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 60px;
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.how-step {
    background: radial-gradient(circle, #35898c, #06c48c);
    border-radius: 16px;
    padding: 30px 25px;
    width: 260px;
    box-shadow: 0 10px 25px #00000033;
    padding: 30px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    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;
}

.how-step h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.how-step p {
    font-size: 15px;
    color: #e3ffd7;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .digirupee-how-it-works {
        padding: 40px 20px;
    }
}

/* Documents Section  */
.digirupee-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-heading {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.eligibility-text {
    font-size: 16px;
    color: #f9ff01;
    margin-bottom: 20px;
}

.eligibility-list {
    list-style: none;
    padding-left: 0;
}

.eligibility-list li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.eligibility-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fff900;
    font-weight: bold;
}

.eligibility-image img {
    max-width: 100%;
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .digirupee-eligibility {
        padding: 40px 20px;
    }

    .eligibility-image img {
        width: 100%;
        max-width: 320px;
    }
}

/* 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;
}