:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-bg: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-accent: #00f2fe;
  --hover-glow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Noise Texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
}

/* Gradient Blobs */
.gradient-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 3;
}

.gradient-blob:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: float 20s ease-in-out infinite;
}

.gradient-blob:nth-child(2) {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  bottom: -300px;
  right: -300px;
  animation: float 25s ease-in-out infinite reverse;
}

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

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  top: 0;
  left: 0;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 5;
  transition: transform 0.1s ease-out;
}

@keyframes bgFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, -20px) rotate(1deg);
  }
  67% {
    transform: translate(20px, -10px) rotate(-1deg);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 10, 10, 0.8);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s ease-in-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.ham-menu {
  height: 30px;
  width: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  display: none;
  justify-content: center;
  align-items: center;
}

.ham-menu span {
  height: 3px;
  width: 100%;
  background: var(--primary-gradient);
  border-radius: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  background-color: var(--dark-bg, #111);
  height: 100dvh;
  width: 75%;
  max-width: 320px;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  transition: right 0.4s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.mobile-nav-links li {
  list-style: none;
  width: 100%;
}

.mobile-nav-links li a {
  display: block;
  padding: 3px 10px;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: color 0.2s ease;
  width: 100%;
}

.mobile-nav-links li a:hover {
  color: var(--accent-color, #0af);
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  height: fit-content;
  display: flex;
  align-items: start;
  padding: 120px 40px 40px;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  justify-content: center;
  width: 100%;
}

.hero-content {
  order: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-greeting {
  font-size: 1.2rem;
  color: var(--text-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wave {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

.hero-title {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--text-accent);
  color: var(--text-accent);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.image-container {
  position: relative;
  width: 350px;
  height: 450px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.3) 0%,
      rgba(118, 75, 162, 0.3) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 450"><rect width="350" height="450" fill="%23667eea" opacity="0.1"/><circle cx="175" cy="150" r="50" fill="%23ffffff" opacity="0.3"/><rect x="125" y="250" width="100" height="120" rx="50" fill="%23ffffff" opacity="0.3"/><text x="175" y="400" text-anchor="middle" fill="%23ffffff" font-size="14" opacity="0.6">Eleazar Ogoyemi</text></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 15px 20px;
  animation: float 6s ease-in-out infinite;
  font-size: 0.85rem;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-1 {
  top: -10px;
  right: -50px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20px;
  left: -50px;
  animation-delay: 2s;
}

.card-3 {
  top: 40%;
  right: -70px;
  animation-delay: 4s;
  transform: translateY(-50%);
}

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

.contact-info {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.experience {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.experience-card:hover::before {
  transform: scaleX(1);
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.vision-mission {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.02);
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.vm-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.vm-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vm-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  padding: 40px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 1025px) {
  .hero {
    padding: 120px 40px 40px;
  }

  .hero-container {
    max-width: 1200px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 120px 30px 40px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
  }

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

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .image-container {
    width: 300px;
    height: 400px;
  }

  .floating-card {
    font-size: 0.8rem;
    padding: 12px 16px;
    min-width: 110px;
  }

  .card-1 {
    right: -40px;
    top: 0px;
  }

  .card-2 {
    left: -40px;
    bottom: 10px;
  }

  .card-3 {
    right: -55px;
    top: 42%;
  }

  nav {
    padding: 0 30px;
  }

  .experience,
  .vision-mission {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .ham-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    animation: slideInLeft 1s ease-out;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

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

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
  }

  .vm-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-container {
    width: 280px;
    height: 360px;
    margin: 0 auto;
  }

  .floating-card {
    font-size: 0.8rem;
    padding: 12px 16px;
    min-width: 100px;
  }

  .card-1 {
    right: -35px;
    top: 10px;
  }

  .card-2 {
    left: -35px;
    bottom: 30px;
  }

  .card-3 {
    right: -45px;
    top: 45%;
  }

  nav {
    padding: 0 20px;
  }

  .experience,
  .vision-mission {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-buttons {
    justify-content: center;
  }
}
