/* PC-Specific Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FFE4E1 0%, #E6E6FA 25%, #F0F8FF 50%, #F5FFFA 75%, #FFF8DC 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure better touch interactions on mobile */
button, a, input, textarea {
    touch-action: manipulation;
}

/* Better scroll behavior */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.enroll-btn {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 160, 221, 0.3);
}

.enroll-btn:hover {
    background: linear-gradient(45deg, #BA55D3, #DDA0DD);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 160, 221, 0.4);
    color: white !important;
}

.enroll-btn::after {
    display: none;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 600px;
    z-index: 1000;
    flex-direction: row;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Only apply hover effect on non-mobile screens */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-section {
    flex: 1;
    min-width: 150px;
}

.dropdown-section h4 {
    color: #DDA0DD;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #DDA0DD;
}

.dropdown-section > a,
.sub-dropdown > a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding-left: 0.5rem;
}

.dropdown-section > a:hover,
.sub-dropdown > a:hover {
    color: #DDA0DD;
    background: rgba(221, 160, 221, 0.1);
    padding-left: 1rem;
}

.sub-dropdown {
    position: relative;
    margin-bottom: 1rem;
}


.sub-dropdown-content {
    display: block;
    margin-left: 1rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid #E6E6FA;
}

.sub-dropdown-content a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
}

.sub-dropdown-content a:hover {
    color: #DDA0DD;
    background: rgba(221, 160, 221, 0.1);
    padding-left: 1rem;
}

.nav-link-disabled {
    cursor: default !important;
    pointer-events: none;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.about-section .section-header h2 {
    color: #333;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Why SKY Section */
.service-features-section {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    padding: 4rem 0;
}

.service-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.category-icon {
    font-size: 2rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-size: 1.5rem;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: none;
}

.feature-item.animate:nth-child(1) {
    animation: slideInUp 0.6s ease forwards;
}

.feature-item.animate:nth-child(2) {
    animation: slideInUp 0.6s ease 0.15s forwards;
}

.feature-item.animate:nth-child(3) {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.feature-item.animate:nth-child(4) {
    animation: slideInUp 0.6s ease 0.45s forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: #000;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.sub-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-features li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.sub-features li:before {
    content: "●";
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-category {
        padding: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-icon {
        margin-right: 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .sub-features li {
        text-align: left;
        padding-left: 1rem;
    }
}

/* Programs Section */
.programs-section {
    background: white;
    padding: 4rem 0;
}

.programs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
}

.programs-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-year-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.program-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-year-card:hover .program-image img {
    transform: scale(1.05);
}

.program-year-card:hover {
    transform: translateY(-5px);
}

.year-title {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    margin: 0;
    text-align: center;
}

.year-description {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    padding: 0.8rem 1rem 0;
    font-style: italic;
}

.subjects-compact {
    padding: 1rem 1.5rem 1.5rem;
}

.subject-link {
    display: inline-block;
    background: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.subject-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.subject-group {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subject-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.subject-link.small {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
}

/* Enroll Button Container */
.enroll-button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.enroll-button-container .cta-button {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white !important;
    padding: 25px 60px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(221, 160, 221, 0.3);
    box-shadow: 0 4px 15px rgba(221, 160, 221, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.enroll-button-container .cta-button:hover {
    background: linear-gradient(45deg, #BA55D3, #DDA0DD);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(221, 160, 221, 0.5);
    color: white !important;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

#testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.testimonials-row {
    display: flex;
    gap: 1.5rem;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: max-content;
}

.testimonials-row-rtl {
    animation-name: slideRightToLeft;
}

.testimonials-row-ltr {
    animation-name: slideLeftToRight;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonials-row:hover {
    animation-play-state: paused;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 180px;
    min-width: 300px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.testimonial-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-item span {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.85rem;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.google-verified {
    color: #27ae60;
    font-size: 0.8rem;
}


/* Contact Section */
.contact-section {
    background: white;
    padding: 4rem 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #c3e6cb;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f8f9fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.popup-btn.primary {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
}

.popup-btn.primary:hover {
    background: linear-gradient(45deg, #BA55D3, #DDA0DD);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 160, 221, 0.4);
}

.popup-btn.secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.popup-btn.secondary:hover {
    background: #e9ecef;
    color: #333;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.popup-close:hover {
    color: #333;
}

/* Chatbot Button */
.chatbot-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

/* Results & Destinations Section */
.results-section {
    background: white;
    padding: 4rem 0;
}

.results-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.results-section .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.results-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.results-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

.destinations-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destinations-chart h3 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.university-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.uni-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.uni-name {
    min-width: 180px;
    font-weight: 500;
    color: white;
}

.bar-container {
    flex: 1;
    position: relative;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #87CEEB, #B0E0E6);
    border-radius: 15px;
    transition: width 1.5s ease;
}

.percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

/* Student Journey Timeline Section */
.journey-section {
    background: transparent;
    color: white;
    padding: 4rem 0;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.youtube-video {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 0;
    padding-bottom: 42%; /* 약간 더 낮은 비율 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.journey-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.journey-section .section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.journey-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
}

.journey-track {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.journey-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
}

.journey-slide.active {
    left: 0;
    opacity: 1;
    transform: translateX(0);
}

.journey-slide.prev {
    transform: translateX(-100%);
}

.slide-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    min-width: 120px;
    text-align: center;
}

.slide-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.journey-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.journey-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    border-radius: 2px;
    width: 20%;
    transition: width 0.8s ease;
}

.progress-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}


/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    text-decoration: none;
}

.social-links a:active {
    transform: translateY(-1px);
}

/* Individual Social Media Brand Colors */
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #e6832b 0%, #d85a34 25%, #d01f3b 50%, #c01b5e 75%, #b01080 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.youtube:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}