/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Hide skip links and accessibility bars */
.skip-link,
.skip-to-content,
.skip-navigation,
a[href="#main"],
a[href="#content"],
a[href="#main-content"],
[class*="skip"],
[id*="skip"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Hide any white bars at the top */
body::before,
html::before {
    display: none !important;
}

/* Ensure no top margin or padding on body */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide browser-generated accessibility elements */
*[role="banner"]::before,
*[role="main"]::before,
*[role="navigation"]::before {
    display: none !important;
}

/* Hide cookie consent banner */
.cookie-banner,
.cookie-consent,
.cookie-notice,
.cookie-bar,
[class*="cookie"],
[id*="cookie"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
}

/* Hide any elements containing cookie-related text */
*:contains("We use cookies"),
*:contains("cookies to improve"),
*:contains("Accept"),
*:contains("Cookie") {
    display: none !important;
}

/* Additional cookie banner hiding */
div[style*="position: fixed"][style*="bottom"],
div[style*="position: fixed"][style*="top"] {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #0066cc;
    color: white;
}

.lang-btn:hover {
    background: #004499;
    color: white;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.university-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.university-name h1 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.university-subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    font-style: italic;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    width: 250px;
    outline: none;
}

.search-box button {
    background: #0066cc;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.quick-links {
    display: flex;
    gap: 15px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Navigation Styles */
.main-navigation {
    background: #004499;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
    background: #0066cc;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: #f8f9fa;
    color: #0066cc;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Quick Links Section */
.quick-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-link-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0066cc;
}

.quick-link-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.quick-link-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quick-link-card a:hover {
    color: #004499;
}

/* News Section */
.news-section {
    padding: 60px 0;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #0066cc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.news-content a:hover {
    color: #004499;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #0066cc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0066cc;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #004499;
    transform: translateY(-2px);
}

.partner-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: brightness(1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .university-name h1 {
        font-size: 1.8em;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 2em;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .partner-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 1.5em;
    }
    
    .slide-content p {
        font-size: 1em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
}

/* Page Header Styles for Sub-pages */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: #f8f9fa;
}

.content-section h2 {
    font-size: 2.8em;
    color: #0066cc;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
    border-radius: 2px;
}

/* Statistics Grid */
.program-stats, .campus-life-stats, .international-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
}

/* Program Cards */
.programs-grid, .organizations-grid, .facilities-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.program-card, .org-item, .facility-card, .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover, .org-item:hover, .facility-card:hover, .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card img, .org-item img, .facility-card img, .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.program-card:hover img, .org-item:hover img, .facility-card:hover img, .service-card:hover img {
    transform: scale(1.05);
}

.program-card h3, .org-item h4, .facility-card h3, .service-card h3 {
    font-size: 1.5em;
    color: #0066cc;
    margin: 25px 25px 15px;
    font-weight: bold;
}

.program-card p, .org-item p, .facility-card p, .service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 25px 20px;
}

.program-details, .facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 25px 25px;
}

.language-tag, .credits-tag, .facility-features span {
    background: #e3f2fd;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.program-duration {
    color: #666;
    font-size: 0.95em;
    margin: 0 25px 15px;
    font-weight: 500;
}

