:root {
  --primary: #6366f1;
  --secondary: #4f46e5;
  --background: #0f172a;
  --text-primary: #f1f5f9;
  --nav-bg: rgba(15, 23, 42, 0.9);
  --card-bg: rgba(30, 41, 59, 0.7);
  --neon-glow: 0 0 10px rgba(99, 102, 241, 0.5),
    0 0 20px rgba(99, 102, 241, 0.3), 0 0 30px rgba(99, 102, 241, 0.1);
}

/* Base responsive styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  margin: 0;
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* Updated Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  text-shadow: var(--neon-glow);
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: var(--neon-glow);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 5rem;
    right: -100%;
    flex-direction: column;
    background: var(--nav-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.1rem;
  }
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
}

/* Hero section styles */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  max-width: 600px;
}

.hero-image img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.primary-btn,
.secondary-btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
}

.secondary-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.primary-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.secondary-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Responsive styles for different sections */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 1rem;
  }

  .about-container {
    flex-direction: column;
    padding: 1rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Add missing section styles */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.service-item {
  background: var(--nav-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
  border-color: var(--primary);
}

.service-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-item ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.contact-form {
  background: var(--nav-bg);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--text-primary);
  border-radius: 4px;
  background: var(--background);
  color: var(--text-primary);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary);
}

.contact-container {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: var(--secondary);
}

.icon-wrapper img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-card h3 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 2rem 1rem;
  }

  .contact-cards {
    gap: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* Updated Footer Styles */
.footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-group h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.link-group a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.link-group a:hover {
  color: var(--primary);
  opacity: 1;
  text-shadow: var(--neon-glow);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

/* About Section Styles */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.team-illustration {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.2));
  transition: all 0.3s ease;
}

.about-image:hover .team-illustration {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.3));
}

.about-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(79, 70, 229, 0.1) 100%
  );
  opacity: 0.1;
  border-radius: inherit;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Responsive Fixes */
@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Feature Card SVG styles */
.feature-icon {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
  margin-bottom: 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--neon-glow);
}

/* Remove theme toggle related styles */
.theme-toggle,
.moon-icon,
.sun-icon {
   display: none;
}
