/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar — Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 999px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Custom scrollbar — Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) #f1f5f9;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #2d3748;
  overflow-x: hidden;
  background-color: #fafafa;
}

/* Skip Link for Accessibility */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  background: var(--accent-gold);
  color: white;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Visually hidden — readable by screen readers, invisible on screen */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible focus indicator for keyboard navigation */
:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
  border-radius: 3px;
}

/* Remove default fieldset styling used for phone grouping */
.phone-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

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

/* University Color Palette */
:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-gold: #d97706;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-gray: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f3f4f6;
  --white: #ffffff;
  --border-light: #e5e7eb;
  --border-gray: #d1d5db;
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --error-red: #dc2626;
}

/* Simple Section Styles */
.simple-section {
  padding: 80px 0;
  background: #e2e8f0;
}

.simple-header {
  text-align: center;
  margin-bottom: 60px;
}

.simple-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.simple-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Fees Section Styles */
.main-fee-card {
  background: var(--primary-blue);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.fee-highlight .fee-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.currency {
  font-size: 2rem;
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  margin: 0 10px;
}

.period {
  font-size: 1.5rem;
  opacity: 0.9;
}

.fee-description {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.currency-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.currency-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.quick-fees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.quick-fee-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.quick-fee-item:hover {
  transform: translateY(-5px);
}

.quick-fee-item i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.fee-info h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.fee-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 5px;
}

.fee-info small {
  color: var(--text-light);
}

/* Simple Payment Info */
.simple-payment-info {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-highlight h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.payment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.payment-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
}

.payment-feature i {
  color: var(--success-green);
  font-size: 1.2rem;
}

.simple-process h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.process-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-simple {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-simple h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-simple p {
  color: var(--text-light);
}

/* Ranking Styles */
.ranking-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.rank-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rank-card:hover {
  transform: translateY(-5px);
}

.rank-card.main {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.rank-badge {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.rank-card.main .rank-badge {
  color: white;
}

.rank-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.rank-card.main h3 {
  color: white;
}

.rank-card p {
  color: var(--text-light);
}

.rank-card.main p {
  color: rgba(255, 255, 255, 0.9);
}

.university-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-simple {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Documents Styles */
.documents-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.doc-category {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.doc-category h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
}

.doc-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.doc-item i {
  color: var(--success-green);
  font-size: 1.1rem;
}

.doc-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.document-process-simple h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.steps-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-item h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-item p {
  color: var(--text-light);
}

.important-note {
  background: #fde68a;
  border-radius: 15px;
  padding: 30px;
  border-left: 5px solid var(--warning-orange);
}

.note-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.note-content i {
  color: var(--warning-orange);
  font-size: 1.5rem;
  margin-top: 5px;
}

.note-text h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.note-text p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-header h2 {
    font-size: 2rem;
  }

  .amount {
    font-size: 3rem;
  }

  .currency-options {
    flex-direction: column;
    align-items: center;
  }

  .main-fee-card {
    padding: 30px;
  }

  .quick-fees,
  .ranking-highlights,
  .documents-simple,
  .university-stats {
    grid-template-columns: 1fr;
  }

  .process-simple,
  .steps-simple {
    grid-template-columns: 1fr;
  }
}

/* Navigation */
.navbar {
  background: var(--bg-white);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  background: var(--bg-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border-gray);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.025em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  opacity: 1;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: -1;
}

/* Centered content wrapper */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  padding: 40px 24px 120px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

/* Bottom bar — CTA buttons pinned to bottom */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

.hero-badge i {
  color: var(--accent-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 4px 24px rgba(0, 0, 0, 0.4);
}

.title-highlight {
  color: var(--accent-gold);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(217, 119, 6, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Stats — Liquid Glass Chips */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 50px;

  /* liquid glass */
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.stat-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.stat-chip i {
  font-size: 0.8rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.stat-chip-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
}

.stat-chip-number {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.stat-chip-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-center {
    padding: 24px 16px 100px;
  }

  .hero-stats {
    gap: 0.4rem;
  }

  .stat-chip {
    padding: 0.6rem 0.85rem;
    gap: 0.4rem;
  }

  .stat-chip i {
    font-size: 0.7rem;
  }

  .stat-chip-number {
    font-size: 0.85rem;
  }

  .stat-chip-label {
    font-size: 0.68rem;
  }

  .hero-bottom {
    padding: 14px 16px 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

/* Responsive — chips wrap naturally on small screens */

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.cta-button.primary {
  background: var(--accent-gold);
  color: white;
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.cta-button.primary:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achievement-card i {
  background: var(--accent-gold);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.achievement-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-blue);
  line-height: 1;
}

.achievement-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.hero-image {
  animation: fadeInRight 0.8s ease;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.about-highlight {
  background: var(--primary-blue);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.about-highlight i {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.about-highlight .highlight-text {
  color: white !important;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.feature-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.feature-item span {
  font-weight: 500;
  color: var(--text-dark);
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.about-stat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-stat .stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.about-stat .stat-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Headers Enhancement */
.section-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-description {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Highlights Section */
.highlights {
  padding: 100px 0;
  background: var(--bg-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 12px 12px 0 0;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 1rem;
}

/* Stats Overview */
.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stats-overview .stat-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.stats-overview .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stats-overview .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-overview .stat-label {
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* University Info Table */
.university-info-table {
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row:hover {
  background: var(--bg-light);
}

.info-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.info-label i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.info-value {
  font-weight: 500;
  color: var(--text-gray);
  text-align: right;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  background: var(--success-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.advantage-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Medical Facilities Section */
.medical-facilities {
  padding: 100px 0;
  background: var(--bg-white);
}

.facilities-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.facility-main {
  grid-row: span 2;
}

.facility-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.facility-main-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.facility-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
}

.facility-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.facility-badge i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.facility-badge span {
  font-weight: 600;
  color: var(--text-dark);
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.facility-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.facility-image {
  height: 200px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.05);
}

.facility-content {
  padding: 1.5rem;
}

.facility-content h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.facility-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.facility-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.facility-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.facility-features i {
  color: var(--success-green);
  font-size: 0.8rem;
}

/* Duration Section */
.duration {
  padding: 100px 0;
  background: var(--bg-light);
}

.duration-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.duration-card {
  background: var(--primary-blue);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
  position: relative;
  overflow: hidden;
}

.duration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
}

.duration-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.duration-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.duration-card p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Course Timeline */
.course-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.duration-highlight {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin: 0.5rem 0;
  line-height: 1;
}

.duration-detail {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

.timeline-divider {
  width: 100px;
  height: 2px;
  background: var(--accent-gold);
  position: relative;
  margin: 0 2rem;
}

.timeline-divider::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent-gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Duration Details */
.duration-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.duration-card.enhanced {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 0;
  border-radius: 15px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.duration-card.enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.duration-card.enhanced::before {
  height: 4px;
  background: var(--primary-blue);
}

.card-header {
  background: var(--bg-light);
  padding: 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header i {
  background: var(--primary-blue);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-header h3 {
  color: var(--text-dark);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0;
}

.card-content {
  padding: 2rem;
}

.duration-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.duration-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  text-align: left;
}

.duration-list li:last-child {
  border-bottom: none;
}

.duration-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.duration-list .year {
  font-weight: 600;
  color: var(--primary-blue);
}

.duration-list .highlight {
  font-weight: 600;
  color: var(--accent-gold);
}

/* Fees Section */
.fees {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Fees Overview Cards */
.fees-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fees-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fees-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
}

.fees-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fees-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.fees-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.fee-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.fees-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.fees-card .currency-conversion {
  margin-top: 1rem;
}

/* Fees Table */
.fees-table-wrapper {
  margin-top: 2rem;
}

.table-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.fees-table.enhanced {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fee-category {
  font-weight: 600;
  color: var(--primary-blue);
  text-align: left !important;
}

/* Payment Information */
.payment-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.payment-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--success-green);
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.payment-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-card h4 i {
  background: var(--success-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.payment-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-card li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.payment-card li:last-child {
  border-bottom: none;
}

.payment-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
  top: 1rem;
}

/* Payment Methods */
.payment-card.methods h4 i {
  background: var(--primary-blue);
}

.payment-card.methods li::before {
  content: "💳";
  font-size: 1rem;
}

/* Payment Security */
.payment-security {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 4px solid var(--success-green);
}

.payment-security h4 {
  color: var(--success-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-security p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Payment Process Guide */
.payment-process-guide {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.payment-process-guide h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  justify-content: center;
}

.payment-process-guide h3 i {
  background: var(--primary-blue);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.process-steps-payment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.payment-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.payment-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
}

.payment-step .step-number {
  background: var(--accent-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.payment-step .step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.payment-step .step-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.fees-table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.fees-table {
  width: 100%;
  background: var(--bg-white);
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.fees-table th {
  background: var(--primary-blue);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.fees-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
}

.fees-table tr:last-child td {
  border-bottom: none;
}

.fees-table tr:hover {
  background: var(--bg-light);
}

.currency-conversion {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.currency-conversion span {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Eligibility Section */
.eligibility {
  padding: 100px 0;
  background: var(--bg-white);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.eligibility-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.eligibility-icon {
  width: 64px;
  height: 64px;
  background: var(--warning-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.eligibility-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.eligibility-card ul {
  list-style: none;
  text-align: left;
}

.eligibility-card li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.eligibility-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Admission Process */
.admission-process {
  padding: 100px 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #1e40af;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.step p {
  color: #666;
}

/* Ranking Section */
.ranking {
  padding: 80px 0;
  background: var(--bg-light);
}

.ranking-overview {
  text-align: center;
  margin-bottom: 3rem;
}

.ranking-highlight {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-gold);
}

.ranking-highlight h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ranking-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.ranking-category {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--primary-blue);
}

.ranking-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.ranking-header i {
  background: var(--primary-blue);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.ranking-header h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ranking-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ranking-item:hover {
  background: #e0f2fe;
  transform: translateY(-2px);
}

.rank-number {
  background: var(--accent-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.rank-badge {
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.rank-info h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.rank-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.ranking-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item i {
  background: var(--accent-gold);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Documents Section */
.documents {
  padding: 80px 0;
  background: var(--bg-white);
}

.documents-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.document-category {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--primary-blue);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.category-header i {
  background: var(--accent-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.category-header h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.document-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.document-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.document-item i {
  background: var(--primary-blue);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.document-info {
  flex: 1;
}

.document-info h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.document-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.required-badge {
  background: var(--error-red);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.optional-badge {
  background: var(--text-light);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.document-process {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.document-process h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.step-number {
  background: var(--accent-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.document-notes {
  margin-top: 2rem;
}

.note-card.important {
  background: #fef3cd;
  border: 1px solid #f59e0b;
  border-left: 4px solid var(--warning-orange);
}

.note-card.important h4 {
  color: var(--warning-orange);
}

.note-card.important i {
  color: var(--warning-orange);
}

/* Syllabus Section */
.syllabus {
  padding: 80px 0;
}

.syllabus-table-container {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.syllabus-table {
  width: 100%;
  background: white;
  border-collapse: collapse;
  border-radius: 15px;
  overflow: hidden;
}

.syllabus-table th {
  background: #1e40af;
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

.syllabus-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 500;
}

.syllabus-table tr:hover {
  background: #f9fafb;
}

/* Year Badge Styling */
.year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--primary-blue);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.year-badge.internship {
  background: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.syllabus-table td:first-child {
  text-align: center;
  padding: 1.2rem;
}

.internship-label {
  font-weight: 600;
  color: var(--accent-gold);
  margin-right: 8px;
}

/* Hostel Section */
.hostel {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.hostel-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.hostel-text h3:first-child {
  margin-top: 0;
}

.hostel-text p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hostel-text ul {
  list-style: none;
  margin-left: 0;
}

.hostel-text li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.hostel-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.hostel-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-hostel-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-hostel-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.hostel-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.hostel-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hostel-badge i {
  color: var(--success-green);
  font-size: 1rem;
}

.hostel-badge span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.hostel-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-small {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-small:hover {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.quote-icon {
  background: var(--primary-blue);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1.1rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
}

.author-avatar {
  position: relative;
  flex-shrink: 0;
}

.author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.author-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.country-flag {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-details {
  flex: 1;
  min-width: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem 0.5rem;
  margin-bottom: 0.3rem;
}

.author-status {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
}

.author-status::after {
  content: "·";
  margin-left: 0.4rem;
  color: var(--border-light);
}

.author-year {
  color: var(--text-gray);
  font-size: 0.78rem;
  font-style: italic;
  white-space: nowrap;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 500;
}

.author-location i {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonial-author {
    gap: 1rem;
  }

  .author-avatar {
    align-self: center;
  }

  .author-avatar img {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .country-flag {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .author-details {
    text-align: center;
  }

  .author-name {
    font-size: 1.1rem;
  }

  .author-meta {
    align-items: center;
  }

  .author-location {
    align-self: center;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    gap: 0.8rem;
  }

  .author-avatar img {
    width: 60px;
    height: 60px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-status {
    font-size: 0.85rem;
  }

  .author-year {
    font-size: 0.8rem;
  }

  .author-location {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-container {
  max-width: 100%;
}

.faq-item {
  background: var(--bg-white);
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.75rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.75rem 1.75rem;
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phone-entry {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-entry-multiline {
  align-items: flex-start;
}

.phone-country {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: white;
  background: var(--primary-blue);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.phone-entry a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.phone-entry-multiline a {
  line-height: 1.5;
}

.phone-entry a:hover {
  color: var(--primary-blue);
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-form p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.phone-input {
  display: flex;
  gap: 0.75rem;
}

.phone-input select {
  flex: 0 0 140px;
}

.submit-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  letter-spacing: 0.025em;
}

.submit-btn:hover {
  background: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e40af;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input select {
  flex: 0 0 140px;
}

.submit-btn {
  background: #1e40af;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 44px;
}

.footer-logo span {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-section a:hover {
  color: white;
}

.footer-section li i {
  margin-right: 0.75rem;
  color: var(--accent-gold);
  width: 16px;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border: none !important;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.disclaimer-content h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-content h4 i {
  font-size: 1.1rem;
}

.disclaimer-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-content .contact-info {
  text-align: center;
  font-weight: 500;
}

.disclaimer-content a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.disclaimer-content a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  margin-top: 2px;
  color: var(--accent-gold);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

.footer-contact-item span:not(.contact-label) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
  background: #1e40af;
  color: white;
  padding: 1.5rem;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.close {
  color: white;
  background: transparent;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.close:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 2rem;
}

.modal-body p {
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-center {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 76px;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 100vh;
  }

  .hero-center {
    padding: 40px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-content,
  .facilities-showcase,
  .hostel-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .footer-disclaimer {
    padding: 2rem 0;
  }

  .disclaimer-content h4 {
    font-size: 1.1rem;
    text-align: center;
  }

  .disclaimer-content p {
    font-size: 0.9rem;
    text-align: left;
    padding: 0 0.5rem;
  }

  .disclaimer-content .contact-info {
    text-align: center;
  }

  .highlights-grid,
  .stats-overview,
  .fees-overview,
  .payment-info,
  .advantages-grid,
  .eligibility-grid,
  .process-steps,
  .ranking-grid,
  .documents-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .duration-content,
  .duration-details {
    grid-template-columns: 1fr;
  }

  .course-timeline {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .timeline-divider {
    width: 2px;
    height: 50px;
    margin: 1rem 0;
  }

  .timeline-divider::before {
    top: 50px;
    left: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--accent-gold);
    border-bottom: none;
  }

  .payment-card {
    padding: 1.5rem;
  }

  .payment-card h4 {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .payment-card h4 i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .process-steps-payment {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .payment-step {
    padding: 1rem;
  }

  .payment-process-guide {
    padding: 1.5rem;
  }

  .payment-process-guide h3 {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .fees-table-container,
  .syllabus-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .university-info-table .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }

  .university-info-table .info-value {
    text-align: left;
    font-weight: 600;
    color: var(--primary-blue);
  }

  .phone-input {
    flex-direction: column;
    gap: 0.75rem;
  }

  .phone-input select {
    flex: 1;
  }

  .modal-content {
    margin: 5% auto;
    width: 95%;
  }

  .about,
  .highlights,
  .advantages,
  .duration,
  .fees,
  .eligibility,
  .admission-process,
  .ranking,
  .documents,
  .syllabus,
  .hostel,
  .testimonials,
  .faq,
  .contact {
    padding: 80px 0;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }

  .hero-center {
    padding: 40px 16px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  .hero-stats {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .stat-card {
    padding: 0.8rem 1rem;
    gap: 0.75rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .cta-button i {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
  .hero {
    padding: 90px 0 50px;
    min-height: 85vh;
  }

  .hero-center {
    padding: 32px 12px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .stat-card {
    padding: 0.7rem 0.9rem;
    gap: 0.6rem;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    max-width: 240px;
  }
}

.highlight-card,
.advantage-card,
.eligibility-card,
.step,
.ranking-card,
.testimonial-card {
  padding: 1.5rem;
}

.duration-card {
  padding: 2rem 1.5rem;
}

.contact-form {
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.nav-container {
  padding: 0 16px;
}

.about,
.highlights,
.advantages,
.duration,
.fees,
.eligibility,
.admission-process,
.ranking,
.documents,
.syllabus,
.hostel,
.testimonials,
.faq,
.contact {
  padding: 60px 0;
}

.fees-table th,
.fees-table td,
.syllabus-table th,
.syllabus-table td {
  padding: 1rem 0.75rem;
  font-size: 0.9rem;
}

.year-badge {
  width: 30px;
  height: 30px;
  font-size: 0.95rem;
}

.syllabus-table td:first-child {
  padding: 1rem 0.5rem;
}
/* Extra Small Mobile Devices */
@media (max-width: 360px) {
  .hero {
    padding: 90px 0 50px;
    min-height: 85vh;
  }

  .hero-center {
    padding: 32px 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .highlight-card,
  .advantage-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

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

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

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Admission Process Styles */
.process-tabs {
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  overflow: hidden;
  flex-wrap: wrap;
}

.tab-button {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  min-width: 200px;
}

.tab-button:hover {
  background: #f8fafc;
  color: var(--primary-color);
}

.tab-button.active {
  background: var(--primary-color);
  color: white;
  border-bottom-color: var(--accent-color);
}

.tab-button i {
  font-size: 1.1rem;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Enhanced Timeline Styles */
.step-details {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.time-required,
.difficulty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.difficulty .fas {
  color: var(--accent-color);
}

.step-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.action-btn.primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.action-btn.secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
  background: var(--primary-color);
  color: white;
}

.step-tips {
  background: rgba(16, 185, 129, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--success-green);
}

.step-tips h4 {
  color: var(--success-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-tips ul {
  list-style: none;
  padding: 0;
}

.step-tips li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.step-tips li::before {
  content: "✓";
  color: var(--success-green);
  font-weight: bold;
  margin-top: 0.1rem;
}

/* Document Requirements */
.document-requirements {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.document-requirements h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.doc-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.doc-item span {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

/* Exam Information */
.exam-info {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.exam-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 120px;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat span {
  color: #64748b;
  font-size: 0.9rem;
}

.exam-subjects h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subject-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.subject {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Offer Details */
.offer-details {
  background: rgba(16, 185, 129, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--success-green);
}

.offer-details h4 {
  color: var(--success-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-details ul {
  list-style: none;
  padding: 0;
}

.offer-details li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-details li::before {
  content: "🎁";
  font-size: 1rem;
}

/* Payment Options */
.payment-options {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.payment-options h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.payment-method i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.payment-method span {
  font-weight: 500;
  color: #4b5563;
}

/* Visa Support */
.visa-support {
  background: rgba(239, 68, 68, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid #ef4444;
}

.visa-support h4 {
  color: #ef4444;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visa-support ul {
  list-style: none;
  padding: 0;
}

.visa-support li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visa-support li::before {
  content: "🤝";
  font-size: 1rem;
}

/* Arrival Support */
.arrival-support {
  background: rgba(59, 130, 246, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid #3b82f6;
}

.arrival-support h4 {
  color: #3b82f6;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrival-support ul {
  list-style: none;
  padding: 0;
}

.arrival-support li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrival-support li::before {
  content: "🛎️";
  font-size: 1rem;
}

/* Enhanced Document Section */
.documents-comprehensive {
  display: grid;
  gap: 2rem;
}

.document-category-enhanced {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.category-header-enhanced {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-header-enhanced h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 1.2rem;
}

.category-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.category-status.required {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.document-checklist {
  padding: 1.5rem;
}

.document-item-enhanced {
  margin-bottom: 1rem;
}

.doc-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.doc-label:hover {
  background: #f1f5f9;
  border-color: var(--primary-color);
}

.doc-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  margin-top: 0.5rem;
}

.doc-checkbox:checked + .doc-label {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success-green);
}

.doc-label i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.doc-info {
  flex: 1;
}

.doc-info h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.doc-info p {
  margin: 0 0 0.75rem 0;
  color: #6b7280;
  line-height: 1.5;
}

.doc-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.doc-format {
  font-size: 0.8rem;
  color: #9ca3af;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.doc-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.doc-status:not(.optional) {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.doc-status.optional {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

/* Document Progress */
.document-progress {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-top: 2rem;
}

.progress-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.progress-bar-container {
  margin-bottom: 2rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-text {
  font-weight: 500;
  color: #4b5563;
}

.document-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Application Tracker */
.application-tracker {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.tracker-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tracker-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.application-status-card {
  background: #e0f2fe;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.status-overview {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.status-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-icon i {
  color: white;
  font-size: 1.5rem;
}

.status-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.status-info p {
  margin: 0 0 1rem 0;
  color: #6b7280;
  line-height: 1.5;
}

.status-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.status-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Tracking Timeline */
.tracking-timeline {
  margin: 2rem 0;
}

.track-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.track-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  width: 2px;
  height: 60px;
  background: #e2e8f0;
}

.track-step.completed::after {
  background: var(--success-green);
}

.track-step.active::after {
  background: var(--primary-color);
}

.track-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 600;
}

.track-step.completed .track-indicator {
  background: var(--success-green);
  color: white;
}

.track-step.active .track-indicator {
  background: var(--primary-color);
  color: white;
}

.track-step.pending .track-indicator {
  background: #f3f4f6;
  color: #9ca3af;
  border: 2px solid #e5e7eb;
}

.track-content {
  flex: 1;
  padding-top: 0.5rem;
}

.track-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.track-content p {
  margin: 0 0 0.5rem 0;
  color: #6b7280;
  line-height: 1.5;
}

.track-date {
  font-size: 0.85rem;
  color: #9ca3af;
  font-style: italic;
}

.tracker-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* Important Dates Section */
.important-dates {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.dates-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dates-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.academic-calendar {
  display: grid;
  gap: 2rem;
}

.calendar-section h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.date-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #e2e8f0;
  transition: all 0.3s ease;
}

.date-item.urgent {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: #ef4444;
}

.date-item.important {
  background: rgba(245, 158, 11, 0.05);
  border-left-color: #f59e0b;
}

.date-item.normal {
  background: rgba(59, 130, 246, 0.05);
  border-left-color: #3b82f6;
}

.date-item.highlight {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: var(--success-green);
}

.date-indicator {
  text-align: center;
  flex-shrink: 0;
}

.date-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.date-month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
}

.date-content {
  flex: 1;
}

.date-content h5 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.date-content p {
  margin: 0 0 1rem 0;
  color: #6b7280;
  line-height: 1.5;
  font-size: 0.9rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown i {
  color: #ef4444;
}

.countdown-text {
  font-weight: 600;
  color: #ef4444;
  font-size: 0.85rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Visa Timeline */
.visa-timeline {
  display: grid;
  gap: 1rem;
}

.visa-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  align-items: center;
}

.visa-duration {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.visa-content {
  flex: 1;
}

.visa-content h5 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.visa-content p {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

/* Enhanced Note Cards */
.important-notes-enhanced {
  margin-top: 2rem;
}

.important-notes-enhanced h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.note-card-enhanced {
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid;
}

.note-card-enhanced.urgent {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: #ef4444;
}

.note-card-enhanced.info {
  background: rgba(59, 130, 246, 0.05);
  border-left-color: #3b82f6;
}

.note-card-enhanced.success {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: var(--success-green);
}

.note-card-enhanced i {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.note-card-enhanced.urgent i {
  color: #ef4444;
}

.note-card-enhanced.info i {
  color: #3b82f6;
}

.note-card-enhanced.success i {
  color: var(--success-green);
}

.note-card-enhanced h5 {
  margin: 0 0 0.75rem 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.note-card-enhanced p {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Modern Timeline Design - Inspired by Clean Medical University Style */
.modern-process-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h3 {
  font-size: 2.2rem;
  color: #1a365d;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.modern-timeline {
  position: relative;
  padding: 2rem 0;
}

.modern-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #667eea;
  border-radius: 2px;
}

.timeline-item.modern {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 120px;
}

.timeline-item.modern:last-child {
  margin-bottom: 0;
}

.step-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  border: 6px solid white;
  z-index: 2;
}

.timeline-item.modern.final .step-badge {
  background: #10b981;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #667eea;
}

.timeline-item.modern.final .step-card::before {
  background: #10b981;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #667eea;
}

.timeline-item.modern.final .step-icon-wrapper {
  border-color: #10b981;
  background: #d1fae5;
}

.step-icon-wrapper i {
  font-size: 1.5rem;
  color: #667eea;
}

.timeline-item.modern.final .step-icon-wrapper i {
  color: #10b981;
}

.step-title-section {
  flex: 1;
}

.step-title-section h4 {
  font-size: 1.4rem;
  color: #1a365d;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  line-height: 1.3;
}

.step-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.step-description {
  margin-bottom: 1.5rem;
}

.step-description p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.step-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.meta-item i {
  color: #667eea;
  font-size: 0.9rem;
}

.meta-item span {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

.step-actions-modern {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-modern,
.btn-secondary-modern {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}

.btn-primary-modern {
  background: #667eea;
  color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary-modern.final {
  background: #10b981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary-modern.final:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary-modern {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary-modern:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Preview Elements */
.document-preview,
.success-indicators,
.visa-support-preview,
.payment-options-preview,
.arrival-services {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.doc-chip,
.indicator-item,
.support-item,
.payment-chip,
.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #e2e8f0;
  border-radius: 25px;
  border: 1px solid #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
}

.doc-chip i,
.indicator-item i,
.support-item i,
.payment-chip i,
.service-item i {
  color: #667eea;
  font-size: 0.9rem;
}

.success-indicators .indicator-item {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

.success-indicators .indicator-item i {
  color: #10b981;
}

.visa-support-preview .support-item {
  background: #fecaca;
  border-color: #ef4444;
  color: #991b1b;
}

.visa-support-preview .support-item i {
  color: #ef4444;
}

.payment-options-preview .payment-chip {
  background: #fde68a;
  border-color: #f59e0b;
  color: #92400e;
}

.payment-options-preview .payment-chip i {
  color: #f59e0b;
}

.arrival-services .service-item {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

.arrival-services .service-item i {
  color: #10b981;
}

/* Process Footer */
.process-footer {
  margin-top: 4rem;
  text-align: center;
}

.success-message {
  background: #d1fae5;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #10b981;
  max-width: 600px;
  margin: 0 auto;
}

.success-message i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.success-message h4 {
  font-size: 1.5rem;
  color: #065f46;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.success-message p {
  font-size: 1.1rem;
  color: #047857;
  margin: 0;
  line-height: 1.5;
}

/* Enhanced Tab Buttons for Modern Design */
.process-tabs {
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tab-button {
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.5s ease;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button.active {
  background: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Modern Timeline */
@media (max-width: 768px) {
  .modern-process-container {
    padding: 1rem;
  }

  .process-header h3 {
    font-size: 1.8rem;
  }

  .modern-timeline::before {
    left: 20px;
  }

  .timeline-item.modern {
    padding-left: 80px;
  }

  .step-badge {
    width: 60px;
    height: 60px;
    left: -10px;
  }

  .step-number {
    font-size: 1.4rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .step-icon-wrapper {
    width: 50px;
    height: 50px;
    align-self: center;
  }

  .step-icon-wrapper i {
    font-size: 1.2rem;
  }

  .step-title-section h4 {
    font-size: 1.2rem;
  }

  .step-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-item {
    justify-content: center;
  }

  .step-actions-modern {
    flex-direction: column;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    min-width: auto;
    justify-content: center;
  }

  .document-preview,
  .success-indicators,
  .visa-support-preview,
  .payment-options-preview,
  .arrival-services {
    justify-content: center;
  }

  .success-message {
    padding: 2rem 1.5rem;
  }

  .success-message i {
    font-size: 2.5rem;
  }

  .success-message h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .modern-timeline::before {
    left: 15px;
  }

  .timeline-item.modern {
    padding-left: 60px;
  }

  .step-badge {
    width: 50px;
    height: 50px;
    left: -10px;
  }

  .step-number {
    font-size: 1.2rem;
  }

  .step-card {
    padding: 1.25rem;
  }

  .step-title-section h4 {
    font-size: 1.1rem;
  }

  .doc-chip,
  .indicator-item,
  .support-item,
  .payment-chip,
  .service-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Simplified Admission Process Styling */
.admission-process {
  padding: 80px 0;
  background: var(--bg-light);
}

.admission-process .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.admission-process .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Admission Steps */
.admission-steps {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 82, 164, 0.1);
  border: 1px solid var(--border-light);
}

.admission-steps h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 82, 164, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* University Ranking */
.university-ranking {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 82, 164, 0.1);
  border: 1px solid var(--border-light);
}

.university-ranking h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.ranking-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ranking-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.ranking-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.ranking-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Documents Required */
.documents-required {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 82, 164, 0.1);
  border: 1px solid var(--border-light);
  grid-column: 1 / -1;
}

.documents-required h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.documents-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.documents-list li {
  padding: 15px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  font-size: 1rem;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.3s ease;
}

.documents-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 82, 164, 0.1);
}

.documents-list li::before {
  content: "📄";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .admission-process .section-header h2 {
    font-size: 2rem;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .admission-steps,
  .university-ranking,
  .documents-required {
    padding: 25px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .documents-list ul {
    grid-template-columns: 1fr;
  }

  .ranking-info {
    gap: 20px;
  }
}

.admission-process-world-class::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 82, 164, 0.2);
}

.section-badge i {
  font-size: 16px;
}

.section-header-modern h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header-modern .section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Process Progress Tracker */
.process-tracker {
  margin-bottom: 60px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tracker-line {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  z-index: 1;
}

.tracker-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tracker-step:hover {
  transform: translateY(-5px);
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tracker-step.active .step-circle {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 82, 164, 0.3);
}

.tracker-step.active .step-circle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-blue);
  border-radius: 50%;
  z-index: -1;
  animation: glow 2s infinite;
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.step-circle i {
  font-size: 24px;
  color: var(--text-secondary);
}

.tracker-step.active .step-circle i {
  color: white;
}

.tracker-step span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.tracker-step.active span {
  color: var(--primary-blue);
}

/* Process Steps Container */
.process-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.process-step-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  transition: left 0.5s ease;
}

.process-step-card:hover::before {
  left: 0;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 82, 164, 0.1);
  border-color: var(--primary-blue);
}

.step-header-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.step-number-badge {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.step-number-badge.final {
  background: var(--accent-gold);
}

.step-number-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.step-info {
  flex: 1;
}

.step-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.step-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #e6f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-light);
}

.step-icon-large.final {
  background: #fff8e1;
}

.step-icon-large i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.step-icon-large.final i {
  color: var(--accent-gold);
}

.step-details {
  margin-bottom: 30px;
}

.step-details p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Step Features */
.step-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.feature-item i {
  color: var(--primary-blue);
  font-size: 16px;
}

.feature-item span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Step Requirements */
.step-requirements h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-requirements ul {
  list-style: none;
  padding: 0;
}

.step-requirements li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.step-requirements li:last-child {
  border-bottom: none;
}

.step-requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.doc-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.doc-item-modern:hover {
  background: #f0f7ff;
  border-color: var(--primary-blue);
}

.doc-item-modern i {
  color: var(--primary-blue);
  font-size: 20px;
}

.doc-item-modern span {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.doc-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.doc-status.required {
  background: #ffebee;
  color: #c62828;
}

/* Upload Features */
.upload-features {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #e6f3ff;
  border-radius: 25px;
  border: 1px solid var(--primary-blue);
}

.feature-highlight i {
  color: var(--primary-blue);
  font-size: 14px;
}

.feature-highlight span {
  font-size: 13px;
  color: var(--primary-blue);
  font-weight: 500;
}

/* Letter Contents */
.letter-contents {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.content-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

.content-item i {
  color: var(--primary-blue);
  font-size: 24px;
}

.content-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.content-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Timeline Estimate */
.timeline-estimate {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  background: #fff8e1;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
}

.timeline-estimate i {
  color: var(--accent-gold);
  font-size: 18px;
}

.timeline-estimate span {
  font-size: 14px;
  color: #bf8f00;
  font-weight: 500;
}

/* Visa Services */
.visa-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.service-card {
  text-align: center;
  padding: 25px 15px;
  background: var(--bg-light);
  border-radius: 15px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #f0f7ff;
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.service-card i {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Visa Timeline */
.visa-timeline {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.timeline-day {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.timeline-activity {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Payment Options Modern */
.payment-options-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.payment-method {
  padding: 25px 20px;
  background: var(--bg-light);
  border-radius: 15px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.payment-method:hover {
  background: #f0f7ff;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.payment-method i {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 15px;
}

.payment-method h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.payment-method p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.method-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--bg-white);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.method-badge.recommended {
  background: var(--primary-blue);
  color: white;
  border: none;
}

/* Payment Security */
.payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: #e8f5e8;
  border-radius: 12px;
  border: 1px solid #4caf50;
}

.payment-security i {
  color: #4caf50;
  font-size: 18px;
}

.payment-security span {
  font-size: 14px;
  color: #2e7d32;
  font-weight: 500;
}

/* Arrival Package */
.arrival-package h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrival-package i {
  color: var(--accent-gold);
  font-size: 20px;
}

.package-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #fff8e1;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
}

.package-item i {
  color: var(--accent-gold);
  font-size: 18px;
}

.package-item span {
  font-size: 14px;
  color: #bf8f00;
  font-weight: 500;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 25px;
  background: #e8f5e8;
  border-radius: 15px;
  border: 2px solid #4caf50;
}

.success-message i {
  color: #4caf50;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.success-message h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 8px;
}

.success-message p {
  font-size: 1rem;
  color: #2e7d32;
  margin: 0;
}

/* Step Actions */
.step-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-world {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-world:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 164, 0.3);
}

.btn-primary-world::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.5s ease;
}

.btn-primary-world:hover::before {
  left: 100%;
}

.btn-secondary-world {
  background: var(--bg-white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-secondary-world:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 164, 0.2);
}

/* Final Step Styling */
.process-step-card.final-step {
  background: #fff8e1;
  border: 2px solid var(--accent-gold);
}

.process-step-card.final-step::before {
  background: var(--accent-gold);
}

/* Quick Help Section */
.quick-help-section {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.help-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.help-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 82, 164, 0.05);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.help-card:hover::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 82, 164, 0.15);
  border-color: var(--primary-blue);
}

.help-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.help-icon i {
  color: white;
  font-size: 2rem;
}

.help-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.help-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.help-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 164, 0.3);
}

/* Responsive Design for World-Class Components */
@media (max-width: 768px) {
  .admission-process-world-class .section-header-modern h2 {
    font-size: 2.5rem;
  }

  .tracker-steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .step-circle {
    width: 60px;
    height: 60px;
  }

  .step-circle i {
    font-size: 20px;
  }

  .step-header-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .step-number-badge,
  .step-icon-large {
    width: 70px;
    height: 70px;
  }

  .process-step-card {
    padding: 25px;
  }

  .step-features {
    grid-template-columns: 1fr;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  .visa-services {
    grid-template-columns: 1fr;
  }

  .payment-options-modern {
    grid-template-columns: 1fr;
  }

  .package-items {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column;
    align-items: center;
  }

  .quick-help-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .visa-timeline {
    flex-direction: column;
    gap: 15px;
  }

  .upload-features {
    flex-direction: column;
    align-items: center;
  }
}

/* Admission Process Styles */
.admission-process {
  padding: 80px 0;
  background: #e2e8f0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}

.process-step {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 30px;
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.step-icon-small {
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* University Ranking Styles */
.university-ranking {
  padding: 80px 0;
  background: var(--bg-white);
}

.ranking-content {
  max-width: 100%;
}

.ranking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.ranking-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ranking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ranking-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.ranking-position {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.ranking-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ranking-info p {
  opacity: 0.8;
  line-height: 1.6;
}

.reputation-section {
  background: #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.reputation-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.reputation-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reputation-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.highlight-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Documents Required Styles */
.documents-required {
  padding: 80px 0;
  background: #e2e8f0;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.document-category {
  background: white;
  border-radius: 20px;
  padding: 30px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.document-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.document-category h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 25px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 60px;
}

.document-item:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.document-item i {
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  margin: 0;
}

.document-item span {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.5;
  flex: 1;
  display: flex;
  align-items: center;
}

.documents-note {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-gold);
}

.note-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.note-content i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-top: 3px;
}

.note-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.note-text p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .process-timeline {
    gap: 20px;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .step-number {
    margin: 0 0 20px 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-content {
    text-align: center;
  }

  .step-content h3 {
    font-size: 1.3rem;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  .step-content p {
    font-size: 1rem;
  }

  .step-icon-small {
    font-size: 1.1rem;
  }

  .ranking-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ranking-card {
    padding: 30px 20px;
  }

  .ranking-position {
    font-size: 2.5rem;
  }

  .reputation-highlights {
    flex-direction: column;
    gap: 20px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .document-category {
    padding: 25px 30px;
  }

  .document-item {
    padding: 15px 20px;
    gap: 15px;
    text-align: left;
    justify-content: flex-start;
    min-height: 55px;
  }

  .document-item i {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    margin: 0;
  }

  .document-item span {
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  .note-content {
    flex-direction: column;
    text-align: center;
  }
}