/* Research Areas */
.research-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.research-area {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.research-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.research-area h4 {
    color: #0066cc;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.research-area ul {
    list-style: none;
}

.research-area li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.research-area li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.research-area li:last-child {
    border-bottom: none;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-item h4 {
    color: #0066cc;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

/* Application Steps */
.application-steps, .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number, .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #0066cc;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.step-item p {
    color: #666;
    line-height: 1.5;
}

/* Tabs */
.requirements-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn.active {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.tab-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.requirement-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.requirement-category h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: bold;
}

.requirement-category ul {
    list-style: none;
}

.requirement-category li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requirement-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.requirement-category li:last-child {
    border-bottom: none;
}

/* Deadlines */
.deadlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.deadline-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deadline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.deadline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deadline-card h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: bold;
}

.deadline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.deadline-item:last-child {
    border-bottom: none;
}

.program-type {
    color: #666;
    font-weight: 500;
}

.deadline-date {
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1em;
}

/* Scholarships */
.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.scholarship-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scholarship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.scholarship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.scholarship-card h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.scholarship-amount {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.scholarship-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.scholarship-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.scholarship-card li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

.scholarship-criteria {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.scholarship-criteria strong {
    color: #0066cc;
}

/* Tuition Cards */
.tuition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tuition-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tuition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.tuition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tuition-card h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.rate-item:last-child {
    border-bottom: none;
}

.program-level {
    color: #666;
    font-weight: 500;
}

.rate {
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2em;
}

/* Contact Forms */
.contact-form-section {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Department Cards */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.department-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.department-card h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: bold;
}

.department-info p {
    margin-bottom: 10px;
    color: #666;
}

.department-info strong {
    color: #333;
}

.department-services {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.department-services h4 {
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: bold;
}

.department-services ul {
    list-style: none;
}

.department-services li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.department-services li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Emergency Contacts */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.emergency-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #dc3545;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.emergency-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.emergency-card h3 {
    color: #dc3545;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.emergency-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.emergency-card p {
    color: #666;
    font-size: 0.95em;
}

/* CTA Sections */
.get-involved-cta, .international-apply-cta, .virtual-tour-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.cta-content h2 {
    color: #0066cc;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-content p {
    color: #666;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-button.secondary:hover {
    background: #0066cc;
    color: white;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6em;
    color: #0066cc;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.testimonial-author h4 {
    color: #0066cc;
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
}

.testimonial-author span {
    color: #999;
    font-size: 0.95em;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.story-card h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.story-origin {
    color: #999;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.story-achievement {
    background: #e8f5e8;
    color: #28a745;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    border-left: 4px solid #28a745;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Section Styles */
.about-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h3 {
    font-size: 2.2em;
    color: #0066cc;
    margin-bottom: 25px;
    font-weight: bold;
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    max-width: 850px;
}

.rankings-section {
    padding: 60px 20px;
    margin-top: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.rankings-section h3 {
    font-size: 2.2em;
    color: #0066cc;
    margin-bottom: 30px;
    font-weight: bold;
}

.rankings-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.rankings-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid #0066cc;
}

.rankings-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

/* Responsive Design for Sub-pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5em;
    }
    
    .page-header p {
        font-size: 1.1em;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 2.2em;
    }
    
    .programs-grid, .organizations-grid, .facilities-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid, .deadlines-grid, .scholarships-grid, .tuition-grid, .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .get-involved-cta, .international-apply-cta, .virtual-tour-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .cta-content h2 {
        font-size: 2em;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid, .success-stories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .page-header p {
        font-size: 1em;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 1.8em;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .program-card, .org-item, .facility-card, .service-card {
        margin: 0 10px;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        text-align: center;
    }
}

/* Active Navigation States */
.nav-menu > li > a.active {
    background: #0066cc;
    color: white;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .language-switcher,
    .main-navigation,
    .slider-controls,
    .slider-dots,
    .cta-button {
        display: none;
    }
    
    .main-header {
        background: white;
        color: black;
        box-shadow: none;
    }
    
    .page-header {
        background: white;
        color: black;
        padding: 20px 0;
    }
    
    .content-section {
        padding: 20px 0;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #0066cc;
    color: white;
}

.lang-btn:hover {
    background: #004499;
    color: white;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.university-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.university-name h1 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.university-subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    font-style: italic;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    width: 250px;
    outline: none;
}

.search-box button {
    background: #0066cc;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.quick-links {
    display: flex;
    gap: 15px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Navigation Styles */
.main-navigation {
    background: #004499;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
    background: #0066cc;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: #f8f9fa;
    color: #0066cc;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Quick Links Section */
.quick-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-link-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0066cc;
}

.quick-link-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.quick-link-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quick-link-card a:hover {
    color: #004499;
}

/* News Section */
.news-section {
    padding: 60px 0;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #0066cc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.news-content a:hover {
    color: #004499;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #0066cc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0066cc;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #004499;
    transform: translateY(-2px);
}

.partner-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: brightness(1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .university-name h1 {
        font-size: 1.8em;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 2em;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .partner-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 1.5em;
    }
    
    .slide-content p {
        font-size: 1em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}