@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --blue: #00e5ff;
  --bg: #050b14;
  --text: #cfd8ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  padding: 0 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro {
  font-size: 16px;
  margin-bottom: 10px;
}

.name {
  color: var(--blue);
}

.title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.title span {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
}

.cursor {
  color: var(--blue);
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.desc {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 26px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.primary {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 20px rgba(0,229,255,0.6);
}

.primary:hover {
  box-shadow: 0 0 35px rgba(0,229,255,0.9);
}

.outline {
  border: 1px solid var(--blue);
  color: var(--blue);
}

.outline:hover {
  background: var(--blue);
  color: #000;
}

.socials {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: 0.3s;
}

.socials a:hover {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 20px rgba(0,229,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 6%;
  }

  .title {
    font-size: 40px;
  }
}



/* =========================================== */
/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  padding: 12px 20px;
  background: #0b1220;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0,229,255,0.1);
}

.logo {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.logo span {
  color: #00e5ff;
}

.nav-menu {
  position: relative;
  display: flex;
  gap: 10px;
  background: #060b16;
  padding: 6px;
  border-radius: 40px;
}

.nav-item {
  padding: 8px 18px;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  z-index: 1;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #fff;
}

/* Active moving background */
.nav-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: 80px;
  background: #00e5ff;
  border-radius: 30px;
  transition: 0.35s ease;
  box-shadow: 0 0 15px rgba(0,229,255,0.8);
}

.nav-item.active {
  color: #000;
  font-weight: 600;
}

/* Button Right */
.talk-btn {
  padding: 10px 22px;
  background: #00e5ff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(0,229,255,0.7);
  transition: 0.3s;
}

.talk-btn:hover {
  box-shadow: 0 0 35px rgba(0,229,255,1);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* =========================================== */

.hero-image {
  position: absolute;
  right: 16%;
  top: 30%;
  transform: translateY(-50%);
  
}

.hero-image img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00e5ff;
  box-shadow:
    0 0 20px rgba(0,229,255,0.6),
    0 0 50px rgba(0,229,255,0.3);
}


@media (max-width: 900px) {
  .hero-image {
    position: static;
    transform: none;
    margin: 40px auto 0;
    text-align: center;
  }
}

/*=========================================== */


