/* Economy Hero */
.rupeeHero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.rupeeSymbolLarge {
    height: 150px;
    width: auto;
}

.rupeeWordTitle {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(84deg, #261d00 0%, #98782d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 8px;
}

/* Textured intro section */
.economy-intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2000px;
    max-width: 2000px;
    margin: 0;
    padding: 50px 20px;
}

.economy-intro-section > * {
    position: relative;
    z-index: 1;
}

.economy-intro-row {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 900px;
}

.economy-intro-col {
    flex: 1;
    max-width: 400px;
}

.economy-intro-col h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1b1200;
    margin-bottom: 12px;
    text-align: center;
}

.economy-intro-col p {
    font-size: 13px;
    line-height: 22px;
    color: #1b1200;
    text-align: left;
}

/* Currency section — rupee pattern with gold overlay */
.currency-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2000px;
    max-width: 2000px;
    height: 400px;
    margin: 0;
    padding: 50px 20px;
    background: url(img/RupeeBackgroundImage.png) repeat;
    background-size: auto;
    box-shadow: inset 0 8px 12px rgba(71, 46, 6, 0.3), inset 0 -8px 12px rgba(23, 14, 0, 0.3);
}

.currency-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: linear-gradient(to left, #ffae00 0%, #FFD343 25%, #ffe5ac 100%);
    box-shadow: inset 0 8px 12px rgba(71, 46, 6, 0.01), inset 0 -8px 12px rgba(23, 14, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01);
    z-index: 0;
}

.currency-section::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: url(img/RupeeBackgroundImage.png) repeat;
    box-shadow: inset 0 8px 12px rgba(71, 46, 6, 0.3), inset 0 -8px 12px rgba(23, 14, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.199);
    z-index: 0;
}

.currency-section > * {
    position: relative;
    z-index: 1;
}

.currency-title {
    font-size: 32px;
    font-weight: 800;
    color: #1b1200;
    margin-bottom: 15px;
    text-align: center;
}

.currency-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}

.currency-text {
    flex: 1;
    max-width: 500px;
    width: 500px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 245, 200, 0.6) 0%, rgba(255, 240, 190, 0.3) 40%, transparent 70%);
}

.currency-text p {
    font-size: 20px;
    line-height: 22px;
    color: #1b1200;
    text-align: center;
    line-height: 32px;
}

.currency-image {
    flex: 1;
    max-width: 380px;
    text-align: center;
}

.rupeeNoteImg {
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.economy-caption {
    padding: 10px 16px;
    background: radial-gradient(ellipse at center, rgba(255, 245, 200, 0.5) 0%, rgba(255, 240, 190, 0.25) 40%, transparent 70%);
    font-size: 12px;
    text-align: center;
    margin-top: 6px;
    color: #3a2800;
    font-style: italic;
    line-height: 18px;
}

/* Economic data — sandstone textured (like glance-grid on homepage) */
.economic-data-section {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2000px;
    max-width: 2000px;
    margin: 0;
    padding: 50px 20px;
    position: relative;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.027) url(img/SandstoneTexture1.avif);
    box-shadow: inset 0 8px 12px rgba(71, 46, 6, 0.224), inset 0 -8px 12px rgba(23, 14, 0, 0.224);
}

.economic-data-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: rgba(255, 251, 226, 0.6);
    box-shadow: inset 0 8px 12px rgba(71, 46, 6, 0.224), inset 0 -8px 12px rgba(23, 14, 0, 0.224), 0 4px 8px rgba(0, 0, 0, 0.199);
    z-index: 0;
}

.economic-data-section > * {
    position: relative;
    z-index: 1;
}

.data-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1b1200;
    margin-bottom: 20px;
    text-align: center;
}

.data-cards-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
}

.data-card {
    padding: 20px 14px;
    width: 220px;
    min-height: 130px;
    background: linear-gradient(180deg, #FFEABC 0%, #F1BF6F 100%);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2), inset 0px -6px 10px rgba(0, 0, 0, 0.2), inset 0 3px 6px hsla(46, 100%, 13%, 0.12);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.data-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #1b1200;
}

.data-card p {
    font-size: 13px;
    line-height: 20px;
    color: #2a1800;
}

/* GDP section — rupee pattern */
.gdp-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2000px;
    max-width: 2000px;
    margin: 0;
    padding: 40px 20px;
}

.gdp-title {
    font-size: 28px;
    font-weight: 800;
    color: #1b1200;
    margin-bottom: 4px;
    text-align: center;
}

.gdp-subtitle {
    font-size: 16px;
    color: #1b1200;
    text-align: center;
    margin-bottom: 16px;
}

.gdp-img {
    max-width: 300px;
    width: 100%;
    border-radius: 4px;
}

.gdp-caption {
    font-size: 12px;
    color: #3a2800;
    font-style: italic;
    text-align: center;
    max-width: 450px;
    margin-top: 8px;
    line-height: 18px;
}
