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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 20%, #f3e5f5 40%, #fce4ec 60%, #ffebee 80%, #ffcdd2 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    margin-left: -1.5rem;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1976d2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.1);
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.08);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 25%;
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.12);
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
    background: rgba(255, 255, 255, 0.09);
}

.shape-5 {
    width: 350px;
    height: 350px;
    top: 5%;
    right: 2%;
    animation-delay: 3s;
    background: rgba(255, 255, 255, 0.06);
}

.shape-6 {
    width: 180px;
    height: 180px;
    top: 65%;
    left: 2%;
    animation-delay: 1.5s;
    background: rgba(255, 255, 255, 0.11);
}

.shape-7 {
    width: 220px;
    height: 220px;
    top: 35%;
    left: 65%;
    animation-delay: 2.5s;
    background: rgba(255, 255, 255, 0.07);
}

.shape-8 {
    width: 280px;
    height: 280px;
    bottom: 25%;
    right: 35%;
    animation-delay: 4.5s;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease forwards;
    text-align: center;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.9);
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    width: 100%;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    font-size: 8rem;
    font-weight: 900;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.hero-subtitle {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease forwards 0.6s;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideInUp 1s ease forwards 0.8s;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: slideInUp 1s ease forwards 1s;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}






.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e91e63, #ff5722, #1976d2, #42a5f5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
    animation: gradientShift 4s ease infinite;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.startups-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.startups-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.startups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 768px) {
    .startups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .startups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (min-width: 1400px) {
    .startups-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.startup-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e91e63;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 350px;
    overflow: hidden;
}

.startup-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.startup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}




.startup-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1976d2;
    text-align: left;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.startup-description {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    text-align: left;
    flex-grow: 1;
}



.startup-links {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 0 0;
    justify-content: center;
    flex-shrink: 0;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-link.primary {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.app-link.secondary {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.app-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.coming-soon-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 160px;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    border: 2px solid #e0e0e0;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.adoption-section {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.pilot-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pilot-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: #1976d2;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.pilot-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.pilot-item i {
    color: white;
    font-size: 0.8rem;
    min-width: 16px;
}

.pilot-text {
    font-size: 0.75rem;
    color: white;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pilot-text strong {
    color: white;
    font-weight: 700;
}


.projects-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (min-width: 1400px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.project-card {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid #e91e63;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    height: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 380px;
    overflow: hidden;
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
    text-align: left;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.project-description {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: left;
    flex-grow: 1;
    overflow: visible;
}

.project-links {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 0 0;
    justify-content: center;
    flex-shrink: 0;
}

.project-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #e91e63;
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.project-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    background: #d81b60;
}

.courses-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 2rem 0;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.academic-showcase {
    position: relative;
    z-index: 2;
}

.academic-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #1976d2, #42a5f5, #e91e63);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 118, 210, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1976d2;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.8;
}

.arrow-connector i {
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.3));
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.course-listing-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    background-clip: padding-box;
    position: relative;
}

.course-listing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #1976d2, #42a5f5, #e91e63);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.listing-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1976d2, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.listing-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.course-list-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(25, 118, 210, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.course-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
}

.course-info {
    flex-grow: 1;
}

.course-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.course-school {
    font-size: 0.9rem;
    color: #1976d2;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-grade {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    min-width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    padding: 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1400px) {
    .courses-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.course-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.course-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(25, 118, 210, 0.2);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex-grow: 1;
    line-height: 1.3;
}

