* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: fixed;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

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

.nav-links a {
  text-decoration: none;
  color: #cbd5f5;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #38bdf8;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
}

/* Typing */
.typing {
  font-size: 28px;
  margin-top: 10px;
}

#typed-text {
  color: #38bdf8;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  color: #38bdf8;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Paragraph */
.hero-content p {
  margin-top: 20px;
  color: #cbd5f5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* Glow Button */
.primary {
  background: linear-gradient(135deg, #33794d, #3b774c);
  color: white;
  box-shadow: 0 0 20px rgba(78, 192, 74, 0.6);
}

.primary:hover {
  transform: scale(1.1);
}

/* Green */
.secondary {
  background: #258749;
  color: white;
}

.secondary:hover {
  transform: scale(1.1);
}

/* Outline */
.outline {
  border: 1px solid #228557;
  color: #cbd5f5;
}

.outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Fade Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.delay {
  animation-delay: 0.5s;
}

.delay2 {
  animation-delay: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sections */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #38bdf8;
  display: block;
  margin: 10px auto;
}

.section-text {
  max-width: 700px;
  margin: auto;
  color: #cbd5f5;
}

/* Experience Timeline */
.timeline {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exp-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
}

.exp-content {
  text-align: left;
}

.exp-content h3 {
  margin-bottom: 10px;
}

.exp-date {
  background: #3b82f6;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* Contact */
.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  background: #1e293b;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

.footer-name {
  margin-top: 20px;
  color: #94a3b8;
}

/* Scroll Animation */
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
/* Scroll Indicator */
.scroll-indicator {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2s ease;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #cbd5f5;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #38bdf8;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 25px;
  }
}

.scroll-indicator p {
  margin-top: 10px;
  font-size: 14px;
  color: #94a3b8;
}

/* Fade */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, #020617, #020617, #0a0f2c, #0f172a);
  color: #e2e8f0;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.9);
}

.btn.primary:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 
    0 15px 35px rgba(15, 23, 42, 1),
    0 0 20px rgba(37, 99, 235, 0.3);
}

/* Secondary Button */
.btn.secondary {
  background: linear-gradient(135deg, #020617, #020617, #0a0f2c, #0f172a);
  color: #e2e8f0;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.9);
}

.btn.secondary:hover {
 background: linear-gradient(135deg, #020617, #020617, #0a0f2c, #0f172a);
  color: #e2e8f0;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.9);
}

/* Click animation */
.btn:active {
  transform: scale(0.95);
}
.btn span.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(15);
    opacity: 0;
  }
}