:root {
    --primary-color: #4a00e0;
    --secondary-color: #8e2de2;
    --accent-color: #f59e0b;
    --gold-color: #ffd700;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --table-border-color: #9cb0c5;
    --table-grid-color: #d5deec;
    --table-mobile-bg: #062f52;
    --table-mobile-bg-alt: #0b3d67;
    --table-mobile-header-bg: #f5d210;
    --table-mobile-header-text: #142846;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: clamp(240px, 42vh, 460px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    margin-top: 0;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-banner.is-loading .hero-background {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-banner.is-ready .hero-background {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 0, 224, 0.38), 
        rgba(142, 45, 226, 0.28));
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid white;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .animate-fade-up,
.hero-content .animate-fade-in {
    animation: none;
    opacity: 1;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: none;
    opacity: 1;
}

/* Stats Section - EXACT SAME AS PROSPECTIVE STUDENTS */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    opacity: 0;
    animation: countUp 0.5s ease forwards;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Main Content */
.prospective-content-section {
    padding: 15px 0;
    background: white;
}

.content-wrapper {
    max-width: 1220px;
    margin: 0 auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Process Section */
.process-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.step-content {
    margin-left: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-line {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: 1;
}

.process-step:last-child .step-line {
    display: none;
}

/* Programs Section */
.programs-section {
    margin-bottom: 80px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotateY(180deg);
}

.program-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin-bottom: 80px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-image {
    position: relative;
    z-index: 2;
}

.cta-image i {
    font-size: 200px;
    opacity: 0.2;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eef1ff;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 0, 224, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: #f8f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}


/* ENHANCED TABLE STYLES */
.content-wrapper table,
.default-content table,
.faq-section table,
.program-card table,
.fee-section table,
.scholarship-section table,
.timeline-section table {
    width: 100%;
    margin: 2em 0;
    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: var(--shadow);
    border-radius: 12px;
    background: white;
    animation: none;
    opacity: 1;
    transition: var(--transition);
    border: 2px solid var(--table-border-color);
}

.content-wrapper table th,
.default-content table th,
.faq-section table th,
.program-card table th,
.fee-section table th,
.scholarship-section table th,
.timeline-section table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 500;
    border: 1px solid var(--table-grid-color);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.content-wrapper table th:after,
.default-content table th:after,
.faq-section table th:after,
.program-card table th:after,
.fee-section table th:after,
.scholarship-section table th:after,
.timeline-section table th:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.content-wrapper table th:hover:after,
.default-content table th:hover:after,
.faq-section table th:hover:after,
.program-card table th:hover:after,
.fee-section table th:hover:after,
.scholarship-section table th:hover:after,
.timeline-section table th:hover:after {
    left: 100%;
}

.content-wrapper table td,
.default-content table td,
.faq-section table td,
.program-card table td,
.fee-section table td,
.scholarship-section table td,
.timeline-section table td {
    padding: 20px;
    border: 1px solid var(--table-grid-color);
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.content-wrapper table tr:nth-child(even),
.default-content table tr:nth-child(even),
.faq-section table tr:nth-child(even),
.program-card table tr:nth-child(even),
.fee-section table tr:nth-child(even),
.scholarship-section table tr:nth-child(even),
.timeline-section table tr:nth-child(even) {
    background: #f8f9ff;
}

.content-wrapper table tr:hover,
.default-content table tr:hover,
.faq-section table tr:hover,
.program-card table tr:hover,
.fee-section table tr:hover,
.scholarship-section table tr:hover,
.timeline-section table tr:hover {
    background: #eef1ff;
}

/* Caption styling */
.content-wrapper table caption,
.default-content table caption,
.faq-section table caption,
.program-card table caption,
.fee-section table caption,
.scholarship-section table caption,
.timeline-section table caption {
    caption-side: top;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    border-radius: 10px;
    border: 1px solid var(--table-grid-color);
}

/* Fee table specific styling */
.fee-table {
    border: 2px solid var(--accent-color);
}

.fee-table th {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24) !important;
}

.fee-table tr:hover td:first-child {
    border-left-color: var(--gold-color);
}

/* Price column styling */
td[data-type="price"] {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

td[data-type="price"]:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.2);
}

/* Responsive tables */
@media (max-width: 768px) {
    .content-wrapper table,
    .default-content table,
    .faq-section table,
    .program-card table,
    .fee-section table,
    .scholarship-section table,
    .timeline-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        min-width: 100%;
        border: 2px solid var(--table-border-color);
        border-radius: 0;
        background: var(--table-mobile-bg);
    }
    
    .content-wrapper table th,
    .default-content table th,
    .faq-section table th,
    .program-card table th,
    .content-wrapper table td,
    .default-content table td,
    .faq-section table td,
    .program-card table td,
    .fee-section table th,
    .fee-section table td,
    .scholarship-section table th,
    .scholarship-section table td,
    .timeline-section table th,
    .timeline-section table td {
        padding: 12px 10px;
        font-size: 0.92rem;
        border: 1px solid var(--table-border-color);
        white-space: normal;
        line-height: 1.45;
    }

    .content-wrapper table th,
    .default-content table th,
    .faq-section table th,
    .program-card table th,
    .fee-section table th,
    .scholarship-section table th,
    .timeline-section table th {
        background: var(--table-mobile-header-bg);
        color: var(--table-mobile-header-text);
        font-weight: 700;
        text-shadow: none;
    }

    .content-wrapper table td,
    .default-content table td,
    .faq-section table td,
    .program-card table td,
    .fee-section table td,
    .scholarship-section table td,
    .timeline-section table td {
        background: var(--table-mobile-bg);
        color: #eef5ff;
    }

    .content-wrapper table tr:nth-child(even) td,
    .default-content table tr:nth-child(even) td,
    .faq-section table tr:nth-child(even) td,
    .program-card table tr:nth-child(even) td,
    .fee-section table tr:nth-child(even) td,
    .scholarship-section table tr:nth-child(even) td,
    .timeline-section table tr:nth-child(even) td {
        background: var(--table-mobile-bg-alt);
    }

    .content-wrapper table tr:hover,
    .default-content table tr:hover,
    .faq-section table tr:hover,
    .program-card table tr:hover,
    .fee-section table tr:hover,
    .scholarship-section table tr:hover,
    .timeline-section table tr:hover {
        background: transparent;
    }

    .content-wrapper table caption,
    .default-content table caption,
    .faq-section table caption,
    .program-card table caption,
    .fee-section table caption,
    .scholarship-section table caption,
    .timeline-section table caption {
        background: #042747;
        color: #ffffff;
        border: 2px solid var(--table-border-color);
        border-bottom: none;
        border-radius: 0;
        text-align: left;
        margin-bottom: 0;
        padding: 12px 10px;
        font-size: 1.05rem;
    }

    td[data-type="price"] {
        color: #fff5bf;
        font-size: 1rem;
    }

    td[data-type="price"]:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .content-wrapper table th,
    .default-content table th,
    .faq-section table th,
    .program-card table th,
    .fee-section table th,
    .scholarship-section table th,
    .timeline-section table th,
    .content-wrapper table td,
    .default-content table td,
    .faq-section table td,
    .program-card table td,
    .fee-section table td,
    .scholarship-section table td,
    .timeline-section table td {
        padding: 14px 12px;
        font-size: 0.95rem;
    }
}

/* Content from database styles */
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    color: var(--dark-color);
    margin-top: 2em;
    margin-bottom: 1em;
    position: relative;
    padding-bottom: 10px;
}

