:root {
  --primary: #00f5a0;
  --primary-hover: #00e091;
  --secondary: #00d9e9;
  --accent: #9f00ff;
  --background-light: #ffffff;
  --background-dark: #0a0a0a;
  --text-light: #1f2937;
  --text-dark: #f3f4f6;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --glow-primary: 0 0 20px rgba(0, 245, 160, 0.3);
  --glow-primary-strong: 0 0 30px rgba(0, 245, 160, 0.5);
  --fire-red: #ff4800;
  --fire-orange: #ff8c00;
  --fire-yellow: #ffd600;
}
html.dark {
  --background-light: #0a0a0a;
  --background-dark: #0a0a0a;
  --text-light: #f3f4f6;
  --text-dark: #f3f4f6;
  --gray-100: #111827;
  --gray-200: #374151;
  --gray-300: #4b5563;
  --gray-400: #9ca3af;
  --gray-500: #d1d5db;
  --gray-600: #e5e7eb;
  --gray-800: #f3f4f6;
  --gray-900: #f9fafb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--background-light);
  font-family: "Inter", sans-serif;
  color: var(--text-light);
  margin: 0;
  overflow-x: hidden;
}
.dark body {
  background-color: var(--background-dark);
  color: var(--text-dark);
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 245, 160, 0.05) 0%,
      transparent G.2
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 217, 233, 0.05) 0%,
      transparent G.2
    );
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 20s ease-in-out infinite;
}
.dark body::before {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 245, 160, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 217, 233, 0.08) 0%,
      transparent 50%
    );
}
@keyframes backgroundShift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.05);
  }
}
.container-wrapper {
  position: relative;
  display: flex;
  height: auto;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  overflow-x: hidden;
  z-index: 1;
}
header {
  width:100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  border-bottom: 1px solid rgba(229, 231, 235, 0.2);
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  z-index: 50;
  animation: slideDown 0.6s ease-out;
  transition: all 0.3s ease;
}
.dark header {
  border-bottom-color: rgba(0, 245, 160, 0.1);
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 4px 30px rgba(0, 245, 160, 0.1);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.strike-logo-fire {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--fire-yellow);
  text-decoration: none;
  background: linear-gradient(to top, var(--fire-yellow), var(--fire-orange), var(--fire-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: skewX(-10deg);
  position: relative;
  cursor: pointer;
  animation: fire-flicker 2s ease-in-out infinite;
  transition: all 0.3s ease;
  padding: 0 5px;
}
@keyframes fire-flicker {
  0%, 100% {
    text-shadow: 0 0 5px var(--fire-yellow), 0 0 10px var(--fire-orange), 0 0 20px var(--fire-red);
  }
  50% {
    text-shadow: 0 0 8px var(--fire-yellow), 0 0 15px var(--fire-orange), 0 0 30px var(--fire-red);
  }
}
.strike-logo-fire:hover {
  transform: skewX(-10deg) scale(1.05);
  text-shadow: 0 0 8px #fff,
               0 0 15px var(--fire-yellow),
               0 0 25px var(--fire-orange),
               0 0 45px var(--fire-red);
}
.strike-logo-footer-fire {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: linear-gradient(to top, var(--fire-yellow), var(--fire-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: skewX(-10deg);
  transition: text-shadow 0.3s ease;
}
.strike-logo-footer-fire:hover {
  text-shadow: 0 0 5px var(--fire-yellow), 0 0 15px var(--fire-orange);
}
header nav {
  display: none;
}
@media (min-width: 768px) {
  header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
  }
}
header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.dark header nav a {
  color: var(--gray-400);
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}
header nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 245, 160, 0.5);
}
header nav a:hover::after {
  width: 100%;
}
header .header-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease-out 0.6s backwards;
}
.button {
  display: flex;
  min-width: 84px;
  max-width: 480px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.025em;
  border: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.button:hover::before {
  width: 300px;
  height: 300px;
}
.button .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: black;
  box-shadow: 0 4px 15px rgba(0, 245, 160, 0.3);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 160, 0.4);
}
.button-primary:active {
  transform: translateY(0);
}
.button-secondary {
  background: rgba(0, 245, 160, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 245, 160, 0.3);
}
.button-secondary:hover {
  background: rgba(0, 245, 160, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 245, 160, 0.2);
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  main {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.content-wrapper {
  width: 100%;
  max-width: 72rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .content-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .content-wrapper {
    padding: 0 2rem;
  }
}
.hero-section {
  margin-bottom: 6rem;
}
.hero-section .hero-container {
  margin-top: 50px;
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  box-shadow: 0 20px 60px rgba(0, 245, 160, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-section .hero-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 245, 160, 0.3);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 1.4rem;
}
.particles {
  position: absolute;
  inset: 2px;
  border-radius: 1.4rem;
  overflow: hidden;
  z-index: 1;
}
.particles span {
  position: absolute;
  display: block;
  list-style: none;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
  opacity: 0;
  animation: twinkle 12s linear infinite;
}
@keyframes twinkle {
  0% {
    transform: translateY(10vh) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(0.5);
    opacity: 0;
  }
}
.particles span:nth-child(1) { top: 50%; left: 10%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: -7s; }
.particles span:nth-child(2) { top: 20%; left: 40%; width: 8px; height: 8px; animation-duration: 18s; animation-delay: -3s; }
.particles span:nth-child(3) { top: 70%; left: 90%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: -10s; }
.particles span:nth-child(4) { top: 85%; left: 25%; width: 6px; height: 6px; animation-duration: 20s; animation-delay: -1s; }
.particles span:nth-child(5) { top: 10%; left: 70%; width: 7px; height: 7px; animation-duration: 14s; animation-delay: -12s; }
.particles span:nth-child(6) { top: 90%; left: 50%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: -5s; }
.particles span:nth-child(7) { top: 30%; left: 5%; width: 5px; height: 5px; animation-duration: 22s; animation-delay: -15s; }
.particles span:nth-child(8) { top: 5%; left: 55%; width: 8px; height: 8px; animation-duration: 13s; animation-delay: -2s; }
.particles span:nth-child(9) { top: 60%; left: 20%; width: 6px; height: 6px; animation-duration: 19s; animation-delay: -8s; }
.particles span:nth-child(10) { top: 40%; left: 80%; width: 7px; height: 7px; animation-duration: 17s; animation-delay: -4s; }
.particles span:nth-child(11) { top: 75%; left: 60%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: -11s; }
.particles span:nth-child(12) { top: 95%; left: 5%; width: 4px; height: 4px; animation-duration: 21s; animation-delay: -6s; }
.particles span:nth-child(13) { top: 15%; left: 85%; width: 6px; height: 6px; animation-duration: 15s; animation-delay: -9s; }
.particles span:nth-child(14) { top: 45%; left: 45%; width: 8px; height: 8px; animation-duration: 23s; animation-delay: 0s; }
.particles span:nth-child(15) { top: 65%; left: 75%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: -14s; }
.hero-section .hero-bg { position: absolute; inset: 2px; background-color: var(--background-dark); border-radius: 1.4rem; }
.hero-section .hero-gradient {
  position: absolute;
  inset: 2px;
  background: linear-gradient( to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.5), transparent );
  border-radius: 1.4rem;
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}
@media (min-width: 768px) {
  .hero-section .hero-content {
    padding: 3rem;
  }
}
.hero-section .hero-text-wrapper {
  max-width: 56rem;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-section .hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, white, var(--gray-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@media (min-width: 768px) {
  .hero-section .hero-title {
    font-size: 3.75rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--gray-400);
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}
@media (min-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 1.125rem;
  }
}
.hero-section .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s both;
}
.hero-section .button-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-section .button-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero-section .button-hero:hover::before {
  width: 300px;
  height: 300px;
}
.hero-section .button-hero span {
  position: relative;
  z-index: 1;
}
.hero-section .button-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: black;
  box-shadow: 0 10px 30px rgba(0, 245, 160, 0.4);
}
.hero-section .button-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 245, 160, 0.5);
}
.hero-section .button-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section .button-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.section {
  margin-bottom: 6rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  color: var(--gray-900);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}
