/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.pb-0{
    padding-bottom: 0px;
}
.pt-0{
    padding-top: 0px;
}
/* Header */
header {
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;

}

/* Hero Image */
.hero {
    margin-bottom: 20px;
    
}

.hero-image {
    width: 100%;
    border-radius: 8px;
}

/* Navigation Links */
.container-fluid{
    width: 100%;

}
.navs{
    background: #EFF6FF;
    width: 100%;
    height: 55px;
    justify-content: center;
    align-items: center;
    padding: 15px 60px;

}
.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 600px;
}

.nav-links a:hover {
    color: #061AB1;
}

/* Main Content */
h1 {
    font-size: 1.8em;
    font-weight: 600;
    color: #061AB1;
    margin-bottom: 10px;
    margin-top: 20px;
}

p {
    color: #666;
    margin-bottom: 20px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    text-decoration: none;
    color: white;
    background-color: #061AB1;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: regular;
}

.btn:hover {
    background-color: #003399;
}

/* Old App Link */
.old-app-link {
    font-size: 0.9em;
}

.old-app-link a {
    color: #0044cc;
    text-decoration: none;
    
}

.old-app-link a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #666;
}

footer a {
    color: #061AB1;
    text-decoration: none;
}
.footer-line {
    width: 100%;
    height: 6px;
    background-color: #FFDD04;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000; /* Ensures it stays above other elements */
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
