* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F4F4F4;
    color: #1B2A44;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #1B2A44;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00A859;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 15px 20px;
    background: linear-gradient(135deg, #1B2A44, #00A859);
    color: #FFFFFF;
    text-align: center;
}

.hero-content {
    padding: 20px;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FF6200;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background-color: #e55b00;
}

.hero-image {
    padding: 20px;
    animation: slideUp 1s ease-out 0.3s backwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 60px 15px;
    text-align: center;
    background-color: #FFFFFF;
}

.features h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1B2A44;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 20px;
    background-color: #F4F4F4;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item img {
    width: 60px;
    margin-bottom: 15px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00A859;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* Download Section */
.download {
    padding: 60px 15px;
    text-align: center;
    background: linear-gradient(135deg, #FF6200, #1B2A44);
    color: #FFFFFF;
}

.download h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download p {
    font-size: 16px;
    margin-bottom: 25px;
}

.play-store-btn img {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.play-store-btn:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 60px 15px;
    text-align: center;
    background-color: #FFFFFF;
}

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1B2A44;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact a {
    color: #FF6200;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #e55b00;
}

/* Footer */
footer {
    background-color: #1B2A44;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 60px 15px 20px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .features h2, .download h2, .contact h2 {
        font-size: 26px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    nav ul li {
        margin: 5px 10px;
    }
    nav ul li a {
        font-size: 14px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 14px;
    }
}