:root {
  --primary: #1976d2; /* A strong, professional blue */
  --secondary: #f57c00; /* A vibrant orange */
  --accent: #ff9800; /* A slightly lighter orange for gradients */
  --dark: #1a252f;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e3f2fd; /* Light blue for backgrounds */
  --bg-color: #f4f6f8;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-light: rgba(25, 118, 210, 0.05);
  --shadow-medium: rgba(25, 118, 210, 0.1);
  --shadow-dark: rgba(25, 118, 210, 0.2);
  --success: #4caf50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Animated Shapes Background */
.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite alternate;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -150px;
  right: -150px;
  animation-duration: 25s;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -100px;
  left: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.trust-badge {
  text-align: center;
  padding: 15px;
}
.trust-badge i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.trust-badge .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.trust-badge .text {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Lead Capture Form */
.lead-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}
.urgency-badge {
  background: #ff4444;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white !important;
}
.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-5px);
}
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.cta-btn {
  background: white;
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white !important;
}
.cta-btn-secondary:hover {
  background: white;
  color: var(--secondary);
  transform: translateY(-5px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Modern Header */
.modern-header {
  background: linear-gradient(135deg, #0d47a1 0%, var(--primary) 100%);
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.modern-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.modern-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  display: inline-block;
  cursor: pointer;
}
.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
}
.btn-primary:hover {
  background: #ef6c00;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(245, 124, 0, 0.4);
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}
.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
}
.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}
.benefit-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* Career Path Redesign */
.career-path-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.path-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease-in-out;
  border-left: 5px solid var(--primary);
}
.path-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-left-color: var(--secondary);
}
.path-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), #42a5f5);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.25);
}
.path-content {
  flex-grow: 1;
}
.path-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.path-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.path-duration {
  background: var(--light-gray);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.path-description {
  color: var(--gray);
  margin-bottom: 15px;
}
.technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-tag {
  background: var(--light-gray);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Job Outcomes Section */
.job-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.outcome-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.outcome-card:hover::before {
  transform: scaleX(1);
  background: var(--secondary);
}
.outcome-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}
.outcome-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px var(--shadow-dark);
}
.outcome-card:hover .outcome-icon-large {
  background: var(--secondary);
  transform: rotate(10deg) scale(1.1);
}
.outcome-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}
.outcome-card p {
  margin-bottom: 20px;
  color: var(--gray);
}
.salary-badge {
  background: var(--light-gray);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
}

/* Skills Roadmap */
.skills-roadmap {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px var(--shadow-light);
  margin-top: 50px;
}
.roadmap-title {
  text-align: center;
  margin-bottom: 40px;
}
.roadmap-title h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.skill-category h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}
.skill-list {
  list-style: none;
}
.skill-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--gray);
}
.skill-list li i {
  color: var(--secondary);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.cta-btn {
  background: white;
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-30px) rotate(15deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-header h1 {
    font-size: 2.5rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .skills-roadmap {
    padding: 30px 20px;
  }
  .path-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .path-number {
    margin-bottom: 20px;
  }
  .path-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
