/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d47a1;
    --secondary-color: #1976d2;
    --accent-color: #ffd54f;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo .tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    display: block;
    border-radius: 0;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.language-toggle {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600 !important;
    padding: 0.4rem 1.2rem !important;
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(25, 118, 210, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230d47a1" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 20px;
}

.quote-section blockquote {
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-style: normal;
    opacity: 0.9;
}

/* Highlights */
.highlights {
    background-color: var(--white);
}

.highlights h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Mission Content */
.mission-content {
    background-color: var(--bg-light);
}

.mission-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.mission-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.mission-pillars {
    margin-bottom: 4rem;
}

.mission-pillars h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pillar-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pillar-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.pillar-card li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Mission Goals */
.mission-goals {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.mission-goals h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.goal-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.goal-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Call to Action Section */
.call-to-action-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.call-to-action-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.call-to-action-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ambedkar Page Styles */
.ambedkar-header {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(25, 118, 210, 0.95)),
                linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.ambedkar-content {
    background-color: var(--bg-light);
}

.tribute-quote {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tribute-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
}

.tribute-quote cite {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
}

.ambedkar-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* Timeline */
.biography-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.biography-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.75rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--primary-color);
}

.timeline-date {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contributions Grid */
.contributions-section {
    margin-bottom: 3rem;
}

.contributions-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contributions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contribution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contribution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.contribution-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.philosophy-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-principle {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.philosophy-principle h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Quotes Grid */
.quotes-section {
    margin-bottom: 3rem;
}

.quotes-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-left: 5px solid var(--accent-color);
}

/* Relevance Section */
.relevance-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
}

.relevance-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.relevance-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.call-to-action {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.call-to-action p {
    font-size: 1.3rem;
    margin: 0;
}

/* Voter Awareness Styles */
.voter-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(67, 160, 71, 0.9));
}

.voter-content {
    background-color: var(--bg-light);
}

.importance-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.importance-box h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.importance-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.importance-box blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* Voting Process */
.voting-process {
    margin-bottom: 3rem;
}

.voting-process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.step li {
    margin-bottom: 0.5rem;
}

/* Rights Section */
.rights-section {
    margin-bottom: 3rem;
}

.rights-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.right-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.right-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Informed Voting */
.informed-voting {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.informed-voting h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.informed-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.criteria-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.criteria-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.criteria-item ul {
    padding-left: 1.5rem;
}

.criteria-item li {
    margin-bottom: 0.5rem;
}

/* Warning Section */
.warning-section {
    margin-bottom: 3rem;
}

.warning-section h2 {
    text-align: center;
    color: var(--danger);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.warning-item {
    background: #ffebee;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--danger);
}

.warning-item h3 {
    color: var(--danger);
    margin-bottom: 1rem;
}

/* Ambedkar Voting Section */
.ambedkar-voting {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.ambedkar-voting h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.ambedkar-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ambedkar-message blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Resources Section */
.resources-section {
    margin-bottom: 3rem;
}

.resources-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card strong {
    color: var(--primary-color);
}

/* Pledge Section */
.pledge-section {
    background: linear-gradient(135deg, var(--success), #66bb6a);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
}

.pledge-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pledge-box {
    max-width: 800px;
    margin: 0 auto;
}

.pledge-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pledge-box ul {
    list-style: none;
    padding: 0;
}

.pledge-box li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.pledge-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.3rem !important;
}

/* Contact Page */
.contact-header {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.9), rgba(251, 140, 0, 0.9));
}

.contact-content {
    background-color: var(--bg-light);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.social-links p {
    margin-bottom: 0.5rem;
}

.contact-card ul {
    list-style: none;
    padding-left: 0;
}

.contact-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.contact-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Help Section */
.help-section {
    margin-bottom: 3rem;
}

.help-section h2 {
    text-align: center;
    color: var(--danger);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-top: 4px solid var(--danger);
}

.help-card h3 {
    color: var(--danger);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.help-card ul {
    list-style: none;
    padding-left: 0;
}

.help-card li {
    margin-bottom: 0.8rem;
}

.help-card strong {
    color: var(--primary-color);
}

.help-card em {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark), #424242);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .highlights-grid,
    .pillars-grid,
    .contributions-grid,
    .philosophy-content,
    .quotes-grid,
    .process-steps,
    .rights-grid,
    .criteria-list,
    .warning-grid,
    .resources-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .quote-section blockquote {
        font-size: 1.3rem;
    }
}

/* Ambedkar Profile */
.ambedkar-intro {
    margin-bottom: 3rem;
}

.tribute-quote {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
}

/* Atrocities Page */
.atrocities-header {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(211, 47, 47, 0.9));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.atrocities-content {
    padding: 4rem 0;
}

.atrocities-intro {
    margin-bottom: 4rem;
}

.atrocities-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.statistics-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.statistics-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--danger);
    margin-bottom: 1rem;
}