.dark .section-title {
  color: white;
  text-shadow: 0 0 20px rgba(0, 245, 160, 0.2);
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--background-light);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.dark .card {
  background: rgba(17, 24, 39, 0.6);
  border-color: rgba(0, 245, 160, 0.1);
  backdrop-filter: blur(10px);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 245, 160, 0.2);
  border-color: var(--primary);
}
.card:hover::before {
  transform: scaleX(1);
}
.dark .card:hover {
  box-shadow: 0 25px 50px rgba(0, 245, 160, 0.3);
  border-color: var(--primary);
}
.card-image {
  width: 100%;
  height: 12rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image {
  transform: scale(1.1);
}
.card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
  transition: color 0.3s ease;
}
.card:hover .card-title {
  color: var(--primary);
}
.dark .card-title {
  color: white;
}
.card-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  flex: 1;
  line-height: 1.6;
}
.dark .card-text {
  color: var(--gray-400);
}
.mentor-section {
  margin-bottom: 6rem;
  background: linear-gradient(
    135deg,
    rgba(0, 245, 160, 0.05),
    rgba(0, 217, 233, 0.05)
  );
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 245, 160, 0.1);
  position: relative;
  overflow: hidden;
}
.mentor-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.1), transparent);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.dark .mentor-section {
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.6),
    rgba(31, 41, 55, 0.4)
  );
  backdrop-filter: blur(10px);
  border-color: rgba(0, 245, 160, 0.2);
}
.mentor-section .section-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.mentor-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mentor-divider {
  width: 10px;
  height: 250px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 2rem;
  position: relative;
  z-index: 1;
}
.mentor-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .mentor-content {
    flex-direction: row;
  }
}
.mentor-avatar-wrapper {
  position: relative;
}
.mentor-avatar {
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  transition: transform 0.4s ease;
}
.dark .mentor-avatar {
  background: linear-gradient(var(--background-dark), var(--background-dark))
      padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
}
.mentor-avatar-wrapper:hover .mentor-avatar {
  transform: scale(1.05);
  filter: drop-shadow(var(--glow-primary-strong));
}
.mentor-initial {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(159, 0, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.mentor-info {
  text-align: center;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .mentor-info {
    text-align: left;
  }
}
.mentor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.dark .mentor-name {
  color: white;
  text-shadow: 0 0 20px rgba(0, 245, 160, 0.3);
}
.mentor-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.mentor-bio {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.dark .mentor-bio {
  color: var(--gray-400);
}
.testimonial-image{
  display: flex;
  justify-items: center;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 300px;
  height: 180px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 1rem auto;
}
.features-section .text-center {
  text-align: center;
  margin-bottom: 3rem;
}
.features-section .section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.dark .features-section .section-subtitle {
  color: var(--gray-400);
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  background: var(--background-light);
  padding: 2rem 1.5rem;
  text-align: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.dark .feature-card {
  border-color: rgba(0, 245, 160, 0.1);
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(10px);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 245, 160, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 245, 160, 0.2);
}
.dark .feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 245, 160, 0.3);
}
.feature-icon-wrapper {
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(0, 245, 160, 0.2),
    rgba(0, 217, 233, 0.2)
  );
  padding: 1.25rem;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.feature-card:hover .feature-icon-wrapper {
  transform: rotateY(360deg);
  box-shadow: var(--glow-primary);
}
.feature-icon {
  width: 2rem;
  height: 2rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
.feature-card:hover .feature-title {
  color: var(--primary);
}
.dark .feature-title {
  color: white;
}
.feature-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.dark .feature-text {
  color: var(--gray-400);
}
.footer {
  width: 100%;
  border-top: 1px solid rgba(229, 231, 235, 0.2);
  padding: 2.5rem 1rem;
  margin-top: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(0, 245, 160, 0.02));
  backdrop-filter: blur(10px);
}
.dark .footer {
  border-top-color: rgba(0, 245, 160, 0.1);
  background: linear-gradient(to bottom, transparent, rgba(17, 24, 39, 0.5));
}
.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.footer-logo-container:hover .footer-logo {
  transform: rotate(15deg) scale(1.1);
  filter: drop-shadow(var(--glow-primary));
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dark .footer-logo-text {
  filter: drop-shadow(0 0 10px rgba(0, 245, 160, 0.3));
}
.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.dark .footer-copyright {
  color: var(--gray-400);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-socials a {
  color: var(--gray-500);
  transition: all 0.3s ease;
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.footer-socials a:hover {
  color: var(--primary);
  background: rgba(0, 245, 160, 0.1);
  transform: translateY(-3px);
}
.dark .footer-socials a:hover {
  box-shadow: var(--glow-primary);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mobile-nav-toggle-checkbox {
    display: none;
}
.mobile-nav-toggle-label {
    display: none;
    position: relative;
    z-index: 9999;
    background: transparent;
    border: 0;
    padding: 0.5em;
    cursor: pointer;
}
.hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.2s ease-in-out;
}
.dark .hamburger-icon {
    background: var(--text-dark);
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.2s ease-in-out;
}
.dark .hamburger-icon::before,
.dark .hamburger-icon::after {
    background: var(--text-dark);
}
.hamburger-icon::before {
    top: -8px;
}
.hamburger-icon::after {
    top: 8px;
}
.mobile-nav-toggle-checkbox:checked ~ .mobile-nav-toggle-label .hamburger-icon {
    background: transparent;
}
.mobile-nav-toggle-checkbox:checked ~ .mobile-nav-toggle-label .hamburger-icon::before {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle-checkbox:checked ~ .mobile-nav-toggle-label .hamburger-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 767px) {
  header {
    padding: 1rem 1.5rem;
  }
  .hidden-mobile {
    display: none;
  }
  header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    transform: translateX(100%);
    transition: transform 350ms ease-out;
    z-index: 1000;
  }
  .mobile-nav-toggle-checkbox:checked ~ nav {
      transform: translateX(0%);
  }
  header nav a {
    font-size: 1.5rem;
  }
  .mobile-nav-toggle-label {
    display: block;
  }
  .hero-section .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .mentor-container {
      flex-direction: column;
      gap: 2rem;
  }
  .mentor-content {
      flex-direction: column;
      gap: 1.5rem;
  }
  .mentor-divider {
      width: 80%;
      height: 4px;
      margin: 0 auto;
  }
  .mentor-info {
      text-align: center;
  }
  .mentor-section {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .content-wrapper > section {
    scroll-margin-top: 100px;
  }
}