:root {
    --primary: #d32f2f;
    --primary-dark: #9a0007;
    --secondary: #ffc107;
    --light: #f5f5f5;
    --dark: #212121;
    --success: #4caf50;
    --info: #2196f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    color: white;
    font-size: 18px;
}

.nav-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

nav {
    display: none;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

nav.active {
    display: block;
}

nav ul {
    list-style: none;
}

nav ul li {
    border-bottom: 1px solid #eee;
}

nav ul li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

nav ul li a:hover {
    background-color: #f5f5f5;
}

/* Banner Styles */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300" viewBox="0 0 600 300"><rect width="600" height="300" fill="%23d32f2f"/><circle cx="150" cy="150" r="50" fill="%23ffc107" opacity="0.2"/><circle cx="450" cy="100" r="70" fill="%23ffc107" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.banner h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.banner p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.download-btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 10px 0;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


.fix-download-btn {
    position: fixed;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    background-color: var(--secondary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse 1.5s infinite;
}

.fix-download-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.fix-download-btn:active {
    transform: translateX(-50%) scale(0.95);
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.4);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Section Styles */
section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 24px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin: 8px auto;
    border-radius: 2px;
}

/* App Info Styles */
.app-info {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin: 20px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 10px 5px;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* FAQ Styles */
.faq-container {
    margin-top: 20px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Keywords Section */
.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.keyword {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    color: var(--dark);
}

/* Related Apps */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.app-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-image {
    height: 120px;
    background: linear-gradient(to bottom right, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}

.app-content {
    padding: 15px;
}

.app-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.app-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.app-btn {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}

.btn-download {
    background: var(--primary);
    color: white;
}

.btn-more {
    background: #f0f0f0;
    color: var(--dark);
}

/* Footer Styles */
footer {
    background: var(--dark);
    color: white;
    padding: 30px 0 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--primary);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

/* Hindi Content */
.hindi-content {
    margin-top: 10px;
    font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, sans-serif;
    color: #444;
    direction: ltr;
    text-align: left;
}

/* Page Content Styles */
.page-content {
    min-height: 60vh;
    padding: 20px 0;
}

.app-detail {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.screenshots {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.screenshot {
    flex: 0 0 auto;
    width: 200px;
    height: 350px;
    background: linear-gradient(to bottom right, #e0e0e0, #f0f0f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.legal-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.legal-content h3 {
    margin: 20px 0 10px;
    color: var(--primary-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (min-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .banner h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 25px;
    }
}

/* Page Navigation */
.page-nav {
    display: none;
}

.page {
    display: none;
}

.page.active {
    display: block;
}