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

html {
  scroll-behavior: smooth;
}

/* CHANGED: Updated body background to be lighter with subtle gradient */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937; /* CHANGED: Darker text for better contrast on lighter background */
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%); /* CHANGED: Light gradient background */
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0; /* CHANGED: Light scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CHANGED: Header now has light background with dark text */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95); /* CHANGED: Light background */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 213, 225, 0.5); /* CHANGED: Light border */
  border-radius: 1rem;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* CHANGED: Subtle shadow */
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98); /* CHANGED: More opaque when scrolled */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); /* CHANGED: Stronger shadow when scrolled */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}

.logo i {
  font-size: 1.5rem;
}

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

/* CHANGED: Navigation links now dark for light header */
.nav-link {
  color: #374151; /* CHANGED: Dark text for light background */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #3b82f6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  border-radius: 1px;
  transition: width 0.3s ease;
}

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

/* CHANGED: Mobile menu button now dark */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #374151; /* CHANGED: Dark color for light header */
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* CHANGED: Outline button now works better with light background */
.btn-outline {
  background: transparent;
  color: #374151; /* CHANGED: Dark text */
  border: 1px solid #d1d5db; /* CHANGED: Light border */
}

.btn-outline:hover {
  background: #374151; /* CHANGED: Dark background on hover */
  color: white;
  border-color: #3b82f6;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* CHANGED: Hero section now has mixed light/dark elements */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%); /* CHANGED: Dark hero background for contrast */
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: #3b82f6;
}

.orb-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: #9333ea;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  color: rgba(59, 130, 246, 0.2);
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* CHANGED: Hero title now white for dark hero background */
.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff; /* CHANGED: White text for dark background */
  line-height: 1.1;
}

