* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00B4D8;
    --primary-dark: #0096B4;
    --primary-light: #48CAE4;
    --secondary: #0A1929;
    --secondary-light: #0D2137;
    --accent: #389CD1;
    --accent-light: #5BB5E0;
    --cream: #F0F7FA;
    --cream-dark: #E1EEF5;
    --text-dark: #03314A;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.65);
    --card-bg: #021C2B;
    --input-bg: #0D2137;
    --input-border: #1E4976;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--secondary);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

body[data-lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    background-image: 
        linear-gradient(180deg, rgba(10, 25, 41, 0.2) 0%, rgba(10, 25, 41, 0.6) 100%),
        url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
}

@media (max-width: 768px) {
    .bg-pattern {
        background-attachment: scroll;
        background-position: center center;
    }
}

.mandala {
    position: fixed;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(0, 180, 216, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 180s linear infinite;
    z-index: -1;
    pointer-events: none;
    display: none; /* Hidden since we have background image */
}

.mandala::before, .mandala::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(0, 180, 216, 0.03);
    border-radius: 50%;
}

.mandala::before {
    top: 80px; left: 80px; right: 80px; bottom: 80px;
}

.mandala::after {
    top: 160px; left: 160px; right: 160px; bottom: 160px;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 42, 63, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    height: 24px;
}

.logo-text img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--secondary);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sanskrit-quote {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 3px;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Wisdom Sources Section */
.wisdom-sources {
    padding: 60px 24px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.wisdom-sources h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.sources-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.source-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.12);
    border-radius: 12px;
    transition: transform 0.24s ease, box-shadow 0.18s ease;
    overflow: hidden;
    flex: 0 0 220px; /* fixed card width */
    text-align: center;
}

.source-item.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(2,6,23,0.5);
}

.cover-wrap {
    width: 160px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(2,6,23,0.25);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
}

.source-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.source-item.card:hover .source-cover {
    transform: scale(1.03);
}

.source-sanskrit {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 18px;
    color: var(--primary);
    margin: 8px 0 6px;
}

.source-english {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .source-item { flex: 0 0 180px; }
    .cover-wrap { width: 140px; height: 190px; }
}

@media (max-width: 640px) {
    .sources-grid { gap: 14px; }
    .source-item { flex: 1 1 calc(50% - 16px); }
    .cover-wrap { width: 120px; height: 160px; }
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.lightbox.active { display:flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: transparent; border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 6px 10px; border-radius: 6px; cursor: pointer; }

.source-item:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.source-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 8px;
    object-fit: contain;
}

.source-sanskrit {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.source-english {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sources-secondary {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.sources-secondary span {
    margin: 0 8px;
}

/* Features Section */
.features {
    padding: 100px 24px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(56, 156, 209, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Roles Section */
.roles {
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 180, 216, 0.08) 50%, transparent 100%);
}

.roles-header {
    text-align: center;
    margin-bottom: 60px;
}

.roles-grid {
    display: flex; /* switch to flex so incomplete rows can be centered */
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center; /* center rows symmetrically */
}

.role-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center; /* center card content */
    flex: 0 1 320px; /* make cards sized consistently in flex layout */
    max-width: 320px;
}

.role-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.2);
}

.role-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: auto; /* center the icon horizontally */
    margin-right: auto;
}

.role-card:nth-child(1) .role-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.role-card:nth-child(2) .role-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.role-card:nth-child(3) .role-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.role-card:nth-child(4) .role-icon { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.role-card:nth-child(5) .role-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.role-card:nth-child(6) .role-icon { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.role-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.role-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* About Section */
.about {
    padding: 100px 24px;
    background: var(--cream);
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.about-image-placeholder img {
    width: 200px;
    height: auto;
    z-index: 1;
    border-radius: 20px;
}

.about-content .section-tag {
    color: var(--primary);
}

.about-content .section-title {
    color: var(--text-dark);
}

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-checklist {
    list-style: none;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.check-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.check-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Content Section */
.content-section {
    padding: 100px 24px;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.content-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.content-tab:hover, .content-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.content-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.content-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--primary);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
}

.content-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.content-info {
    padding: 20px;
}

.content-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.content-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
}

.content-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.content-source {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
}

.content-summary {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.content-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.content-empty,
.content-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

/* App Download Section */
.app-download {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.app-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 20px;
}

.app-content > p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 40px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.app-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.store-btn svg {
    width: 28px;
    height: 28px;
}

.store-btn-text {
    text-align: left;
}

.store-btn-text span {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.store-btn-text strong {
    font-size: 16px;
}

.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--secondary) 100%);
    border-radius: 40px;
    border: 8px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 80px;
    height: 24px;
    background: #333;
    border-radius: 12px;
}

.phone-screen {
    text-align: center;
    padding: 20px;
}

.phone-screen .logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 16px;
}

.phone-screen h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.phone-screen p {
    font-size: 12px;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 24px;
    background: var(--cream);
    color: var(--text-dark);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-tag {
    color: var(--primary);
}

.testimonials-header .section-title {
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info p {
    font-size: 13px;
    color: #666;
}

/* Footer */
footer {
    padding: 80px 24px 40px;
    background: #031824;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    z-index: 999;
    padding: 100px 24px 40px;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .app-download-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .app-mockup {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .sources-grid {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .source-item {
        flex-shrink: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
    }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Language specific styles */
[data-lang="hi"] .section-title,
[data-lang="hi"] h1,
[data-lang="hi"] h2,
[data-lang="hi"] h3 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
}
