/* ===== Global Styles ===== */
body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  background-color: #0d0d0d;
  color: #fff;
}

a {
  text-decoration: none;
  color: #00ffff;
}

ul {
  list-style: none;
  padding: 0;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00ffff;
}

/* ===== Hero Section ===== */
.hero-section {
  background: url('assets/img/background.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 600px;
}

.neon {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #00ffff;
  color: #000;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #00cccc;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}

.nav-links li {
  display: inline;
  margin-left: 15px;
}

.logo {
  font-size: 1.5rem;
}

/* ===== About Section ===== */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.about-left {
  flex: 1;
  max-width: 300px;
}

.about-right {
  flex: 2;
  min-width: 250px;
}

.profile-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.personal-info li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ===== Skills & Interests ===== */
.skills-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.skill-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  background-color: #111;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
  transition: transform 0.3s;
}

.skill-item img:hover {
  transform: scale(1.1);
}

/* ===== Projects ===== */
.project-card {
  max-width: 400px;
  margin: auto;
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== Footer ===== */
.footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* ===== Hidden Sections Initially ===== */
.hidden-section {
  display: none;
}
