body {
  background-color: #121212;
  color: #eee;
  margin: 0;
  font-family: Arial, sans-serif;
}



/* Navbar styles */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  height: 40px;
  margin-right: 10px;
  border-radius: 6px;
}

/* Menu links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #00aaff;
  color: #fff;
}

/* Hamburger icon (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #eee;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 160px;
    border-radius: 10px;
    padding: 10px 0;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
 a{
    text-decoration: none;
    margin-right: 1vw;
    color: white;
  }



}







.hero {
  background-image: url('md-jihan-feature-image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(16px, 4vw, 24px);
  margin-bottom: 30px;
  opacity: 60%;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00aaff;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#more {
    opacity: 60%;
}
.cta-button:hover {
  background-color: #008ecc;
}

.cta-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  
}

.cta-button:hover {
  background-color: #008ecc;
}
