:root {
    --whu-darkblue: #001731;
    --whu-blue: #007AFF;
    --whu-light: #f8f9fa;
    --whu-accent: #00C6FF;
    --whu-purple: #6a1b9a;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--whu-darkblue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s, visibility 0.5s;
}

.whu-logo-loader {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    position: relative;
}

.whu-logo-loader .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--whu-blue);
    animation: spin 1.5s linear infinite;
}

.whu-logo-loader .circle:nth-child(2) {
    border-top-color: var(--whu-accent);
    animation: spin 2s linear infinite reverse;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.whu-logo-loader .circle:nth-child(3) {
    border-top-color: white;
    animation: spin 1s linear infinite;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

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

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--whu-darkblue) !important;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    height: 50px;
    margin-right: 12px;
}

.nav-link {
    color: var(--whu-darkblue) !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    padding: 10px 0 !important;
    transition: all 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background-color: var(--whu-blue);
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
    right: 0;
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    margin: 5px 10px;
    width: calc(100% - 20px);
}

.dropdown-item:hover {
    background-color: var(--whu-blue);
    color: white !important;
    transform: translateX(8px);
}

.lang-dropdown .dropdown-toggle {
    color: var(--whu-darkblue) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.lang-dropdown .dropdown-toggle::after {
    margin-left: 8px;
}

.btn-student {
    background-color: transparent;
    border: 2px solid var(--whu-darkblue);
    color: var(--whu-darkblue) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin: 0 10px;
    transition: all 0.3s;
}

.btn-student:hover {
    background-color: var(--whu-darkblue);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-apply {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 30px !important;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 23, 49, 0.8), rgba(0, 23, 49, 0.9)), url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 90px 0 100px;
    color: white;
    position: relative;
}


.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--whu-accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
}

.hero-btn {
    background: linear-gradient(135deg, var(--whu-accent), var(--whu-blue));
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 122, 255, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}

.hero-btn:hover::before {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: var(--whu-light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.03" d="M0,128L48,112C96,96,192,64,288,80C384,96,480,160,576,165.3C672,171,768,117,864,101.3C960,85,1056,107,1152,112C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: waveReverse 25s linear infinite;
}

@keyframes waveReverse {
    0% { background-position-x: 0; }
    100% { background-position-x: -1000px; }
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--whu-blue);
    margin-bottom: 25px;
    transition: all 0.4s;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
    color: var(--whu-accent);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--whu-darkblue);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Programs Section */
.programs-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.03" d="M0,128L48,112C96,96,192,64,288,80C384,96,480,160,576,165.3C672,171,768,117,864,101.3C960,85,1056,107,1152,112C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: waveReverse 25s linear infinite;
}

@keyframes waveReverse {
    0% { background-position-x: 0; }
    100% { background-position-x: -1000px; }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--whu-blue);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
    border-radius: 10px;
}

.section-desc {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 30px;
}

.program-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: none;
    position: relative;
    background: white;
}

.program-card .program-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 23, 49, 0.8));
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    opacity: 1;
}

.program-card:hover .overlay {
    background: linear-gradient(transparent, var(--whu-darkblue));
}

.program-card:hover .program-img {
    transform: scale(1.1);
}

.program-body {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: white;
}

.program-level {
    color: var(--whu-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.program-title {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.program-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-weight: 500;
    border-bottom: 1px dashed #eee;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li:before {
    content: "\f00c";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--whu-accent);
    font-size: 1rem;
}

.btn-program {
    background-color: var(--whu-darkblue);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0, 23, 49, 0.2);
}

