/* Base & Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: #0f1015;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Variables */
:root {
  --navbar-bg: rgba(16, 19, 32, 0.85);
  --gradient-start: #00f2fe;
  --gradient-end: #4facfe;
  --accent-color: #4facfe;
  --accent-dark: #2980b9;
  --glow-color: rgba(0, 242, 254, 0.3);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(79, 172, 254, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
}

/* Existing Navbar and Hero Styles */
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 15, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem; /* Adjusted for full name */
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
}

.logo-text:hover {
  opacity: 0.9;
}

.nav-list {
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.join-now-btn {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.join-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--glow-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
  }

  .toggle-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s ease;
    border-radius: 2px;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 15, 20, 0.98);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem;
    transition: right 0.3s ease;
  }

  .navbar-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .join-now-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .logo-text {
    font-size: 1rem; /* Smaller on mobile */
  }
}

/* New Services Section Styles */
.services {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 19, 32, 0.98),
    rgba(26, 32, 44, 0.98)
  );
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 12px var(--glow-color));
}

.service-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(13, 15, 20, 0.97),
    rgba(21, 23, 31, 0.97)
  );
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 242, 254, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.shape-circle:nth-child(1) {
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 242, 254, 0.1) 0%,
    rgba(79, 172, 254, 0.05) 100%
  );
}

.shape-circle:nth-child(2) {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(79, 172, 254, 0.1) 0%,
    rgba(0, 242, 254, 0.05) 100%
  );
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-end),
    var(--gradient-start)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent-color);
  position: relative;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-secondary:hover::before {
  opacity: 0.1;
}

/* Enhanced Button Hover Effects */
.btn-primary,
.solution-btn.btn-primary {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before,
.solution-btn.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-end),
    var(--gradient-start)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before,
.solution-btn.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover,
.solution-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4),
    0 0 0 1px rgba(0, 242, 254, 0.3);
}

.btn-secondary,
.solution-btn.btn-secondary {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.btn-secondary::before,
.solution-btn.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover,
.solution-btn.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--accent-color);
}

.btn-secondary:hover::before,
.solution-btn.btn-secondary:hover::before {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(13, 15, 20, 0.97),
    rgba(21, 23, 31, 0.97)
  );
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 242, 254, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.shape-circle:nth-child(1) {
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 242, 254, 0.1) 0%,
    rgba(79, 172, 254, 0.05) 100%
  );
}

.shape-circle:nth-child(2) {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(79, 172, 254, 0.1) 0%,
    rgba(0, 242, 254, 0.05) 100%
  );
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-end),
    var(--gradient-start)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent-color);
  position: relative;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-secondary:hover::before {
  opacity: 0.1;
}

/* Enhanced Button Hover Effects */
.btn-primary,
.solution-btn.btn-primary {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before,
.solution-btn.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gradient-end),
    var(--gradient-start)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before,
.solution-btn.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover,
.solution-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4),
    0 0 0 1px rgba(0, 242, 254, 0.3);
}

.btn-secondary,
.solution-btn.btn-secondary {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.btn-secondary::before,
.solution-btn.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover,
.solution-btn.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--accent-color);
}

.btn-secondary:hover::before,
.solution-btn.btn-secondary:hover::before {
  opacity: 1;
}

/* Solutions Section */
.solutions {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 19, 32, 0.98),
    rgba(26, 32, 44, 0.98)
  );
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.solution-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  filter: drop-shadow(0 0 12px var(--glow-color));
}

.solution-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.solution-features li {
  color: var(--text-secondary);
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.solution-features li::before {
  content: "→";
  color: var(--accent-color);
  font-weight: bold;
}

.solution-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.solution-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
}

.solution-btn.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px var(--glow-color);
}

.solution-btn.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-color);
}

.solution-btn:hover {
  transform: translateY(-2px);
}

.solution-btn.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.solution-btn.btn-secondary:hover {
  background: rgba(79, 172, 254, 0.1);
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-cta {
    flex-direction: column;
  }

  .solution-btn {
    width: 100%;
  }
}

/* Updated About Section Styles */
.about-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.about-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-item {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px var(--glow-color));
}

.about-visual {
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.tech-icon {
  width: 80px;
  height: 80px;
  color: var(--accent-color);
  filter: drop-shadow(0 0 12px var(--glow-color));
  animation: float 6s ease-in-out infinite;
}

.tech-icon:nth-child(2) {
  animation-delay: -2s;
}

.tech-icon:nth-child(3) {
  animation-delay: -4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About Us Section */
.about {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 19, 32, 0.98),
    rgba(26, 32, 44, 0.98)
  );
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.about-content {
  color: var(--text-secondary);
}

.about-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact Section */
.contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 19, 32, 0.98),
    rgba(26, 32, 44, 0.98)
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

.contact-detail {
  flex: 1;
}

.contact-label {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px var(--glow-color);
  outline: none;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Footer Styles */
.footer {
  position: relative;
  background: rgba(13, 15, 20, 0.98);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  font-size: 1.75rem; /* Reduced from 2rem */
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
}

.footer-links h4 {
  font-family: "Orbitron", sans-serif;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
