:root { --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--brand-blue) 100%); --glass-bg: rgba(10, 15, 25, 0.7); }
.intern-hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; padding-top: 100px; overflow: hidden; text-align: center; }
.intern-hero h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; }
.intern-hero h1 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 30px rgba(0, 243, 255, 0.4); }
.partners-strip { background: rgba(0, 0, 0, 0.4); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); padding: 3rem 0; overflow: hidden; }
.partner-logos { display: flex; gap: 4rem; justify-content: center; align-items: center; flex-wrap: wrap; opacity: 0.5; transition: 0.3s ease; }
.partner-logos:hover { opacity: 0.8; }
.partner-logos h3 { font-family: 'Arial', sans-serif; font-size: 1.8rem; letter-spacing: 2px; color: #fff; margin: 0; }
.glass-card { background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 3rem 2.5rem; backdrop-filter: blur(20px); position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
.glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 24px; padding: 2px; background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), transparent, transparent, rgba(0, 81, 255, 0.5)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: 0.5s; z-index: -1; }
.glass-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 243, 255, 0.1); }
.glass-card:hover::before { opacity: 1; }
.card-icon-container { width: 80px; height: 80px; background: rgba(0, 243, 255, 0.05); border: 1px solid rgba(0, 243, 255, 0.2); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--neon-blue); margin: 0 auto 2rem auto; position: relative; transition: 0.5s; }
.glass-card:hover .card-icon-container { background: var(--neon-blue); color: var(--bg-dark); box-shadow: 0 0 25px var(--neon-blue); transform: scale(1.1) rotate(5deg); }
.timeline-container { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-container::after { content: ''; position: absolute; width: 2px; background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent); top: 0; bottom: 0; left: 50%; margin-left: -1px; z-index: 0; opacity: 0.3; }
.timeline-row { padding: 10px 40px; position: relative; width: 50%; box-sizing: border-box; margin-bottom: 2rem; z-index: 1; }
.timeline-row:nth-child(odd) { left: 0; text-align: right; }
.timeline-row:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot { position: absolute; width: 40px; height: 40px; background: var(--bg-dark); border: 3px solid var(--neon-blue); border-radius: 50%; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; align-items: center; justify-content: center; color: var(--neon-blue); font-weight: bold; font-size: 1.2rem; box-shadow: 0 0 15px rgba(0, 243, 255, 0.4); }
.timeline-row:nth-child(odd) .timeline-dot { right: -20px; }
.timeline-row:nth-child(even) .timeline-dot { left: -20px; }
.timeline-content { background: var(--glass-bg); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 20px; backdrop-filter: blur(10px); transition: 0.3s; }
.timeline-content:hover { border-color: rgba(0, 243, 255, 0.3); box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1); }
@media (max-width: 768px) {
    .timeline-container::after { left: 31px; }
    .timeline-row { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; left: 0 !important; }
    .timeline-row:nth-child(odd) .timeline-dot, .timeline-row:nth-child(even) .timeline-dot { left: 11px; right: auto; }
}
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)); border-top: 2px solid var(--neon-blue); border-radius: 15px; padding: 2.5rem; text-align: left; position: relative; }
.quote-icon { font-size: 3rem; color: rgba(0, 243, 255, 0.1); position: absolute; top: 20px; right: 20px; }
.student-info { display: flex; align-items: center; gap: 15px; margin-top: 2rem; }
.student-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--neon-blue); }