.btn-program i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-program:hover {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.btn-program:hover i {
    transform: translateX(5px);
}

.dba-card .overlay {
    background: linear-gradient(transparent, rgba(106, 27, 154, 0.8));
}

.dba-card:hover .overlay {
    background: linear-gradient(transparent, var(--whu-purple));
}

.dba-card .btn-program {
    background-color: var(--whu-purple);
}

.dba-card .btn-program:hover {
    background: linear-gradient(135deg, #9c27b0, var(--whu-purple));
}

.dba-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(106, 27, 154, 0.3);
}

.program-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--whu-darkblue);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--whu-accent);
    color: white;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.feature-box {
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-desc {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(120deg, var(--whu-darkblue), #003366);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.15" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: waveReverse 25s linear infinite;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: white;
    color: var(--whu-blue);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    background-color: var(--whu-darkblue);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    color: var(--whu-accent);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    transition: transform 0.3s;
    color: var(--whu-accent);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s;
    color: white;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    border: none;
    color: white;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 80px;
    text-align: center;
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* About section */
.about-header {
    background: linear-gradient(rgba(0, 23, 49, 0.85), rgba(0, 23, 49, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    color: white;
    position: relative;
    text-align: center;
}

/* .about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.2" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    /* animation: waveReverse 20s linear infinite; 
} */

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.breadcrumb-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--whu-accent);
}

.about-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.about-content {
    margin-bottom: 80px;
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 30px;
}

.about-text h3 {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
}

.highlight-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-box-dark {
    background: linear-gradient(135deg, var(--whu-darkblue), var(--whu-blue));
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin: 40px 0;
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
}

.highlight-box-dark h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.highlight-box-dark p {
    color: #fff;
}

.mission-section {
    padding: 80px 0;
    background-color: var(--whu-light);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.05" d="M0,128L48,112C96,96,192,64,288,80C384,96,480,160,576,165.3C672,171,768,117,864,101.3C960,85,1056,107,1152,112C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: waveReverse 25s linear infinite;
}

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.mission-item h3 {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-item p {
    color: #666;
    line-height: 1.7;
}

.timeline-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--whu-accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--whu-blue);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--whu-accent);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-content h3 {
    color: var(--whu-darkblue);
    font-weight: 800;
    margin-bottom: 15px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--whu-blue);
    margin-bottom: 10px;
}

.leadership-section {
    padding: 100px 0;
    background-color: var(--whu-light);
    position: relative;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
    height: 100%;
    margin-bottom: 30px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.leader-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.leader-body {
    padding: 25px;
}

.leader-name {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.leader-title {
    color: var(--whu-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    color: #666;
    margin-bottom: 20px;
}

.about-social-links {
    display: flex;
}

.about-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--whu-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
    color: var(--whu-darkblue);
}

.about-social-link:hover {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    transform: translateY(-3px);
}

/* Academics programs */
.program-header {
    background: linear-gradient(rgba(0, 23, 49, 0.85), rgba(0, 23, 49, 0.9)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .about-header {
    background: linear-gradient(rgba(0, 23, 49, 0.85), rgba(0, 23, 49, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    color: white;
    position: relative;
    text-align: center;
} */

/* .program-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230077ff" fill-opacity="0.2" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: waveReverse 20s linear infinite;
} */

.program-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.program-header p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 23, 49, 0.9));
    transition: all 0.5s ease;
}

.program-card:hover .program-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--whu-darkblue));
}

.program-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--whu-darkblue);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--whu-accent);
    color: white;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #eee;
    padding-top: 15px;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.featured-program {
    background: linear-gradient(135deg, var(--whu-darkblue), #003366);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.featured-content {
    padding: 60px;
    color: white;
    position: relative;
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.featured-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
}

.featured-img {
    height: 100%;
    object-fit: cover;
}

.featured-highlights {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 15px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    list-style: none;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-item {
    margin: 0;
}

.page-link {
    padding: 12px 25px;
    background: white;
    color: var(--whu-darkblue);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--whu-light);
    color: var(--whu-blue);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* Programs Details */
.program-details-container {
    padding: 80px 0;
    position: relative;
}

.sidebar {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    height: auto;
}

.sidebar-title {
    color: var(--whu-darkblue);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--whu-light);
}

.sidebar .nav-pills .nav-link {
    color: var(--whu-darkblue);
    font-weight: 600;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.sidebar .nav-pills .nav-link:hover {
    background: var(--whu-light);
}

.sidebar .nav-pills .nav-link.active {
    background: transparent;
    color: var(--whu-blue);
    border-left: 4px solid var(--whu-blue);
    border-bottom-color: white;
    border-radius: 0;
    padding-left: 16px;
}

.application-info {
    background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.application-title {
    color: var(--whu-darkblue);
    font-weight: 700;
    margin-bottom: 15px;
}

.next-intake {
    background: var(--whu-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.content-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.4s;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.programs-details-highlight-box {
    background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    border-left: 4px solid var(--whu-blue);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

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

.stat-item {
    background: var(--whu-light);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.programs-details-stat-icon {
    font-size: 2.5rem;
    color: var(--whu-blue);
    margin-bottom: 15px;
}

.programs-details-stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.course-table th {
    background: var(--whu-darkblue);
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.course-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.course-table tr:nth-child(even) {
    background: #f9f9f9;
}

.course-table tr:hover {
    background: #f0f8ff;
}

.course-code {
    font-weight: 600;
    color: var(--whu-darkblue);
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.certification-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.certification-header {
    background: linear-gradient(135deg, var(--whu-darkblue), var(--whu-blue));
    color: white;
    padding: 20px;
    text-align: center;
}

.certification-body {
    padding: 25px;
}

.certification-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--whu-darkblue);
    margin-bottom: 15px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.career-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.career-header {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    padding: 25px;
    position: relative;
}

.career-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.salary {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-body {
    padding: 25px;
}

.career-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 35px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--whu-blue);
    font-size: 1.2rem;
}


/* Apply now */
.application-header {
    background: linear-gradient(120deg, var(--whu-darkblue), var(--whu-blue));
    color: white;
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.application-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.application-header p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.application-container {
    padding: 60px 0;
    position: relative;
}

.application-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
}

.timeline-sidebar {
    background: linear-gradient(135deg, var(--whu-darkblue), #003366);
    color: white;
    padding: 40px 30px;
    height: 100%;
    position: relative;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--whu-accent);
    border-radius: 10px;
}

.timeline-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-step {
    padding: 20px 0 20px 45px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
}

.timeline-step.active {
    background: rgba(255, 255, 255, 0.15);
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--whu-light);
    border: 3px solid var(--whu-accent);
}

.timeline-step.active::before {
    background: var(--whu-accent);
}

.timeline-step.completed::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whu-darkblue);
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 50px;
    width: 2px;
    height: calc(100% - 25px);
    background: rgba(255, 255, 255, 0.3);
}

.timeline-step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    left: 5px;
    top: 22px;
    width: 14px;
    height: 14px;
    background: var(--whu-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.timeline-step.completed .step-number,
.timeline-step.active .step-number {
    background: white;
    color: var(--whu-darkblue);
}

.timeline-step .step-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #fff;
}

.step-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-content {
    padding: 40px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
    border-radius: 10px;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--whu-darkblue);
    margin-bottom: 10px;
}

.step-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.form-label {
    font-weight: 600;
    color: var(--whu-darkblue);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--whu-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 122, 255, 0.15);
}

.education-entry {
    background: var(--whu-light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.remove-education {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-education:hover {
    transform: scale(1.1);
    background: #ff5252;
}

.add-education {
    background: var(--whu-blue);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 20px auto;
    transition: all 0.3s;
}

.add-education:hover {
    background: var(--whu-darkblue);
    transform: translateY(-3px);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-prev, .btn-next {
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-prev {
    background: #f0f2f5;
    color: var(--whu-darkblue);
}

.btn-prev:hover {
    background: #e0e5eb;
}

.btn-next {
    background: linear-gradient(135deg, var(--whu-blue), var(--whu-accent));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.progress-container {
    height: 8px;
    background: #f0f2f5;
    border-radius: 10px;
    overflow: hidden;
    margin: 40px 0 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--whu-blue), var(--whu-accent));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: var(--whu-darkblue);
    margin-bottom: 30px;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .program-list li {
        padding: 6px 0;
    }

    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 25px;
    }
    
    .left::after, .right::after {
        left: 25px;
    }
    
    .right {
        left: 0;
    }

    .program-header h1 {
        font-size: 2.8rem;
    }

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

    .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .timeline-sidebar {
        padding: 30px 20px;
    }
    
    .form-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .programs-section {
        padding: 80px 0;
    }
    
    .program-card {
        margin-bottom: 30px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.2rem;
    }

    .program-header {
        padding: 150px 0 80px;
    }
    
    .program-header h1 {
        font-size: 2.3rem;
    }

    .featured-content{
        padding: 40px;
    }
    .application-header {
        padding: 80px 0 40px;
    }
    
    .application-header h1 {
        font-size: 2.5rem;
    }
    
    .application-header p {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev, .btn-next {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }
    
    .hero-banner {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-box {
        margin-bottom: 30px;
    }
}