/* Tighten spacing between download card headings and images */
.content-wrapper .col-md-4.mb-3 h3.editable.pb-5 {
    margin-top: 0.6em;
    margin-bottom: 0.35em;
    padding-bottom: 0 !important;
    line-height: 1.25;
}

.content-wrapper .col-md-4.mb-3 a img {
    margin: 0.15em auto 0 !important;
}



.content-wrapper p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: #555;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 2em;
    padding-left: 2em;
}

.content-wrapper li {
    margin-bottom: 0.5em;
    position: relative;
}

.content-wrapper ul li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: -1.5em;
}

/* CMS content layout (Bootstrap-style classes from editor) */
.content-wrapper .component-toolbar {
    display: none !important;
}

.content-wrapper .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.content-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.content-wrapper [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    min-width: 0;
}

@media (min-width: 768px) {
    .content-wrapper .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .content-wrapper .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
    .content-wrapper .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .content-wrapper .col-md-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
}

.content-wrapper .prospectus-uniforms {
    position: relative;
    color: #ffffff;
    margin: 0;
    padding: 1.5rem 0;
    display: flow-root;
}

.content-wrapper .prospectus-uniforms::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #032c4b;
    z-index: -1;
}

.content-wrapper .prospectus-uniforms,
.content-wrapper .prospectus-uniforms p,
.content-wrapper .prospectus-uniforms li,
.content-wrapper .prospectus-uniforms h3 {
    color: #ffffff;
}

.content-wrapper .prospectus-uniforms img,
.content-wrapper [class*="col-"] img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0.75rem 0 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    object-fit: contain;
}

.content-wrapper img {
    max-width: 100%;
    width: auto;
    height: auto !important;
    border-radius: 12px;
    margin: 1.25rem 0;
    box-shadow: var(--shadow);
    display: block;
    object-fit: contain;
}

.content-wrapper img:not(.is-decoded) {
    background: linear-gradient(110deg, #eef2ff 8%, #f8f9ff 18%, #eef2ff 33%);
    background-size: 200% 100%;
    animation: prospectusShimmer 1.2s linear infinite;
    min-height: 180px;
}

.content-wrapper img.is-decoded {
    animation: none;
    background: none;
    min-height: 0;
}

@keyframes prospectusShimmer {
    to { background-position-x: -200%; }
}

.content-wrapper img:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.content-wrapper blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2em;
    margin: 2em 0;
    font-style: italic;
    color: #666;
    background: #f8f9ff;
    padding: 2em;
    border-radius: 0 10px 10px 0;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.content-wrapper a:hover {
    border-bottom: 2px solid var(--primary-color);
}

/* Floating animations */
@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: floatElement 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: clamp(260px, 55vh, 520px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .step-line {
        left: 50%;
        top: 60px;
        bottom: -40px;
        transform: translateX(-50%);
    }
    
    .cta-card {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-toggle {
        align-self: flex-end;
    }
