
/* Hero Section */
.hero {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.app-hero .hero-content {
    display: flex;
    justify-content: space-around;    
    align-items: center;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.hero-feature img {
    width: 20px;
    height: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-image{
    width: 275px;
    height: 560px;
    margin-left: 50px;
}
.app-button img {
    height: 50px;
    transition: var(--transition);
}

.app-button:hover img {
    transform: scale(1.05);
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #FFF4E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.feature-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.work-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.work-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* EMI Calculator */
.emi-calculator {
    padding: 80px 0;
    background: var(--light-bg);
}

.calculator-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-gradient);
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
}

.calculator-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.calculator-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    text-align: center;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.calculator-form .form-group label {
    color: var(--white);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.result-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
}

.cta-features span {
    font-size: 15px;
    opacity: 0.9;
}
