/* Global Styles */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(120deg, #ffffff, #ffffff);
    color: #023e8a;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Introduction Section */
.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.intro-text {
    max-width: 800px;
}

.intro-text h1 {
    font-size: 2.5rem;
    color: #023e8a;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.2rem;
    color: #023e8a;
    margin-bottom: 30px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #003f5c;
}

.navbar .logo-img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    color: white;
    padding: 0.5rem 1rem;
    transition: 0.3s;
    border-radius: 5px;
    text-decoration: none;
}

.nav-links li a:hover {
    background: #e0f7fa;
    text-decoration: none;
}

/* Vue App Card Styles */
.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    margin: 2rem auto;
    background: #ffffffee;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    
    
}


.info-card {
    width: 100%;
    margin-bottom: 1.5rem;
}

.info-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.info-img:hover {
    transform: scale(1.02);
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #023e8a;
}

.info-card p {
    font-size: 1rem;
    color: #0077b6;
    line-height: 1.5;
    margin-bottom: 1rem;
}

button {
    padding: 0.7rem 1.5rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #0077b6, #00b4d8);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.counter {
    margin-top: 1rem;
    font-weight: bold;
    color: #023e8a;
    font-size: 1.1rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background: white;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    
}

.modal-content .navbar,
.modal-content .site-footer {
    width: 100%;
}


.modal-content main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer */
.site-footer {
    background-color: #003f5c;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.site-footer .footer-content {
    margin-bottom: 10px;
}

.site-footer .footer-content p,
.site-footer .footer-bottom p {
    margin: 0;
    line-height: 1.5;
}

.site-footer .footer-bottom {
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}