:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --secondary-color: #F59E0B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(37, 99, 235, 0.15);
    z-index: -1;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #E0E7FF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 5rem;
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #E5E7EB;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-card ion-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-bg {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-bg ion-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 10px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info p {
    color: #9CA3AF;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-info .logo span {
    color: var(--white);
    /* White for footer logo contrast */
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background-color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
}

/* Chatbot Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: transform 0.3s, background-color 0.3s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chat-window.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-title ion-icon {
    font-size: 1.5rem;
}

.chat-title h4 {
    font-size: 1rem;
    margin: 0;
}

.chat-title span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.chat-close-btn:hover {
    opacity: 1;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background-color: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #E5E7EB;
    background-color: var(--white);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 25px;
    outline: none;
    font-family: inherit;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
}

.chat-input-area button:hover {
    background-color: var(--primary-dark);
}

.wa-link {
    display: inline-block;
    margin-top: 5px;
    padding: 8px 16px;
    background-color: #25D366;
    color: white !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.wa-link:hover {
    background-color: #1ebe5d;
}

/* ===========================================
   ADDITIONAL PAGES STYLES - MODERN REDESIGN
   =========================================== */

/* Keyframe Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header (for sub-pages) - Enhanced */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #2563EB 50%, #1E40AF 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-header h1 .highlight {
    color: #FCD34D;
}

.page-header h1 .highlight::after {
    background-color: rgba(252, 211, 77, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Registration Section - Glassmorphism */
.registration-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #60A5FA 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.registration-info {
    animation: fade-in-up 0.8s ease-out;
}

.registration-info h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.registration-info h1 .highlight {
    color: #FCD34D;
}

.registration-info>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 45px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.info-card ion-icon {
    font-size: 2rem;
    color: #FCD34D;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-card h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.registration-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 24px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
    position: relative;
    overflow: hidden;
}

.registration-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #60A5FA, #FCD34D);
}

.registration-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    padding: 12px;
    background: #F3F4F6;
    border-radius: 10px;
}

/* Programs Detail Page - Modern Cards */
.programs-detail {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
}

.programs-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.03;
}

.program-detail-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 45px;
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    margin-bottom: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fade-in-up 0.6s ease-out backwards;
}

.program-detail-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-detail-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-detail-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-detail-card:nth-child(4) {
    animation-delay: 0.4s;
}

.program-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2563EB, #60A5FA);
    opacity: 0;
    transition: opacity 0.3s;
}

.program-detail-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.program-detail-card:hover::before {
    opacity: 1;
}

.program-icon-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.program-icon-large::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 31px;
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.program-detail-card:hover .program-icon-large {
    transform: scale(1.05) rotate(3deg);
}

.program-detail-card:hover .program-icon-large::after {
    opacity: 1;
}

.program-icon-large ion-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.program-content h2 {
    font-size: 1.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.program-detail-card:hover .program-content h2 {
    color: var(--primary-color);
}

.program-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
}

.program-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    padding: 10px 14px;
    background: #F8FAFC;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #EFF6FF;
    transform: translateX(5px);
}

.highlight-item ion-icon {
    color: #10B981;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.program-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.program-meta ion-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.program-content .btn-primary {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.program-content .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ===========================================
   END ADDITIONAL PAGES STYLES
   =========================================== */

/* Response */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        gap: 15px;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chat-window {
        width: calc(100% - 40px);
        bottom: 100px;
        right: 20px;
        left: 20px;
    }

    /* Registration Page Responsive */
    .registration-section {
        padding: 100px 0 60px;
    }

    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .registration-info h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .registration-info>p {
        text-align: center;
    }

    .info-card {
        padding: 18px 20px;
    }

    .info-card:hover {
        transform: translateX(0);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .registration-form-card h2 {
        font-size: 1.5rem;
    }

    /* Programs Detail Page Responsive */
    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .programs-detail {
        padding: 50px 0 70px;
    }

    .program-detail-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }

    .program-detail-card:hover {
        transform: translateY(-5px);
    }

    .program-detail-card::before {
        width: 100%;
        height: 4px;
        left: 0;
        top: 0;
    }

    .program-icon-large {
        margin: 0 auto;
        width: 100px;
        height: 100px;
    }

    .program-icon-large ion-icon {
        font-size: 2.5rem;
    }

    .program-content h2 {
        font-size: 1.5rem;
    }

    .program-tagline {
        font-size: 0.95rem;
    }

    .program-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .highlight-item {
        padding: 12px;
    }

    .program-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 0;
    }

    .program-content .btn-primary {
        width: 100%;
        padding: 14px 24px;
    }
}