.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1c1c1c;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__logo a {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav__links li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links li a:hover {
  color: var(--highlight);
}

.nav__menu__btn {
  display: none;
  color: white;
  font-size: 1.5rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  display: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0.5rem 0;
}
.dropdown-menu a {
  color: white;
  font-size: 0.95rem;
}

/* Hero */
.hero-header {
  background: linear-gradient(to bottom, #1c1c1c, #111);
  padding: 3rem 1rem;
  text-align: center;
}
.hero-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: white;
}
.hero-text .highlight {
  color: var(--highlight);
}
.hero-text p {
  margin: 1rem 0;
  color: #ccc;
}
.btn {
  background: var(--highlight);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  color: black;
  cursor: pointer;

  display: block;         
  margin: 0 auto;         
  width: fit-content;     
}

.hero-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px var(--highlight);
}

/* Responsive */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__menu__btn {
    display: block;
  }
}
.intro-section {
    text-align: center;
}

.hero-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Text Section */
.hero-text {
  flex: 1 1 500px;
  color: #f1f1f1;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: #ffd700; /* Yellow highlight */
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
}

.hero-img {
  flex: 0 0 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}