:root {
    --brand-dark: #1a2332;
    --brand-yellow: #fecf07;
    --brand-blue: #2563eb;
    --brand-blue-dark: #050C39;
    --brand-blue-light: #3b82f6;

  --text-dark: #1a1a1a;
  --text-muted: #555;
  --bg-light: #f8f9fb;
  --card-bg: #ffffff;
  --border-radius: 12px;
  --transition-speed: 0.3s;
}


/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-yellow);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--brand-yellow);
    border-color: var(--brand-yellow);
}


/* --- INFO CARDS (From Previous Version) --- */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--brand-blue-light);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Info Card Text */
.info-card h3 {
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-card ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
    color: var(--text-muted);
}

.info-card li {
    margin-bottom: 0.5rem;
}










.progress-indicator {
    margin-top: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.progress-text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fecf07;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Info Section */
.info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fecf07;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.card-content {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 50%;
}

.card-list li strong {
    color: #1a2332;
    font-weight: 600;
}

.card-note {
    margin-top: 1rem;
    padding: 0.875rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-left: 3px solid #2563eb;
}

.note-icon {
    flex-shrink: 0;
    color: #2563eb;
    margin-top: 0.1rem;
}

.card-note span {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* AOS animation styles */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .info-section {
        padding: 3rem 1rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}












/* --- HERO SECTION (Full-Width Video Background) --- */


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Background video container */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Actual video */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Overlay for dark effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.6); /* Subtle dark overlay */
    z-index: 1;
}

/* Content over video */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

/* Title and subtitle styling */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-yellow);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* CTA button */
.cta-button {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--brand-yellow);
    border: 2px solid var(--brand-yellow);
}


.site-main {
    flex: 1;
    padding-top: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.site-header {
    margin-bottom: 0;
}
