/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f4c700;
    --primary-dark: #000000;
    --secondary-color: black;
    --accent-color: #16213e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --success-color: #4caf50;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Quantico', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
}
.nav-logo {
    height: 40px;   /* adjust as needed */
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* fills the area like background-size: cover */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* black overlay, adjust opacity */
}

/* Make sure your content is above the video */
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.store-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: var(--transition);
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge span {
    font-size: 0.75rem;
}

.store-badge strong {
    font-size: 1.1rem;
}
.store-links {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    justify-content: center;
}

.store-img {
    height: 64px; /* Adjust size here */
    width: auto;
    display: block;
    margin: 0 auto;
}

.store-badge img {
    display: block;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    min-width: 250px;
    border: 2px var(--primary-color) solid;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color:var(--text-light);
    border: 2px white solid;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    min-width: 250px;
    border: 2px var(--primary-color) solid;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 52px;    
    height: auto;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-card p,
.about-card ol,
.about-card ul {
    color: var(--text-dark);
    line-height: 1.8;
}

.about-card ol,
.about-card ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.about-card ol li,
.about-card ul li {
    margin-bottom: 0.5rem;
}

/* Section Styling */
.levels-section,
.benefits-section {
    padding: 80px 0;
}

.levels-section {
    background-color: #ffffff;
}

.benefits-section {
    background-color: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

thead {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-medium);
}

tbody tr:hover {
    background-color: rgba(255, 179, 0, 0.301);
}

tbody tr:last-child td {
    border-bottom: none;
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.cross {
    color: var(--gray-medium);
    font-size: 1.5rem;
}
.level-icon {
    height: 7.5rem; /* adjust based on your icon size */
    width: auto;
    display: block;
    margin: 0 auto; /* centers the icon inside the table cell */
}
/* Application Section */
.apply-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.apply-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    text-align: left;
}

.disclaimer {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.closing-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgb(255, 241, 216);
    
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}
.footer-logo {
    display: block;
    margin: 0 auto 20px; /* centers + adds spacing below */
    height: 128px;        /* adjust as needed */
    width: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 0.75rem 20px;
    }

    .nav-menu a {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    th,
    td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .table-responsive {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .store-links {
        width: 100%;
        display: flex;
        flex-direction: column; /* stack badges */
        align-items: center;     /* center them */
        justify-content: center;
        text-align: center;
    }

    .store-badge {
        width: 100%;
        max-width: 250px;
        align-items: center; /* centers the image */
    }
    
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .levels-section,
    .benefits-section,
    .about-section,
    .apply-section,
    .faq-section {
        padding: 60px 0;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}