.stat-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.incidents-section {
    margin: 4rem 0;
}

.incidents-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--danger);
    padding-bottom: 0.5rem;
}

.incident-card {
    background: var(--white);
    border-left: 5px solid var(--danger);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.incident-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.incident-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.incident-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    flex: 1;
}

.incident-date {
    background: var(--warning);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.incident-type {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.incident-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.incident-status {
    background: var(--bg-light);
    padding: 0.8rem;
    border-radius: 5px;
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.forms-of-atrocities {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.forms-of-atrocities h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.atrocity-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.atrocity-type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.atrocity-type-card:hover {
    transform: translateY(-5px);
}

.atrocity-type-card h3 {
    color: var(--danger);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.atrocity-type-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.legal-framework {
    margin: 4rem 0;
}

.legal-framework h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.law-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    border-top: 4px solid var(--primary-color);
}

.law-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.law-section ul {
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.law-section li {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.helpline-section {
    margin: 3rem 0;
}

.helpline-section h3 {
    color: var(--danger);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.helpline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.helpline-card {
    background: linear-gradient(135deg, var(--danger), #d32f2f);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.3);
}

.helpline-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.helpline-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

.helpline-card p:last-child {
    font-size: 0.9rem;
    opacity: 0.95;
}

.action-section {
    margin: 4rem 0;
}

.action-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--success);
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.action-card h3 {
    color: var(--success);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.awareness-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
}

.awareness-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.awareness-section > p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.awareness-list {
    list-style: none;
    margin-left: 0;
}

.awareness-list li {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.awareness-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.call-to-action {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px;
    margin: 4rem 0;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .incident-header {
        flex-direction: column;
    }
    
    .helpline-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .atrocity-types {
        grid-template-columns: 1fr;
    }
}

/* Economy Page */
.economy-header {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(25, 118, 210, 0.95));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;

/* Rupee page specific styles */
.rupee-header {
    background: linear-gradient(135deg, #c62828 0%, #ef5350 100%);
}

.rupee-intro {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #f57c00;
}

.rupee-shock-stats {
    margin: 3rem 0;
}

.shock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shock-card {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.shock-card:hover {
    transform: translateY(-5px);
}

.shock-card.warning {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-color: #ef5350;
}

.shock-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.shock-rate {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c62828;
    margin: 1rem 0;
}

.historical-decline,
.currency-comparison,
.reasons-section,
.impact-section,
.comparison-neighbors,
.solutions-section {
    margin: 3rem 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.chart-header {
    background: #1565c0;
    color: white;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.timeline-table-wrapper,
.currency-table-wrapper,
.neighbors-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.timeline-table,
.currency-table,
.neighbors-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.timeline-table thead,
.currency-table thead,
.neighbors-table thead {
    background: #1565c0;
    color: white;
}

.timeline-table th,
.timeline-table td,
.currency-table th,
.currency-table td,
.neighbors-table th,
.neighbors-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-table tbody tr:hover,
.currency-table tbody tr:hover,
.neighbors-table tbody tr:hover {
    background: #f5f5f5;
}

.milestone-row {
    background: #e3f2fd !important;
    font-weight: 600;
}

.crisis-row {
    background: #ffebee !important;
}

.highlight-row {
    background: #fff3e0 !important;
    font-weight: 600;
}

.visual-decline {
    margin: 3rem 0;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

.decline-bars {
    margin-top: 2rem;
}

.decline-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bar-label {
    width: 80px;
    font-weight: 600;
    color: #333;
}

.bar-container-rupee {
    flex: 1;
    background: #e0e0e0;
    border-radius: 20px;
    height: 40px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    color: white;
    font-weight: 600;
    transition: width 1s ease;
}

.strength-high {
    color: #c62828;
    font-weight: 600;
}

.strength-medium {
    color: #f57c00;
    font-weight: 600;
}

.strength-weak {
    color: #388e3c;
    font-weight: 600;
}

.currency-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.currency-comp-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.currency-comp-card:hover {
    transform: translateY(-5px);
    border-color: #1565c0;
}

.currency-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.currency-rate {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1565c0;
    margin: 1rem 0;
}

.reasons-grid,
.impact-grid,
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card,
.impact-card,
.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #1565c0;
    transition: transform 0.3s ease;
}

.reason-card:hover,
.impact-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
}

.reason-card h3,
.impact-card h3,
.solution-card h3 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.stat-box {
    background: #e3f2fd;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    color: #1565c0;
    text-align: center;
}

.example-box {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    border-left: 3px solid #f57c00;
}

.stability-good {
    color: #388e3c;
    font-weight: 600;
}

.stability-moderate {
    color: #f57c00;
    font-weight: 600;
}

.stability-poor {
    color: #c62828;
    font-weight: 600;
}

.quote-section {
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 12px;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.conclusion-rupee {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid #f57c00;
}

.conclusion-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.conclusion-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.action-box {
    background: linear-gradient(135deg, #c62828 0%, #ef5350 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.action-box h2 {
    color: white;
    margin-bottom: 1rem;
}
}

.economy-content {
    padding: 4rem 0;
    .shock-grid,
    .currency-comparison-grid,
    .reasons-grid,
    .impact-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .decline-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bar-label {
        margin-bottom: 0.5rem;
    }
    
    .bar-container-rupee {
        width: 100%;
    }
    
    .timeline-table th,
    .timeline-table td,
    .currency-table th,
    .currency-table td,
    .neighbors-table th,
    .neighbors-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .shock-rate {
        font-size: 2rem;
    }
    
    .quote-section blockquote {
        font-size: 1.1rem;
    }
}

.economy-intro {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.economy-intro h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.economy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gdp-comparison, .hdi-comparison {
    margin: 4rem 0;
}

.gdp-comparison h2, .hdi-comparison h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.ranking-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rank-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.3);
}

.rank-box.warning-box {
    background: linear-gradient(135deg, var(--danger), #d32f2f);
}

.rank-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rank-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rank-box p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.ranking-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ranking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.ranking-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ranking-item {
    display: grid;
    grid-template-columns: 50px 1fr 100px;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 5px;
    background: var(--bg-light);
    transition: transform 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(5px);
}

.ranking-item.highlight {
    background: #fff3cd;
    font-weight: 600;
    border: 2px solid var(--warning);
}

.ranking-item.highlight.warning {
    background: #ffebee;
    border-color: var(--danger);
}

.ranking-item .rank {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.ranking-item .country {
    color: var(--text-dark);
}

.ranking-item .value {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-dark);
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

.comparison-table .highlight-row {
    background-color: #fff3cd;
    font-weight: 600;
}

.comparison-table .highlight-row:hover {
    background-color: #ffe69c;
}

.insight-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-color);
}

.insight-box.warning {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left-color: var(--warning);
}

.insight-box h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.insight-box p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.inequality-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.inequality-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.inequality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.inequality-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.inequality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.inequality-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.big-stat {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--danger);
    margin: 1rem 0;
}

.inequality-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.sub-stat {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.social-indicators {
    margin: 4rem 0;
}

.social-indicators h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.indicator-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--warning);
}

.indicator-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.indicator-stat {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--warning);
    margin: 1rem 0;
}

.indicator-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.indicator-card ul {
    list-style: none;
    padding-left: 0;
}

.indicator-card li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.indicator-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.caste-economy {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-radius: 15px;
}

.caste-economy h2 {
    color: var(--danger);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.caste-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.caste-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.caste-stat-card h3 {
    color: var(--danger);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.caste-stat-card ul {
    list-style: none;
    padding-left: 0;
}

.caste-stat-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.caste-stat-card .highlight {
    background: #fff3cd;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    display: block;
}

.global-comparison-detailed {
    margin: 4rem 0;
}

.global-comparison-detailed h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comp-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.comp-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-bar .country {
    min-width: 100px;
    font-weight: 600;
    color: var(--text-dark);
}

.bar-container {
    flex: 1;
    background: #e0e0e0;
    border-radius: 5px;
    height: 30px;
    position: relative;
}

.bar {
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.conclusion-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.conclusion-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.conclusion-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.conclusion-list {
    list-style: none;
    padding-left: 0;
}

.conclusion-list li {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.7;
}

.conclusion-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.call-out-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 5px solid var(--success);
}

.call-out-box h3 {
    color: var(--success);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.call-out-box ul {
    list-style: none;
    padding-left: 0;
}

.call-out-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.call-out-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.action-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px;
    margin: 4rem 0;
}

.action-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.action-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.action-box ul {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.action-box li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.action-box li:before {
    content: "►";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .ranking-highlight {
        grid-template-columns: 1fr;
    }
    
    .ranking-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .inequality-grid,
    .indicators-grid,
    .caste-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .comp-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comp-bar .country {
        min-width: auto;
    }
    
    .bar-container {
        width: 100%;
    }
}
