/* General Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-wrapper{
    background-color: #f9f9f9;
}
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    
}

.logo {
    height: 80px;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    max-width:1200px;
    margin:0 auto;
    padding: 40px 0px;
    min-height:75vh;
}

.hero-content {
    padding:40px 40px;
    max-width:60%;
}

.hero h1 {
    font-size: 3em;
    color: #0A1B7A;;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0A1B7A;;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005fa3;
}

.hero-image {
    height:400px;
    margin:0px 100px;
}

/* Features Section */
.features {
    padding: 50px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    max-width: 250px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.feature-item h3 {
    color: #0078D4;
    margin-bottom: 10px;
}

/* Download Section */
.download {
    padding: 50px 0;
    text-align: center;
}

.store-links {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-top: 20px;
}

.store-links img {
    width: 150px;
    transition: transform 0.2s ease;
}

.store-links img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #0A1B7A;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.contact-info, .footer-links {
    flex: 1;
    margin: 10px;
}

.footer-links a {
    color: #bbb;
    margin-right: 30px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 0.9em;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .hero-content{
        width:100%;
        max-width: 100%;
        
    }

    .hero h1 {
        font-size: 1.5em;
    }
    
    .hero-image{
        width:140px;
        object-fit: contain;
        margin:0 auto;
    }
    
    .store-links{
        justify-content: center;
    }
    .store-links img {
        width: 130px;
    }

    .footer-content {
        flex-direction: column;
        justify-content: left;
        align-items: start;
        margin:0px 40px;
    }

    .footer-links{
        justify-content: left;
        
    }

    .copyright{
        margin:20px 10px;
    }

}


/* WhatsApp Chat Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
}