/* Variables */
:root {
    --primary-color: #2E7D32; /* गडद हिरवा */
    --secondary-color: #4CAF50; /* फिकट हिरवा */
    --accent-color: #FF9800; /* केशरी */
    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --light-bg: #f9fbf9;
    --font-main: 'Noto Sans Devanagari', sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

.section-padding { padding: 80px 0; }

.section-title, .section-title-left {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title { text-align: center; font-size: 2.2rem; }
.section-title-left { text-align: left; font-size: 2.2rem; }

/* underline effect */
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--accent-color); margin: 10px auto 0;
}
.section-title-left::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--accent-color); margin: 10px 0 0;
}

/* --- Header & Navbar --- */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar-container { display: flex; justify-content: space-between; align-items: center; }

.logo h1 { color: var(--primary-color); font-size: 1.8rem; margin: 0; line-height: 1; }
.logo .highlight { color: var(--accent-color); }
.tagline { font-size: 0.65rem; color: #777; letter-spacing: 0.5px; padding-top: 2.5%; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links li a { font-weight: 600; color: var(--text-dark); font-size: 1rem; }
.nav-links li a:hover { color: var(--primary-color); }

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}
.btn-primary:hover { background-color: #1b5e20; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section (Fixed Background) --- */
.hero {
    /* ONLINE IMAGE LINK USED FOR IMMEDIATE FIX */
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay text clarity */
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; justify-content: center; gap: 15px; }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}
.btn-secondary:hover { background: var(--white); color: var(--primary-color); }

/* --- Features --- */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px;
}

.feature-card {
    background: var(--white); padding: 30px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center;
    transition: 0.3s; border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--primary-color); }

.icon-box { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }

/* --- About Section (Layout Fixed) --- */
.bg-light { background-color: var(--light-bg); }

.about-wrapper { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-list { margin-top: 20px; }
.about-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-list li i { color: var(--primary-color); font-size: 1.1rem; }

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Process --- */
.process-steps { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.step { flex: 1; min-width: 200px; text-align: center; padding: 10px; }
.step-icon {
    width: 60px; height: 60px; 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: 0 auto 15px;
}

/* --- App CTA (Download Button Fixed) --- */
.app-cta {
    background: linear-gradient(135deg, var(--primary-color), #43a047);
    padding: 70px 0; color: var(--white); text-align: center;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-box p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.9; }

/* Google Play Button Styling */
.btn-google-play {
    display: inline-flex; align-items: center; gap: 12px;
    background-color: #000; color: #fff;
    padding: 8px 20px; border-radius: 8px; border: 1px solid #444;
    transition: transform 0.2s; text-align: left;
}
.btn-google-play:hover { transform: scale(1.05); }
.btn-google-play i { font-size: 24px; }
.btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-text span:first-child { font-size: 10px; text-transform: uppercase; }
.btn-text .store-name { font-size: 18px; font-weight: bold; }

/* --- Footer --- */
.footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h3 { color: var(--white); margin-bottom: 15px; }
.footer h4 { color: var(--white); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #333; display: inline-block; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
.footer-links a:hover, .footer-legal a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9rem; }

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2rem; }
    .about-wrapper { flex-direction: column; }
    .about-image { width: 100%; height: 300px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Improved About Section --- */
.highlight-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* Statistics Grid Styling */
.about-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
    min-width: 100px;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.text-content p {
    text-align: justify;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Ensure Image is centered and looks good */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
}

.about-image img {
    max-width: 80%; /* Prevents logo from being too huge */
    height: auto;
}

/* Service List Styling (Bullet Points) */
.service-list {
    text-align: left;
    margin-top: 15px;
    padding-left: 5px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px; /* Aligns icon with text */
}

/* Ensure cards align perfectly */
.feature-card {
    height: 100%; 
    display: flex;
    flex-direction: column;
}

/* Modal Styling */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; 
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border-top: 5px solid #2c5c2e; /* Green Theme */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideDown 0.3s;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover { color: #f7a31c; }

.modal-icon i {
    font-size: 48px;
    color: #2c5c2e;
    margin-bottom: 15px;
}

.modal-body h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.modal-body p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-ok-btn {
    background: #2c5c2e;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.modal-ok-btn:hover { background: #f7a31c; }

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideDown { from {transform: translateY(-50px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }
