html, body {
  scroll-behavior: smooth;
  margin: 0;
  background-color: black;
  font-family: Arial, sans-serif;
}

/* Navbar Container */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Navbar Content */
#navbar nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

/* Navbar Title */
#navbar h4 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-right: auto;
}

/* Navbar Links */
#navbar a {
  margin-left: auto;
}

/* Social Links Container */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Social Media Icons */
#navbar a img {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: rgb(16, 13, 13);
  padding: 5px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effects on Icons */
#navbar a img:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(28, 25, 25, 0.5);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: url("media/Aadi.jpeg") center/cover no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0;
}

.subtext {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

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

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease-in-out;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* Project Expo Section */
.project-expo {
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.project-card {
  background: #1e1e1e;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.project-card img {
  width: auto;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
}

.project-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.project-card p {
  font-size: 14px;
  font-weight: 300;
  margin: 5px 0;
}

.project-card .tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-top: 10px;
  display: inline-block;
}

.project-card .tag:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Skills Section */
.skills {
  padding: 50px 20px;
  background: #0d0d0d;
  color: white;
  text-align: center;
}

.skills h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
}

.skill-category h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.skill-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin: 15px 0px;
}

.skill-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.skill-icon img {
  width: 60px;
  height: 60px;
}

.skill-icon span {
  font-size: 14px;
  font-weight: bold;
  color: white;
}