:root {
  --primary-blue: #0B4F8A;
  --accent-gold: #FFB800;
  --deep-navy: #0A2540;
  --sky-light: #E8F4FD;
  --gradient-start: #1E88E5;
  --gradient-end: #0D47A1;
  --success-green: #00C853;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--deep-navy);
  overflow-x: hidden;
  background: #ffffff;
}

/* Animated Background Grid */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(11, 79, 138, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(11, 79, 138, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}


/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 10rem 5% 5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-light) 100%);
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -2px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--gradient-start) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--accent-gold);
  opacity: 0.3;
  border-radius: 4px;
}

.hero p {
  font-size: 1.5rem;
  color: #5A6F7F;
  margin-bottom: 3rem;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.5;
}

.shape-1 {
  top: 15%;
  left: 8%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FF6B35 100%);
  border-radius: 20px;
  transform: rotate(25deg);
  animation: floatShape 8s infinite ease-in-out;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00C853 100%);
  border-radius: 50%;
  animation: floatShape 10s infinite ease-in-out 2s;
}

.shape-3 {
  bottom: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  border: 5px solid var(--primary-blue);
  border-radius: 50%;
  animation: floatShape 12s infinite ease-in-out 4s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(-15px, 10px) rotate(180deg);
  }

  75% {
    transform: translate(10px, 20px) rotate(270deg);
  }
}

/* Path Section */
.path-section {
  position: relative;
  padding: 8rem 5%;
  background: #ffffff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 1.3rem;
  color: #5A6F7F;
  max-width: 600px;
  margin: 0 auto;
}

/* SVG Path */
.career-path {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.path-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-50%);
  z-index: 1;
}

.path-line {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 4;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 3s ease-out forwards;
  filter: drop-shadow(0 4px 10px rgba(255, 184, 0, 0.3));
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  z-index: 10;
}

.step-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out forwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.2s;
}

.step-card:nth-child(2) {
  animation-delay: 0.4s;
}

.step-card:nth-child(3) {
  animation-delay: 0.6s;
}

.step-card:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.step-card:hover::before {
  opacity: 0.05;
}

.step-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 30px 80px rgba(30, 136, 229, 0.2);
  border-color: var(--primary-blue);
}

.step-number {
  position: absolute;
  top: 11px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FF6B35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
  z-index: 2;
}

.step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 15px 40px rgba(30, 136, 229, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
  transform: rotateY(360deg);
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: #5A6F7F;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Achievement Banner */
.achievement-banner {
  position: relative;
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--primary-blue) 50%, var(--deep-navy) 100%);
  overflow: hidden;
  margin: 5rem 0;
}

.achievement-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(28.28px);
  }
}

.achievement-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.trophy-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow:
    0 20px 60px rgba(255, 184, 0, 0.4),
    0 0 100px rgba(255, 184, 0, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.achievement-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.achievement-banner p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Bottom Cards */
.features-section {
  padding: 6rem 5% 8rem;
  background: var(--sky-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 4rem 3rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.2), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 30px 80px rgba(11, 79, 138, 0.15);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-start) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(11, 79, 138, 0.3);
  transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: #5A6F7F;
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards, bounce 2s infinite ease-in-out 3s;
}

.scroll-indicator::before {
  content: '↓';
  display: block;
  font-size: 2rem;
  color: var(--accent-gold);
  animation: float 2s infinite ease-in-out;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Particle Effect */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }


  .steps-container {
    grid-template-columns: 1fr;
  }

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

  .achievement-banner h2 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}