:root {
  /* Main Colors - Neon Theme */
  --primary-color: #00f9ff; /* Cyan neon */
  --primary-light: #4dfeff;
  --primary-dark: #00c9d6;
  --secondary-color: #f89bf5; /* Magenta neon */
  --tertiary-color: #7bff00; /* Lime neon */
  --dark-color: #111827;
  --light-color: #bfffdc;
  --gray-color: #6b7280;
  --success-color: #00ff9d;
  --warning-color: #ffe08b;
  --danger-color: #ff0844;
  --bg-color: #0a0a1a; /* Dark background with slight blue tint */
  --card-bg: #121225; /* Slightly lighter than background */

  /* Typography */
  --body-font: 'Poppins', sans-serif;
  --heading-font: 'Poppins', sans-serif;
  --code-font: 'Roboto Mono', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
  
  /* Other */
  --border-radius: 8px;
  --box-shadow: 0 0 20px rgba(0, 249, 255, 0.3); /* Cyan glow */
  --magenta-glow: 0 0 20px rgba(255, 0, 245, 0.3); /* Magenta glow */
  --lime-glow: 0 0 20px rgba(123, 255, 0, 0.3); /* Lime glow */
  --neon-border: 2px solid var(--primary-color);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--light-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 249, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 245, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(123, 255, 0, 0.05) 0%, transparent 30%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary-color);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-color);
}

.section-header h2::before {
  content: '<';
  position: absolute;
  left: -30px;
  color: var(--primary-color);
  opacity: 0.7;
  font-family: var(--code-font);
}

.section-header h2::after {
  content: '/>';
  position: absolute;
  right: -40px;
  color: var(--primary-color);
  opacity: 0.7;
  font-family: var(--code-font);
}

.code-tag {
  color: var(--primary-color);
  font-family: var(--code-font);
  opacity: 0.8;
  font-weight: normal;
  font-size: 0.8em;
}

.code-comment {
  color: var(--tertiary-color);
  font-family: var(--code-font);
  opacity: 0.7;
  font-style: italic;
  font-size: 0.9em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-color);
  max-width: 700px;
  margin: 10px auto 0;
  opacity: 0.8;
}

.highlight {
  color: var(--primary-color);
  position: relative;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  bottom: -5px;
  left: 0;
  z-index: -1;
  box-shadow: 0 0 10px var(--primary-color);
}

.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--secondary-color),
    var(--tertiary-color),
    var(--primary-color));
  background-size: 300% 100%;
  z-index: -1;
  transition: all 0.6s ease;
}

.btn-primary {
  border: 2px solid transparent;
  color: var(--dark-color);
  font-weight: 600;
  background-color: transparent;
  box-shadow: 0 0 10px var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover::before {
  background-position: 100% 0;
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  box-shadow: 0 0 5px var(--primary-color);
}

.btn-outline-primary::before {
  opacity: 0;
}

.btn-outline-primary:hover {
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--primary-color);
}

.btn-outline-primary:hover::before {
  opacity: 1;
}

/* Button animations */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--primary-color);
  }
  50% {
    box-shadow: 0 0 20px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 5px var(--primary-color);
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background-color: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 249, 255, 0.2);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 26, 0.95);
  box-shadow: 0 0 30px rgba(0, 249, 255, 0.3);
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
  letter-spacing: 1px;
}

.logo {
  width: 67px;
  height: 60px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--light-color);
  font-weight: 500;
  margin: 0 15px;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 0 5px var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 0 5px var(--primary-color);
}

.nav-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 249, 255, 0.5);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover::after {
  opacity: 1;
  left: 100%;
}

.navbar-nav .btn {
  margin-left: 15px;
  padding: 8px 20px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--primary-color);
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 249, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 245, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  filter: blur(60px);
  opacity: 0.2;
  top: 10%;
  right: 10%;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate(-30px, 30px);
    opacity: 0.3;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(0, 249, 255, 0.3);
  position: relative;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--light-color);
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.tech-stack {
  padding: 40px 0;
  background-color: rgba(10, 10, 26, 0.8);
  border-top: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.tech-stack::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 249, 255, 0.05),
    transparent);
  pointer-events: none;
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.tech-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
}

.tech-icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 249, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.tech-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.7);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(0, 249, 255, 0.7);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 249, 255, 0.9);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(0, 249, 255, 0.7);
  }
}

