 /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navigation */
  header {
    background: #000;
    padding: 1rem;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #f0c040;
  }
 /* Style the dropdown button */
.dropdown .btn {
  background-color: #f0c040; /* Custom background color */
  color: #111; /* Text color */
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.dropdown .btn:hover, 
.dropdown .btn:focus {
  background-color: #d9a030; /* Darker shade on hover */
  color: #fff;
}

/* Style the dropdown menu */
.dropdown-menu {
  background-color: #222; /* Dark background */
  border-radius: 5px;
  border: 1px solid #444; /* Border for visibility */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style each dropdown item */
.dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 15px;
  transition: background 0.3s ease-in-out;
}

/* Hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
  background-color: #f0c040; /* Highlight color */
  color: #111;
}
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .hero-content {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
    color: #f0c040;
    margin-bottom: 1rem;
  }
  .hero-content p {
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  .hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .image-placeholder {
    
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-style: italic;
    }
  
  /* Section Titles */
  section h1,
  section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #f0c040;
  }
  
  /* About Section */
  .about {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .about-image .image-placeholder {
    
  }
  .about-info {
    flex: 1;
    min-width: 300px;
  }
  
  /* Skills Section */
  .skills {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .skill-bar p {
    margin-bottom: 0.5rem;
  }
  .progress {
    background: #333;
    border-radius: 5px;
    overflow: hidden;
  }
  .progress-fill {
    background: #f0c040;
    padding: 0.5rem;
    text-align: right;
    font-weight: bold;
  }
  
  /* Resume */
  .resume {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .resume-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .resume-container h2 {
    color: #f0c040;
    margin-bottom: 1rem;
  }
  .education, .experience {
    flex: 1;
    min-width: 300px;
  }
  .education ul, .experience ul {
    list-style: disc;
    margin-left: 1.5rem;
  }
  
  /* Projects */
  .projects {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  .project-card {
    background: #222;
    padding: 1rem;
    border-radius: 5px;
  }
  .project-image .image-placeholder {
    
  }
  
  /* Contact */
  .contact {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
  }
  .contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    
    color: #111;
   
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .btn:hover {
    
  }
  
  /* Footer */
  footer {
    background: #000;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  footer p {
    color: #fff;
    font-size: 0.9rem;
  }
  