/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --secondary-color: #6B47DC;
    --accent-color: #00D4AA;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo-fix {
    color: #FF9933;
    font-weight: 800;
}

.logo-my {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.6rem;
}

.logo-india {
    color: #138808;
    font-weight: 800;
    position: relative;
}

.logo-india::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #F3F4F6;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 1.5rem;
    border: 1px solid #E5E7EB;
}

.india-flag {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.hero-title {
    margin-bottom: 1.25rem;
}

.main-title {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111827;
}

.hindi-text {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #6B47DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 500px;
    color: #4B5563;
    line-height: 1.6;
    font-weight: 400;
}


.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}



/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background: #0066FF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgb(0 102 255 / 0.2);
}

.btn-primary-new:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 102 255 / 0.3);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background: white;
    color: #374151;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-new:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-2px);
}

/* Platform Icons */
.platform-icons {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.platform-text {
    font-size: 1rem;
    color: #6B7280;
    display: block;
    font-weight: 500;
    font-style: italic;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.store-button:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.google-play {
    background: #000;
}

.apple-store {
    background: #000;
}

.store-icon {
    width: 24px;
    height: 24px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    color: #888;
}

.store-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.platform-link:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.platform-icon {
    width: 20px;
    height: 20px;
    color: #6B7280;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
}

.phone-frame {
    width: 360px;
    height: 720px;
    background: #1F2937;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: #0066FF;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.app-logo-hindi {
    color: #FFE5B4;
}

.app-logo-english {
    color: white;
}

.app-logo-india {
    color: #90EE90;
}

.app-ai-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 8px;
    text-transform: uppercase;
}

.app-nav {
    display: flex;
    gap: 4px;
}

.nav-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
}

.app-content {
    height: calc(100% - 120px);
    background: #F8F9FA;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Report Button */
.report-button {
    background: #0066FF;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-button:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

/* Issue Card */
.issue-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.issue-card.active-issue {
    border: 2px solid #0066FF;
}

.issue-header {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.issue-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-reported {
    background: #FFC107;
}

.status-text {
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.issue-distance {
    color: #6B7280;
}

.issue-image {
    height: 120px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
}

.issue-type-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.issue-details {
    padding: 1rem;
}

.issue-details h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.issue-location {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
}

.issue-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.upvote-btn {
    background: #F3F4F6;
    color: #374151;
}

.upvote-btn:hover {
    background: #E5E7EB;
}

.volunteer-btn {
    background: #DCFCE7;
    color: #16A34A;
}

.volunteer-btn:hover {
    background: #BBF7D0;
}

.fund-btn {
    background: #FEF3C7;
    color: #D97706;
}

.fund-btn:hover {
    background: #FDE68A;
}

/* Progress Card */
.progress-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.progress-icon {
    font-size: 1.25rem;
}

.progress-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
}

.progress-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6B7280;
}

.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 0.75rem;
    display: flex;
    justify-content: space-around;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #9CA3AF;
    font-size: 0.75rem;
}

.nav-item.active {
    color: #0066FF;
}

.nav-item svg {
    width: 24px;
    height: 24px;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.problem-card:hover::before {
    transform: translateX(0);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
}

/* Three Pillars */
.three-pillars {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pillar {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-report::before {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.pillar-fix::before {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.pillar-fund::before {
    background: linear-gradient(90deg, #8B5CF6 0%, #7C3AED 100%);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.pillar-report .pillar-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.pillar-fix .pillar-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.pillar-fund .pillar-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.pillar h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pillar-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pillar-features {
    list-style: none;
    space-y: 1rem;
}

.pillar-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.pillar-features li:last-child {
    border-bottom: none;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-highlight {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border: none;
}

.feature-highlight::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Gamification Showcase */
.gamification-showcase {
    margin-top: 4rem;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gamification-showcase h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.points-system {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.point-category {
    text-align: center;
}

.point-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.point-action {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.badges-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.badge:hover .badge-icon {
    transform: scale(1.1);
}

.badge-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Impact Section */
.impact {
    padding: 80px 0;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-story {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-story:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.impact-story img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.story-meta {
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Community */
.why-community {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit {
    text-align: center;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.benefit p {
    color: var(--text-light);
}

/* Get Involved */
.get-involved {
    padding: 80px 0;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.involvement-card:hover {
    border-color: var(--primary-color);
}

.involvement-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.involvement-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-btn:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.app-btn div {
    text-align: left;
}

.app-btn span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

.app-btn strong {
    display: block;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background-color: #1A1A1A;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hindi-text {
        font-size: 1.75rem;
    }
    
    .english-text {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-pillars-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-pillar {
        width: 100%;
    }
    
    .pillar-divider {
        display: none;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
    
    .platform-buttons {
        justify-content: center;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .store-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-frame {
        width: 320px;
        height: 640px;
    }
    
    .problem-grid,
    .features-grid,
    .impact-stories {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}/* Enhanced App Mockup Styles */

/* Karma Wallet */
.karma-wallet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-balance {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wallet-label {
    font-size: 0.65rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-points {
    font-size: 1.1rem;
    font-weight: 700;
}

.wallet-cash {
    font-size: 0.9rem;
    font-weight: 600;
    color: #90EE90;
}

.user-badge {
    background: white;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
}

.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

/* Enhanced Report Button */
.report-button.enhanced {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.ai-tag {
    position: absolute;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 600;
}

/* Enhanced Issue Card */
.issue-card.enhanced-issue {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B6B 0%, #FF9F1A 100%) border-box;
}

.status-hot {
    background: #FF6B6B;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.reward-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.issue-severity {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Discussion Thread */
.thread-preview {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.75rem 0;
}

.thread-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.thread-header svg {
    stroke: #6B7280;
}

.thread-snippet {
    font-size: 0.7rem;
    color: #6B7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-thread {
    color: #0066FF;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced Action Buttons */
.squad-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.squad-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: translateY(-2px);
}

.action-btn.active {
    background: #0066FF;
    color: white;
}

/* Rewards Card */
.rewards-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
}

.rewards-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #92400E;
}

.rewards-icon {
    font-size: 1.2rem;
}

.rewards-title {
    font-size: 0.9rem;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.hero-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400E;
}

.hero-reward {
    font-size: 0.7rem;
    font-weight: 600;
    color: #059669;
}

.fund-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border-top: 1px solid rgba(146, 64, 14, 0.2);
    padding-top: 0.75rem;
}

.fund-item {
    text-align: center;
}

.fund-label {
    display: block;
    font-size: 0.6rem;
    color: #92400E;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.fund-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400E;
}