/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Modern Transparent Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 2em;
  }
  
  .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .nav-links {
    list-style-type: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 1em;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #64b5f6;
  }
  
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh; /* Fill the screen height */
    padding: 2em;
    background: 
      linear-gradient(
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.6)
      ),
      url('hero-background.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2em;
    border-radius: 5px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1em;
  }
  
  /* Generic Section Styling */
  .section {
    padding: 3em 2em;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1em;
    text-align: center;
    position: relative;
  }
  
  .section h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 60px;
    background: #2196f3;
    margin: 0.5em auto;
  }
  
  /* CV Section */
  .cv-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2em;
    background-color: #fff;
    padding: 2em;
    border-radius: 5px;
  }
  
  .cv-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .cv-details {
    max-width: 500px;
  }
  
  /* Project Cards */
  .project-card {
    background-color: #fff;
    padding: 1.5em 2em;
    margin-bottom: 1.5em;
    border-radius: 5px;
    border-left: 5px solid #2196f3;
  }
  
  /* Experience Items */
  .experience-item {
    background-color: #fff;
    padding: 1.5em 2em;
    margin-bottom: 1.5em;
    border-radius: 5px;
    border-left: 5px solid #333;
  }
  
  .experience-item h4 {
    margin-bottom: 0.5em;
  }
  
  /* Skills Section */
  #skills h3 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-weight: 600;
  }
  
  #skills ul {
    margin-bottom: 1.5em;
    list-style: disc inside;
  }
  
  /* Contact Section */
  #contact p {
    margin: 0.5em 0;
    text-align: center;
    font-size: 1.1rem;
  }
  
  /* Social Profiles Section */
  #social .social-container {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
  }
  .social-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .social-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5em;
    transition: transform 0.2s ease;
  }
  .social-link:hover .social-icon {
    transform: scale(1.1);
  }
  
  /* Footer */
  .footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1em 0;
  }
  .footer p {
    margin: 0;
  }
  