.tech-icon span {
  font-weight: 500;
  color: var(--light-color);
  letter-spacing: 1px;
  position: relative;
}

.tech-icon span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px var(--primary-color);
}

.tech-icon:hover span::after {
  width: 100%;
}

/* Mentors Section */
.mentors {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.mentors::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 0, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 249, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.mentor-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mentor-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--primary-color));
  background-size: 400% 400%;
  z-index: -1;
  border-radius: var(--border-radius);
  animation: borderGlow 6s ease infinite;
}

.mentor-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) - 2px);
  z-index: -1;
}

.mentor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 249, 255, 0.4);
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.mentor-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid rgba(79, 70, 229, 0.2);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.mentor-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.mentor-bio {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.mentor-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mentor-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.mentor-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Benefits Section */
.benefits {
  padding: var(--section-padding);
  background-color: rgba(15, 15, 31, 0.7);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(123, 255, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0, 249, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.benefit-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--tertiary-color), var(--primary-color), var(--tertiary-color));
  background-size: 400% 400%;
  z-index: -1;
  border-radius: var(--border-radius);
  animation: borderGlow 6s ease infinite;
  animation-delay: 0.2s;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) - 2px);
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(123, 255, 0, 0.4);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--gray-color);
}

/* Courses Section */
.courses {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.courses::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 70% 20%, rgba(255, 0, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(123, 255, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.course-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.course-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  z-index: -1;
  border-radius: var(--border-radius);
  animation: borderGlow 6s ease infinite;
  animation-delay: 0.4s;
}

.course-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) - 2px);
  z-index: -1;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 245, 0.4);
}

.course-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.course-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.course-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.course-details {
  padding: 0;
  margin-bottom: 20px;
}

.course-details li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.course-details li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Connect Section */
.connect {
  padding: var(--section-padding);
  background-color: rgba(15, 15, 31, 0.7);
  position: relative;
  overflow: hidden;
}

.connect::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 249, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 60%, rgba(123, 255, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.connect-process {
  max-width: 900px;
  margin: 0 auto 60px;
}

.process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  height: calc(100% + 30px);
  width: 2px;
  background-color: rgba(79, 70, 229, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 10px;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray-color);
}

.connect-cta {
  text-align: center;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: rgba(11, 11, 21, 0.536);
}
.contact::before{
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 249, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 60%, rgba(123, 255, 0, 0.08) 0%, transparent 40%);
}
.contact-info {
  /* background-color: var(--primary-color); */
  border-radius: var(--border-radius);
  padding: 40px;
  color: white;
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: white;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

.contact-text p {
  margin: 0;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--primary-color));
  background-size: 400% 400%;
  z-index: -1;
  border-radius: var(--border-radius);
  animation: borderGlow 6s ease infinite;
  animation-delay: 0.2s;
}

.contact-form-container::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) - 2px);
  z-index: -1;
}

.contact-form .form-control {
  border: none;
  border-radius: 5px;
  border: 1px solid rgba(0, 249, 255, 0.3);
  background-color: rgba(15, 15, 31, 0.5);
  padding: 15px;
  font-size: 1rem;
  color: var(--light-color);
  box-shadow: none !important;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.5) !important;
  background-color: rgba(15, 15, 31, 0.7);
}

.contact-form .form-label {
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-form .form-label::after {
  content: ':';
  position: absolute;
  right: -5px;
  color: var(--secondary-color);
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-text{
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 249, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 60%, rgba(123, 255, 0, 0.08) 0%, transparent 40%);
}
/* Footer */
.footer {
  background-color: rgba(10, 10, 26, 0.95);
  color: var(--light-color);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--primary-color);
}

.footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 0, 245, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(0, 249, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-newsletter h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright p {
  margin: 0;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Styles */

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

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-text {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .benefit-card,
  .course-card,
  .mentor-card {
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .tech-icon i {
    font-size: 2rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-about,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .tech-icons {
    gap: 10px;
  }
  
  .tech-icon {
    padding: 10px;
  }
  
  .tech-icon i {
    font-size: 1.5rem;
  }
  
  .tech-icon span {
    font-size: 0.8rem;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

.footer img{
    height: 100px;
    width:30%;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--primary-color));
  }
  .music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }

  #toggle-music {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
  }

  #toggle-music:hover {
    background: rgba(0,0,0,0.9);
  }

  .music-off {
    display: none;
  }


  /* Locations Section */
.locations-section {
  padding: 60px 0;
  background-color: #0a0a1a;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: linear-gradient(145deg, #111133, #1a1a40);
  border: 1px solid #30309a;
  border-radius: 8px;
  padding: 25px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(89, 86, 255, 0.15);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(89, 86, 255, 0.3);
}

.location-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.location-card h3 {
  color: #5956ff;
  font-size: 20px;
  margin-bottom: 15px;
}

.location-card p {
  color: #aaaadd;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-link {
  display: inline-block;
  color: #5956ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.location-link:hover {
  color: #7d7aff;
  text-decoration: underline;
}

.coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #5956ff;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Slogan Section */
.slogan-section {
  background: linear-gradient(270deg, #0e0e23, #1a1a40);
  padding: 50px 0;
  text-align: center;
}

.slogan-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 4px;
  position: relative;
}

.slogan-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: linear-gradient(90deg, #5956ff, #ff5956, #5956ff) border-box;
  -webkit-mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderAnimation 3s infinite linear;
}

.slogan-text {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(89, 86, 255, 0.5);
}

.slogan-subtext {
  font-size: 18px;
  color: #aaaadd;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .locations-container {
    flex-direction: column;
    align-items: center;
  }
  
  .slogan-text {
    font-size: 24px;
  }
  
  .slogan-subtext {
    font-size: 16px;
  }
}

/* Building Animation Styles */
.building-animation {
  height: 180px;
  margin-bottom: 20px;
}

.building-svg {
  width: 100%;
  height: 100%;
}

.building-base {
  fill: #2a2a5a;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-door {
  fill: #111133;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-window {
  fill: #7d7aff;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-roof {
  fill: #3a3a7a;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-text {
  fill: #5956ff;
  font-size: 12px;
  font-weight: bold;
}

/* Vadodara Construction Animation */
.crane-base {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
}

.crane-arm {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
  transform-origin: 165px 84px;
  animation: craneRotate 8s ease-in-out infinite alternate;
}

.crane-cable {
  stroke: #333;
  stroke-width: 2;
  stroke-dasharray: 2;
}

.crane-hook {
  fill: #333;
}

.scaffold {
  stroke: #aaa;
  stroke-width: 2;
  stroke-dasharray: 4;
}

.worker {
  fill: #ff5956;
  animation: workerMove 3s ease-in-out infinite;
}

@keyframes craneRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes workerMove {
  0%, 100% {
    cy: 60;
  }
  50% {
    cy: 65;
  }
}

/* Light pulses for Agra building windows */
.agra-building .building-window {
  animation: windowLight 3s infinite alternate;
}

.agra-building .building-window:nth-child(2) {
  animation-delay: 0.5s;
}

.agra-building .building-window:nth-child(3) {
  animation-delay: 1s;
}

.agra-building .building-window:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes windowLight {
  0%, 100% {
    fill: #7d7aff;
  }
  50% {
    fill: #5956ff;
    filter: drop-shadow(0 0 5px #5956ff);
  }
}

/* Enhanced Locations Section from before */
.locations-section {
  padding: 60px 0;
  background-color: #0a0a1a;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: linear-gradient(145deg, #111133, #1a1a40);
  border: 1px solid #30309a;
  border-radius: 8px;
  padding: 25px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(89, 86, 255, 0.15);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(89, 86, 255, 0.3);
}

.location-card h3 {
  color: #5956ff;
  font-size: 20px;
  margin-bottom: 15px;
}

.location-card p {
  color: #aaaadd;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-link {
  display: inline-block;
  color: #5956ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.location-link:hover {
  color: #7d7aff;
  text-decoration: underline;
}

.coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #5956ff;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Custom Cursor Styling */
.cursor-dot, 
.cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  will-change: transform;
  transform: translate(-50%, -50%);
  display: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #5956ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #5956ff, 0 0 20px #5956ff;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(89, 86, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(89, 86, 255, 0.5);
  transition: width 0.2s, height 0.2s;
}