.grade-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin-left: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.course-institution {
    color: #1976d2;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.experience-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
    flex-direction: row;
    align-items: stretch;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e91e63, #1976d2, #42a5f5);
    border-radius: 24px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.experience-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.experience-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-item:nth-child(even) {
    transform: translateX(50px);
}

.experience-item:nth-child(even).animate {
    transform: translateX(0);
}

.experience-period {
    min-width: 120px;
    max-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.period {
    background: linear-gradient(135deg, #e91e63, #ff5722, #1976d2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.period:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.experience-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #333;
    background: linear-gradient(135deg, #e91e63, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.company {
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-link {
    color: #1976d2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.company-link:hover {
    color: #e91e63;
    text-decoration: underline;
}

.company-link-icon {
    font-size: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
}

.company-link:hover + .company-link-icon {
    color: #e91e63;
    transform: translateX(2px);
}

.job-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.job-achievements {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976d2;
    font-size: 0.9rem;
    font-weight: 500;
}

.choir-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.choir-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.performance-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    border-radius: 20px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.performance-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.performance-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.performance-type {
    background: linear-gradient(135deg, #e91e63, #ff5722);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.performance-venue {
    color: #9c27b0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.performance-links {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    justify-content: center;
}

.performance-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.performance-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #d81b60, #8e24aa);
}

    .performance-button i {
        font-size: 0.8rem;
    }
    
    .performances-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .performance-card {
        height: 260px;
        padding: 1.5rem;
    }
    
    .performance-title {
        font-size: 1.2rem;
    }
    
    .performance-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-width: 140px;
    }


.choir-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-notes {
    position: relative;
    width: 200px;
    height: 200px;
}

.note {
    position: absolute;
    font-size: 3rem;
    color: #1976d2;
    animation: musicFloat 3s ease-in-out infinite;
}

.note-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.note-2 {
    top: 0;
    right: 0;
    animation-delay: 0.5s;
}

.note-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.note-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.note-5 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

@keyframes musicFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.choir-info {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.choir-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.choir-role {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.choir-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.choir-achievements {
    margin-bottom: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

.achievement-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.choir-stats {
    display: flex;
    gap: 2rem;
}

.debate-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.debate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4caf50, #2196f3, #ff9800);
    border-radius: 20px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.tournament-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tournament-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

.tournament-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #4caf50, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-align: center;
}

.placement-badge {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.tournament-date {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.tournament-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tournament-links {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    justify-content: center;
}

.tournament-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4caf50, #2196f3);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.tournament-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #1976d2);
}

    .tournament-button i {
        font-size: 0.8rem;
    }
    
    .tournaments-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .tournament-card {
        height: 260px;
        padding: 1.5rem;
    }
    
    .tournament-name {
        font-size: 1.2rem;
    }
    
    .tournament-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-width: 140px;
    }

.debate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.debate-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.debate-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.debate-role {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.debate-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.debate-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.debate-timeline {
    position: relative;
    width: 300px;
}

.timeline-point {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.timeline-point.animate {
    opacity: 1;
    transform: translateX(0);
}

.point {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    width: 200px;
    height: 2px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    transform: translateY(-50%);
}

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

.point-label {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.spotlights-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
    overflow: hidden;
}

.spotlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.spotlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.spotlight-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-sizing: border-box;
    width: 100%;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #e91e63, #ff9800, #4caf50, #2196f3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.spotlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.spotlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.spotlight-card:hover::before {
    background: linear-gradient(135deg, #ff5722, #e91e63, #9c27b0, #1976d2);
    animation: gradientRotate 2s ease infinite;
}

.spotlight-card.featured {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.95);
}

.spotlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.spotlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.spotlight-organization {
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.spotlight-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.spotlight-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.spotlight-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.spotlight-links {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.spotlight-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.spotlight-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #1565c0, #1976d2);
}

.spotlight-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 22px;
    gap: 0.4rem;
}

.spotlight-links.spaced {
    justify-content: space-between;
    gap: 1rem;
}

.testimonial-image {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.testimonial-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.testimonial-card-image:hover {
    transform: scale(1.02);
}

.testimonial-fallback {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border: 2px solid #ce93d8;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.testimonial-fallback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3);
}

.testimonial-fallback .card-icon {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.testimonial-fallback .card-text {
    font-weight: 600;
    color: #4a148c;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.testimonial-fallback .card-subtext {
    font-size: 0.8rem;
    color: #7b1fa2;
    margin: 0;
    font-style: italic;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item i {
    width: 20px;
    color: #1976d2;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.contact-form {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(25, 118, 210, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
    border-top: 1px solid rgba(25, 118, 210, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1976d2;
}

.footer-email {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #e91e63;
    text-decoration: underline;
}

.footer-phone {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: #e91e63;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
        max-width: 100%;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero-content {
        padding: 3rem 2rem 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .title-line:nth-child(1) {
        font-size: 2rem;
    }
    
    .title-line:nth-child(2) {
        font-size: 4rem;
        -webkit-text-stroke: 2px #000;
        text-stroke: 2px #000;
        margin-top: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat {
        padding: 1.5rem 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .startups-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .startup-card {
        max-width: 100%;
        height: 380px;
        padding: 1.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        max-width: 100%;
        height: 400px;
        padding: 1.5rem;
    }
    
    .academic-stats {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .arrow-connector {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        height: 180px;
        padding: 1.2rem;
    }
    
    .course-listing-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .listing-title {
        font-size: 1.5rem;
    }
    
    .listing-subtitle {
        font-size: 1rem;
    }
    
    .course-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .course-list-item {
        padding: 1rem 1.2rem;
    }
    
    .course-name {
        font-size: 1rem;
    }
    
    .course-school {
        font-size: 0.8rem;
    }
    
    .course-grade {
        min-width: 35px;
        height: 35px;
        font-size: 0.75rem;
        padding: 0 10px;
        border-radius: 17px;
    }
    
    .experience-item {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-period {
        min-width: auto;
    }
    
    .choir-content,
    .debate-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spotlight-card.featured {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
    
    .hero-content {
        padding: 2rem 1rem 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line:nth-child(1) {
        font-size: 1.5rem;
    }
    
    .title-line:nth-child(2) {
        font-size: 3rem;
        -webkit-text-stroke: 1.5px #000;
        text-stroke: 1.5px #000;
        margin-top: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    
    .section {
        padding: 3rem 0;
    }
    
    .startup-card,
    .project-card,
    .spotlight-card {
        padding: 1.5rem;
    }
    
    .startup-card {
        height: 360px;
        padding: 1rem;
    }
    
    .project-card {
        height: 380px;
        padding: 1.2rem;
    }
    
    .startup-name,
    .project-title {
        font-size: 1.3rem;
    }
    
    .startup-description,
    .project-description {
        font-size: 0.85rem;
    }
    
    .app-link,
    .project-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        min-width: 140px;
    }
    
    .coming-soon-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
        min-width: 120px;
    }
    
    .academic-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .arrow-connector {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .course-card {
        height: 160px;
        padding: 1rem;
    }
    
    .course-title {
        font-size: 1rem;
    }
    
    .grade-badge {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .course-institution {
        font-size: 0.8rem;
    }
    
    .course-description {
        font-size: 0.8rem;
    }
    
    .course-listing-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .listing-title {
        font-size: 1.3rem;
    }
    
    .listing-subtitle {
        font-size: 0.9rem;
    }
    
    .course-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .course-list-item {
        padding: 0.8rem 1rem;
    }
    
    .course-name {
        font-size: 0.9rem;
    }
    
    .course-school {
        font-size: 0.75rem;
    }
    
    .course-grade {
        min-width: 32px;
        height: 32px;
        font-size: 0.7rem;
        padding: 0 8px;
        border-radius: 16px;
    }
}

.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transform: translateX(0) !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}
