:root {
  --thesiora-primary: #7367f0;
  --thesiora-secondary: #00bad1;
  --thesiora-gradient: linear-gradient(135deg, #7367f0 0%, #00bad1 100%);
  --thesiora-soft-gradient: linear-gradient(135deg, rgba(115, 103, 240, 0.08) 0%, rgba(0, 186, 209, 0.04) 100%);
  --thesiora-dark-gradient: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Animated Hero */
.hero-section {
  padding: 120px 0 100px 0;
  background: var(--thesiora-soft-gradient);
  position: relative;
  overflow: hidden;
}

/* Floating decorative glow circles */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.45;
}
.glow-1 {
  width: 350px;
  height: 350px;
  background: rgba(115, 103, 240, 0.25);
  top: -50px;
  right: -100px;
}
.glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 186, 209, 0.2);
  bottom: -50px;
  left: -50px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background-color: rgba(115, 103, 240, 0.09);
  color: var(--thesiora-primary);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(115, 103, 240, 0.15);
  box-shadow: 0 4px 15px rgba(115, 103, 240, 0.05);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1.15;
  background: linear-gradient(to right, #4b3cfb, #00d2d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.28rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

/* Hover Lift Animation */
.hover-lift {
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(115, 103, 240, 0.12) !important;
}

/* Stats Section */
.stat-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  padding: 30px 25px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
  color: #1f2937;
}

.stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
}

/* Timeline Process Section */
.timeline-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: linear-gradient(to bottom, rgba(115, 103, 240, 0.4), rgba(0, 186, 209, 0.4));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  display: flex;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--thesiora-primary);
  border: 5px solid #ffffff;
  box-shadow: 0 0 15px rgba(115, 103, 240, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 750;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.timeline-item:hover .timeline-badge {
  background: var(--thesiora-secondary);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 186, 209, 0.4);
}

.timeline-content {
  width: 45%;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}
.timeline-item:hover .timeline-content {
  box-shadow: 0 10px 25px rgba(115, 103, 240, 0.08);
  border-color: rgba(115, 103, 240, 0.15);
}

.timeline-icon-box {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(115, 103, 240, 0.08);
  color: var(--thesiora-primary);
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.timeline-item:nth-child(even) .timeline-icon-box {
  background: rgba(0, 186, 209, 0.08);
  color: var(--thesiora-secondary);
}

/* Features Grid Section */
.features-section {
  padding: 100px 0;
  background: rgba(248, 249, 250, 0.7);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Documents & Info Section */
.news-section {
  padding: 100px 0;
  background: #ffffff;
}

.info-tab-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.info-tab-card:hover {
  border-color: rgba(115, 103, 240, 0.25);
  box-shadow: 0 8px 25px rgba(115, 103, 240, 0.06);
}

.faculty-badge {
  background-color: rgba(115, 103, 240, 0.06);
  color: var(--thesiora-primary);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* CTA Section Styling */
.cta-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #4b3cfb 0%, #7367f0 50%, #00bad1 100%);
  color: white;
  text-align: center;
  border-radius: 28px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(115, 103, 240, 0.25);
}
.cta-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-glow-1 { top: -50px; left: -50px; }
.cta-glow-2 { bottom: -50px; right: -50px; }

/* Responsive Timeline Adaptions */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .timeline-line {
    left: 30px;
  }
  .timeline-badge {
    left: 30px;
    transform: translateX(-50%);
  }
  .timeline-item {
    flex-direction: row !important;
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  .timeline-badge {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }
  .timeline-item:hover .timeline-badge {
    transform: translateX(-50%) scale(1.05);
  }
}