/* Show custom cursor only on larger screens where mouse is likely being used */
@media (min-width: 1024px) {
  body {
    cursor: none;
  }
  
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
  
  a, button, input[type="button"], input[type="submit"], .clickable {
    cursor: none;
  }
  
  a:hover ~ .cursor-ring,
  button:hover ~ .cursor-ring,
  input[type="button"]:hover ~ .cursor-ring,
  input[type="submit"]:hover ~ .cursor-ring,
  .clickable:hover ~ .cursor-ring {
    width: 48px;
    height: 48px;
    border-color: rgba(89, 86, 255, 1);
    background-color: rgba(89, 86, 255, 0.1);
  }
}
/* Particles Canvas Styling */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Behind all content */
  pointer-events: none; /* Don't interfere with clicks */
  opacity: 0.5; /* Subtle effect */
}

/* Enhanced Locations Section */
.locations-section {
  padding: 80px 0;
  background-color: #0a0a1a;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(89, 86, 255, 0.05) 0%, transparent 300px),
    radial-gradient(circle at 80% 70%, rgba(89, 86, 255, 0.05) 0%, transparent 300px);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(89, 86, 255, 0.5);
}

.section-subtitle {
  text-align: center;
  color: #aaaadd;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.location-card {
  background: linear-gradient(145deg, #111133, #1a1a40);
  border: 1px solid #30309a;
  border-radius: 12px;
  padding: 30px;
  width: 340px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(89, 86, 255, 0.15);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(89, 86, 255, 0.3);
}

.location-status {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.active {
  background-color: #5956ff;
  color: white;
  box-shadow: 0 0 10px rgba(89, 86, 255, 0.5);
}

.coming-soon-status {
  background-color: #ff5956;
  color: white;
  box-shadow: 0 0 10px rgba(255, 89, 86, 0.5);
}

.location-card h3 {
  color: #5956ff;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.location-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #5956ff;
}

.location-card p {
  color: #aaaadd;
  line-height: 1.6;
  margin-bottom: 25px;
}

.location-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.feature-text {
  font-size: 12px;
  color: #aaaadd;
}

.location-hours, .location-progress {
  background-color: rgba(89, 86, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  border-left: 3px solid #5956ff;
}

.location-hours h4, .location-progress h4 {
  color: #5956ff;
  margin-bottom: 10px;
  font-size: 16px;
}

.location-hours p {
  margin-bottom: 5px;
  font-size: 14px;
}

.progress-bar {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #5956ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: width 1.5s ease;
  position: relative;
}

.progress-fill:hover {
  color: white;
  font-size: 10px;
}

.progress-note {
  font-size: 12px;
  color: #aaaadd;
  font-style: italic;
}

.location-link {
  display: inline-block;
  color: white;
  background-color: #5956ff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(89, 86, 255, 0.3);
}

.location-link:hover {
  background-color: #6e44ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(89, 86, 255, 0.5);
}

.link-icon {
  margin-right: 5px;
}

.coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #ff5956;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 5;
}

/* Global Reach Section */
.global-reach {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(145deg, #111133, #1a1a40);
  border-radius: 12px;
  border: 1px solid #30309a;
  box-shadow: 0 0 25px rgba(89, 86, 255, 0.15);
}

.global-reach h3 {
  color: #5956ff;
  font-size: 28px;
  margin-bottom: 15px;
}

.global-reach p {
  color: #aaaadd;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  width: 150px;
  background-color: rgba(89, 86, 255, 0.1);
  border-radius: 10px;
  border-bottom: 3px solid #5956ff;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #5956ff;
  margin-bottom: 5px;
  background: linear-gradient(to right, #5956ff, #a254ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #aaaadd;
  font-size: 14px;
}

.contact-cta {
  margin-top: 20px;
}

.contact-cta p {
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #5956ff, #7d7aff);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(89, 86, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(89, 86, 255, 0.5);
}

/* Animation effects for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.location-card, .global-reach {
  animation: fadeInUp 1s ease forwards;
}

.location-card:nth-child(2) {
  animation-delay: 0.2s;
}

.global-reach {
  animation-delay: 0.4s;
}

/* Building Animation Styles (keeping what you had before) */
.building-animation {
  height: 180px;
  margin-bottom: 20px;
}

.building-svg {
  width: 100%;
  height: 100%;
}

.building-base {
  fill: #2a2a5a;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-door {
  fill: #111133;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-window {
  fill: #7d7aff;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-roof {
  fill: #3a3a7a;
  stroke: #5956ff;
  stroke-width: 1;
}

.building-text {
  fill: #5956ff;
  font-size: 12px;
  font-weight: bold;
}

/* Vadodara Construction Animation */
.crane-base {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
}

.crane-arm {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
  transform-origin: 165px 84px;
  animation: craneRotate 8s ease-in-out infinite alternate;
}

.crane-cable {
  stroke: #333;
  stroke-width: 2;
  stroke-dasharray: 2;
}

.crane-hook {
  fill: #333;
}

.scaffold {
  stroke: #aaa;
  stroke-width: 2;
  stroke-dasharray: 4;
}

.worker {
  fill: #ff5956;
  animation: workerMove 3s ease-in-out infinite;
}

@keyframes craneRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes workerMove {
  0%, 100% {
    cy: 60;
  }
  50% {
    cy: 65;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .locations-container {
    flex-direction: column;
    align-items: center;
  }
  
  .location-card {
    width: 100%;
    max-width: 340px;
  }
  
  .stats-container {
    gap: 20px;
  }
  
  .stat-item {
    width: 120px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

.pulse {
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1);
}

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

/* Enhanced Locations Section Styles */
.locations-section {
  padding: 80px 0;
  background-color: #0a0a1a;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(89, 86, 255, 0.05) 0%, transparent 300px),
    radial-gradient(circle at 80% 70%, rgba(89, 86, 255, 0.05) 0%, transparent 300px);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(89, 86, 255, 0.5);
}

.section-subtitle {
  text-align: center;
  color: #aaaadd;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.location-card {
  background: linear-gradient(145deg, #111133, #1a1a40);
  border: 1px solid #30309a;
  border-radius: 12px;
  padding: 30px;
  width: 340px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(89, 86, 255, 0.15);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(89, 86, 255, 0.3);
}

/* Status badges with new styles */
.location-status {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.future-headquarters {
  background-color: #ffc107;
  color: #111133;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.branch-office {
  background-color: #5956ff;
  color: white;
  box-shadow: 0 0 10px rgba(89, 86, 255, 0.5);
}

.coming-soon-status {
  background-color: #ff5956;
  color: white;
  box-shadow: 0 0 10px rgba(255, 89, 86, 0.5);
}

/* Headquarters special styling */
.headquarters {
  border: 2px solid #ffc107;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.2);
}

.headquarters:hover {
  box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

.location-card h3 {
  color: #5956ff;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.headquarters h3 {
  color: #ffc107;
}

.location-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #5956ff;
}

.headquarters h3:after {
  background-color: #ffc107;
}

.location-card p {
  color: #aaaadd;
  line-height: 1.6;
  margin-bottom: 25px;
}

.location-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.feature-text {
  font-size: 12px;
  color: #aaaadd;
}

.location-progress {
  background-color: rgba(89, 86, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  border-left: 3px solid #5956ff;
}

.headquarters .location-progress {
  border-left: 3px solid #ffc107;
  background-color: rgba(255, 193, 7, 0.05);
}

.location-progress h4 {
  color: #5956ff;
  margin-bottom: 10px;
  font-size: 16px;
}

.headquarters .location-progress h4 {
  color: #ffc107;
}

.progress-bar {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #5956ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: width 1.5s ease;
  position: relative;
}

.headquarters .progress-fill {
  background-color: #ffc107;
}

.progress-fill:hover {
  color: white;
  font-size: 10px;
}

.progress-note {
  font-size: 12px;
  color: #aaaadd;
  font-style: italic;
}

.location-link {
  display: inline-block;
  color: white;
  background-color: #5956ff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(89, 86, 255, 0.3);
}

.headquarters .location-link {
  background-color: #ffc107;
  color: #111133;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.location-link:hover {
  background-color: #6e44ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(89, 86, 255, 0.5);
}

.headquarters .location-link:hover {
  background-color: #ffca2c;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
}

.link-icon {
  margin-right: 5px;
}

.coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #ff5956;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 5;
}

/* Virtual Operations Section */
.global-reach {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(145deg, #111133, #1a1a40);
  border-radius: 12px;
  border: 1px solid #30309a;
  box-shadow: 0 0 25px rgba(89, 86, 255, 0.15);
}

.global-reach h3 {
  color: #5956ff;
  font-size: 28px;
  margin-bottom: 15px;
}

.global-reach p {
  color: #aaaadd;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  width: 150px;
  background-color: rgba(89, 86, 255, 0.1);
  border-radius: 10px;
  border-bottom: 3px solid #5956ff;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #5956ff;
  margin-bottom: 5px;
  background: linear-gradient(to right, #5956ff, #a254ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #aaaadd;
  font-size: 14px;
}

.virtual-office {
  background-color: rgba(89, 86, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.virtual-office h4 {
  color: #5956ff;
  margin-bottom: 10px;
  font-size: 18px;
}

.virtual-hours {
  margin-top: 15px;
  text-align: center;
}

.virtual-hours p {
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-cta {
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #5956ff, #7d7aff);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(89, 86, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(89, 86, 255, 0.5);
}

/* Building Animation Styles with updates */
.building-animation {
  height: 180px;
  margin-bottom: 20px;
}

.building-svg {
  width: 100%;
  height: 100%;
}

.building-base {
  fill: #2a2a5a;
  stroke: #5956ff;
  stroke-width: 1;
}

.headquarters .building-base {
  stroke: #ffc107;
}

.building-door {
  fill: #111133;
  stroke: #5956ff;
  stroke-width: 1;
}

.headquarters .building-door {
  stroke: #ffc107;
}

.building-window-frame {
  fill: transparent;
  stroke: #5956ff;
  stroke-width: 1;
  stroke-dasharray: 3;
}

.headquarters .building-window-frame {
  stroke: #ffc107;
}

/* Construction elements */
.crane-base {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
}

.crane-arm {
  fill: #ff5956;
  stroke: #333;
  stroke-width: 1;
  transform-origin: 165px 84px;
  animation: craneRotate 8s ease-in-out infinite alternate;
}

.crane-cable {
  stroke: #333;
  stroke-width: 2;
  stroke-dasharray: 2;
}

.crane-hook {
  fill: #333;
}

.scaffold {
  stroke: #aaa;
  stroke-width: 2;
  stroke-dasharray: 4;
}

.worker {
  fill: #ff5956;
  animation: workerMove 3s ease-in-out infinite;
}

.headquarters .worker {
  fill: #ffc107;
}

@keyframes craneRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes workerMove {
  0%, 100% {
    cy: 60;
  }
  50% {
    cy: 65;
  }
}

/* Animation for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.location-card, .global-reach {
  animation: fadeInUp 1s ease forwards;
}

.location-card:nth-child(2) {
  animation-delay: 0.2s;
}

.global-reach {
  animation-delay: 0.4s;
}

/* Pulse animation for CTA */
.pulse {
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .locations-container {
    flex-direction: column;
    align-items: center;
  }
  
  .location-card {
    width: 100%;
    max-width: 340px;
  }
  
  .stats-container {
    gap: 20px;
  }
  
  .stat-item {
    width: 120px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/* Enhanced Animated Cursor */
:root {
  --cursor-primary: #5956ff;
  --cursor-accent-1: #ff5956;
  --cursor-accent-2: #56ffd4;
  --cursor-accent-3: #a254ff;
  --cursor-accent-4: #ffc107;
}

html, body {
  cursor: none;
}

/* Hide default cursor on all interactive elements */
a, button, input[type="button"], input[type="submit"], select, .clickable {
  cursor: none;
}

/* Base cursor elements positioning */
.cursor-outer, .cursor-middle, .cursor-dot, .cursor-trailer {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

/* Cursor trailer effect */
.cursor-trailer {
  width: 6px;
  height: 6px;
  background-color: var(--cursor-primary);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(1px);
  transition: all 0.1s ease;
}

/* Main dot */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--cursor-primary);
  border-radius: 50%;
  box-shadow: 
    0 0 10px var(--cursor-primary),
    0 0 20px var(--cursor-primary);
  mix-blend-mode: screen;
  animation: cursorPulse 2s infinite alternate;
}

/* Middle ring */
.cursor-middle {
  width: 24px;
  height: 24px;
  border: 2px solid var(--cursor-primary);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.2s ease;
  animation: rotateBorder 4s linear infinite, colorShift 6s infinite;
}

/* Outer ring */
.cursor-outer {
  width: 40px;
  height: 40px;
  border: 1px dashed var(--cursor-primary);
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
  animation: rotateBorder 8s linear infinite reverse, breathe 3s infinite;
}

/* Animations */
@keyframes cursorPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes breathe {
  0%, 100% {
    width: 40px;
    height: 40px;
    opacity: 0.4;
  }
  50% {
    width: 44px;
    height: 44px;
    opacity: 0.5;
  }
}

@keyframes colorShift {
  0% {
    border-color: var(--cursor-primary);
    box-shadow: 0 0 8px var(--cursor-primary);
  }
  20% {
    border-color: var(--cursor-accent-1);
    box-shadow: 0 0 8px var(--cursor-accent-1);
  }
  40% {
    border-color: var(--cursor-accent-2);
    box-shadow: 0 0 8px var(--cursor-accent-2);
  }
  60% {
    border-color: var(--cursor-accent-3);
    box-shadow: 0 0 8px var(--cursor-accent-3);
  }
  80% {
    border-color: var(--cursor-accent-4);
    box-shadow: 0 0 8px var(--cursor-accent-4);
  }
  100% {
    border-color: var(--cursor-primary);
    box-shadow: 0 0 8px var(--cursor-primary);
  }
}

/* Special effect for interactive elements */
a:hover ~ .cursor-outer,
button:hover ~ .cursor-outer,
input[type="button"]:hover ~ .cursor-outer,
input[type="submit"]:hover ~ .cursor-outer,
select:hover ~ .cursor-outer,
.clickable:hover ~ .cursor-outer {
  transform: translate(-50%, -50%) scale(1.2);
  border-style: solid;
  border-color: var(--cursor-accent-2);
  opacity: 0.8;
  animation-play-state: paused;
}

a:hover ~ .cursor-middle,
button:hover ~ .cursor-middle,
input[type="button"]:hover ~ .cursor-middle,
input[type="submit"]:hover ~ .cursor-middle,
select:hover ~ .cursor-middle,
.clickable:hover ~ .cursor-middle {
  transform: translate(-50%, -50%) scale(1.2);
  border-color: var(--cursor-accent-1);
  border-width: 3px;
  animation-play-state: paused;
}

a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot,
input[type="button"]:hover ~ .cursor-dot,
input[type="submit"]:hover ~ .cursor-dot,
select:hover ~ .cursor-dot,
.clickable:hover ~ .cursor-dot {
  background-color: var(--cursor-accent-1);
  box-shadow: 
    0 0 10px var(--cursor-accent-1),
    0 0 20px var(--cursor-accent-1);
  transform: translate(-50%, -50%) scale(1.4);
}

/* Active state */
a:active ~ .cursor-outer,
button:active ~ .cursor-outer,
input[type="button"]:active ~ .cursor-outer,
input[type="submit"]:active ~ .cursor-outer,
.clickable:active ~ .cursor-outer,
a:active ~ .cursor-middle,
button:active ~ .cursor-middle,
input[type="button"]:active ~ .cursor-middle,
input[type="submit"]:active ~ .cursor-middle,
.clickable:active ~ .cursor-middle,
a:active ~ .cursor-dot,
button:active ~ .cursor-dot,
input[type="button"]:active ~ .cursor-dot,
input[type="submit"]:active ~ .cursor-dot,
.clickable:active ~ .cursor-dot {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Tech-savvy enhancements */
.tech-section:hover ~ .cursor-outer {
  border-style: dashed;
  width: 50px;
  height: 50px;
  animation-duration: 4s;
}

.tech-section:hover ~ .cursor-middle {
  width: 30px;
  height: 30px;
}

.code-block:hover ~ .cursor-outer,
.code-block:hover ~ .cursor-middle,
.code-block:hover ~ .cursor-dot {
  border-color: var(--cursor-accent-2);
  background-color: var(--cursor-accent-2);
  box-shadow: 
    0 0 10px var(--cursor-accent-2),
    0 0 20px var(--cursor-accent-2);
}

/* Target mobile/tablet devices to avoid issues */
@media (max-width: 1024px) {
  .cursor-outer, .cursor-middle, .cursor-dot, .cursor-trailer {
    display: none;
  }
  
  html, body, a, button, input[type="button"], input[type="submit"], select, .clickable {
    cursor: auto;
  }
}