/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* Basic Reset & Variables */
:root {
    --bg-dark: #001f32;
    --primary: #fff;
    --text-muted: #adb5bd;
    --accent-blue: #00e1ff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--primary);
    overflow-x: hidden; /* Horizontal scrollbar ko chupayein */
}

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

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 0;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.main-heading {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), #00a3b8);
    color: var(--bg-dark);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 10px 20px rgba(0, 225, 255, 0.2);
    transition: all 0.3s ease;
}
.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 225, 255, 0.3);
}
.btn-download i {
    margin-right: 10px;
}

/* Feature Sections */
.feature-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 100px 0;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.phone-mockup {
    flex: 1;
    text-align: center;
}

.screenshot {
    max-width: 100%;
    width: 300px;
    border-radius: 30px;
    border: 8px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.screenshot:hover {
    transform: scale(1.05);
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 1.1em;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: #012d47;
    padding: 60px 30px;
    border-radius: 20px;
    margin: 100px 0;
}
.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #004b74;
}
.logo-small {
    width: 80px;
    margin-bottom: 15px;
}
.main-footer p {
    color: var(--text-muted);
}

/* Modal for Screenshots */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    animation: zoomIn 0.3s;
}
@keyframes zoomIn {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-heading { font-size: 2.5em; }
    .text-content h2 { font-size: 2em; }
    
    .feature-section {
        flex-direction: column;
        margin: 60px 0;
    }
    .feature-section.reverse {
        flex-direction: column;
    }
    .text-content {
        text-align: center;
    }
}