/* Admission Process Timeline */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 35px; left: 50px; right: 50px; height: 2px; background: var(--border); border-top: 2px dashed var(--accent); z-index: 1; }
.process-step { position: relative; z-index: 2; text-align: center; background: transparent; }
.step-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: white; border: 3px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: var(--accent); box-shadow: 0 0 0 10px var(--light); transition: 0.3s; }
.process-step:hover .step-icon { background: var(--accent); color: white; transform: scale(1.1); box-shadow: 0 0 0 10px rgba(37,99,235,0.2); }
.process-step h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* Notice Grid Full Width */
.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.notice-card { background: white; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: 0.4s; position: relative; overflow: hidden; border-bottom: 4px solid var(--accent); display: flex; flex-direction: column; }
.notice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.n-card-img { width: 100%; height: 180px; position: relative; overflow: hidden; }
.n-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.notice-card:hover .n-card-img img { transform: scale(1.05); }
.n-card-img .n-badge { position: absolute; top: 15px; left: 15px; z-index: 2; padding: 5px 12px; font-size: 11px; }
.n-card-content { padding: 25px; flex: 1; }
.n-card-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.n-card-date { font-size: 13px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.n-card-date i { color: var(--accent); }
.notice-card h4 { font-size: 18px; line-height: 1.4; margin-bottom: 15px; color: var(--primary); }
.notice-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Video Tour Section */
.video-tour { position: relative; height: 500px; background: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed; display: flex; align-items: center; justify-content: center; color: white; }
.video-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.7); }
.play-btn { width: 80px; height: 80px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 30px; box-shadow: 0 0 0 15px rgba(37,99,235,0.3); transition: 0.4s; animation: pulse 2s infinite; }
.play-btn:hover { background: white; color: var(--accent); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.6); } 70% { box-shadow: 0 0 0 20px rgba(37,99,235,0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } }
.video-tour h2 { font-size: 42px; margin-bottom: 15px; color: white; }
.video-tour p { font-size: 18px; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.8); }

/* Recruiters Marquee */
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--light); }
.marquee-track { display: inline-block; animation: scroll 20s linear infinite; }
.company-logo { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 180px; color: var(--text-muted); opacity: 0.6; transition: 0.3s; }
.company-logo:hover { opacity: 1; color: var(--accent); transform: scale(1.1); }
.company-logo span { font-size: 12px; font-weight: 700; margin-top: 10px; letter-spacing: 1px; text-transform: uppercase; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Student Reviews Grid */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: white; padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1); position: relative; border-top: 4px solid var(--warning); transition: 0.4s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 40px; color: rgba(37,99,235,0.05); }

/* Download Center */
.download-center { background: linear-gradient(90deg, var(--primary), #1e293b); color: white; }
.download-wrapper { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05); padding: 40px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.dl-content h2 { color: white; font-size: 28px; margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.dl-content p { margin: 0; color: rgba(255,255,255,0.7); font-size: 16px; max-width: 600px; }
.dl-actions { display: flex; gap: 15px; }

@media (max-width: 992px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .notice-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .download-wrapper { flex-direction: column; text-align: center; gap: 30px; }
  .dl-content h2 { justify-content: center; }
}

@media (max-width: 768px) {
  .process-timeline { grid-template-columns: 1fr; }
  .notice-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .dl-actions { flex-direction: column; width: 100%; }
}