/* CHANGED: Hero description now light for dark background */
.hero-description {
  font-size: 1.25rem;
  color: #e2e8f0; /* CHANGED: Light text for dark background */
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

/* CHANGED: Stat label now light for dark hero */
.stat-label {
  color: #cbd5e1; /* CHANGED: Light text for dark background */
  font-size: 0.9rem;
}

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

.section-badge {
  display: inline-block;
  background: rgba(147, 51, 234, 0.2);
  color: #a855f7;
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* CHANGED: Section titles now dark for light sections */
.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1f2937; /* CHANGED: Dark text for light background */
}

/* CHANGED: Section descriptions now dark */
.section-description {
  font-size: 1.2rem;
  color: #6b7280; /* CHANGED: Medium gray for better readability */
  max-width: 600px;
  margin: 0 auto;
}

/* CHANGED: Services section now light background */
.services {
  background: rgba(248, 250, 252, 0.8); /* CHANGED: Light background */
}

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

/* CHANGED: Service cards now dark as requested */
.service-card {
  background: #1e293b; /* CHANGED: Dark card background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow for depth */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.service-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.service-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.service-icon.purple {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}
.service-icon.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.service-icon.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
.service-icon.indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* CHANGED: Service card text now light for dark cards */
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc; /* CHANGED: Light text for dark cards */
  margin-bottom: 1rem;
}

.service-card p {
  color: #cbd5e1; /* CHANGED: Light text for dark cards */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* CHANGED: Countries section now has alternating background */
.countries {
  background: rgba(30, 41, 59, 0.1); /* CHANGED: Very light dark background for contrast */
}

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

/* CHANGED: Country cards remain dark as requested */
.country-card {
  background: #1e293b; /* CHANGED: Dark card background */
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.country-header {
  position: relative;
  margin-bottom: 1.5rem;
}

.country-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.country-card:hover .country-image {
  transform: scale(1.02);
}

.country-salary {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(16, 185, 129, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.country-content {
  padding: 0;
}

/* CHANGED: Country card text remains light for dark cards */
.country-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff; /* CHANGED: Light text for dark cards */
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.country-content p {
  color: #cbd5e1; /* CHANGED: Light text for dark cards */
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.country-features {
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.feature i {
  color: #10b981;
}

/* Remove overlay styles since we're using the new card design */
.country-overlay,
.country-overlay-content {
  display: none;
}

/* CHANGED: About section now light background */
.about {
  background: rgba(248, 250, 252, 0.8); /* CHANGED: Light background */
}

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

.about-text .section-badge {
  background: rgba(147, 51, 234, 0.2);
  color: #a855f7;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

/* CHANGED: About text now dark for light background */
.about-text p {
  color: #4b5563; /* CHANGED: Dark text for light background */
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* CHANGED: Stat boxes now dark as requested */
.stat-box {
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-box i {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-box .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

/* CHANGED: Stat box labels now light for dark boxes */
.stat-box .stat-label {
  color: #cbd5e1; /* CHANGED: Light text for dark background */
  font-size: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  border-radius: 1.5rem;
}

/* CHANGED: Contact section alternating background */
.contact {
  background: rgba(30, 41, 59, 0.05); /* CHANGED: Very light dark background */
}

.contact .section-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

/* CHANGED: Contact info heading now dark */
.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937; /* CHANGED: Dark text for light background */
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* CHANGED: Contact items now dark cards */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

.contact-item:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* CHANGED: Contact details text now light for dark cards */
.contact-details h4 {
  font-weight: 600;
  color: #f8fafc; /* CHANGED: Light text for dark background */
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #cbd5e1; /* CHANGED: Light text for dark background */
}

/* CHANGED: Contact form container now dark */
.contact-form-container {
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

/* CHANGED: Contact form card text now light */
.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc; /* CHANGED: Light text for dark background */
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: #cbd5e1; /* CHANGED: Light text for dark background */
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* CHANGED: Form labels now light for dark form */
.form-group label {
  display: block;
  color: #e2e8f0; /* CHANGED: Light text for dark background */
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CHANGED: Footer now dark for contrast */
.footer {
  background: #0f172a; /* CHANGED: Darker footer background */
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 1.5rem;
}

/* CHANGED: Footer text remains light for dark footer */
.footer-section h3 {
  color: #f8fafc; /* CHANGED: Light text for dark footer */
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cbd5e1; /* CHANGED: Light text for dark footer */
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-section a {
  display: block;
  color: #cbd5e1; /* CHANGED: Light text for dark footer */
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #3b82f6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #64748b;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header {
    padding: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* CHANGED: Mobile nav menu now light background */
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95); /* CHANGED: Light background for mobile menu */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.5); /* CHANGED: Light border */
    border-radius: 1rem;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* CHANGED: Light shadow */
  }

  .nav-menu.active {
    display: flex;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .countries-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  /* CHANGED: Mobile stat items now dark */
  .stat-item {
    padding: 1rem;
    background: #1e293b; /* CHANGED: Dark background */
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
  }
}

/* Timeline Styles */
.visa-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.visa-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* CHANGED: Timeline content now dark */
.timeline-content {
  flex: 1;
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 2rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(71, 85, 105, 0.3);
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid rgba(71, 85, 105, 0.3);
}

/* CHANGED: Timeline content text now light for dark background */
.timeline-content h3 {
  color: #f8fafc; /* CHANGED: Light text for dark background */
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #cbd5e1; /* CHANGED: Light text for dark background */
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-duration {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Salary Range and Demand Meter */
.salary-range {
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.demand-meter {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.demand-bar {
  height: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 4px;
  transition: width 1s ease;
  margin-bottom: 0.5rem;
}

.demand-meter span {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
  .visa-timeline::before {
    left: 2rem;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }

  .timeline-content {
    margin-left: 2rem;
    margin-right: 0;
  }

  .timeline-item .timeline-content::before {
    left: -10px !important;
    right: auto !important;
    border-right: 10px solid rgba(71, 85, 105, 0.3) !important;
    border-left: none !important;
  }
}

/* Enhanced UAE Hero Section */
.hero-background-image {
  position: absolute;
  inset: 0;
  background: url("/placeholder.svg?height=800&width=1200&text=UAE+Dubai+Skyline+Background") center / cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content-enhanced {
  text-align: center;
  max-width: 900px;
  z-index: 2;
  padding: 4rem 2rem;
  margin: 0 auto;
}

.hero-title-enhanced {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-description-enhanced {
  font-size: 1.5rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* CHANGED: Enhanced stat items now dark */
.stat-item-enhanced {
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

.stat-item-enhanced:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Service Hero Section */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.service-icon-large {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  animation: float 3s ease-in-out infinite;
}

/* CHANGED: Form sections now light background */
.form-section {
  background: rgba(248, 250, 252, 0.8); /* CHANGED: Light background */
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* CHANGED: Form section cards now dark */
.form-section-card {
  background: #1e293b; /* CHANGED: Dark background */
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* CHANGED: Added shadow */
}

.form-section-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.form-section-header i {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

/* CHANGED: Form section headers now light for dark cards */
.form-section-header h3 {
  color: #f8fafc; /* CHANGED: Light text for dark background */
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

/* CHANGED: Form group labels now light for dark forms */
.form-group label {
  display: block;
  color: #e2e8f0; /* CHANGED: Light text for dark background */
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Trip Type Selector */
.trip-type-selector {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.radio-group input[type="radio"] {
  width: auto;
  margin: 0;
}

/* CHANGED: Radio group labels now light for dark forms */
.radio-group label {
  color: #e2e8f0; /* CHANGED: Light text for dark background */
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}

/* Checkbox Groups */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.25rem;
}

/* CHANGED: Checkbox group labels now light for dark forms */
.checkbox-group label {
  color: #e2e8f0; /* CHANGED: Light text for dark background */
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

.terms-link {
  color: #3b82f6;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Form Note */
.form-note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
}

.form-note i {
  color: #3b82f6;
  margin-right: 0.5rem;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trip-type-selector {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stats-enhanced {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .form-section-card {
    padding: 1.5rem;
  }

  .form-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
