/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
  }
  
  /* Container Styling */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #112240;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  
  /* Header Section Styling */
  .header-section {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .header-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #64ffda;
  }
  
  .header-section .tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .header-section .contact-info {
    font-size: 1.2rem;
  }
  
  /* Section Styling */
  .section {
    margin-bottom: 40px;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #64ffda;
    border-bottom: 3px solid #64ffda;
    padding-bottom: 10px;
  }
  
  .section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .experience, .education, .project {
    margin-bottom: 20px;
  }
  
  .experience h3, .education h3, .project h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #64ffda;
  }
  
  .experience ul, .skills ul {
    list-style-type: disc;
    margin-left: 30px;
  }
  
  .experience li, .skills li, .project p {
    margin-bottom: 10px;
  }
  
  /* Call to Action Styling */
  .footer {
    text-align: center;
    margin-top: 40px;
  }
  
  .footer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .footer .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: #64ffda;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .footer .btn:hover {
    background: #4db6ac; /* Slightly darker shade on hover */
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 2rem;
    }
  
    .header-section .tagline {
      font-size: 1.2rem;
    }
  
    .header-section .contact-info {
      font-size: 1rem;
    }
  
    .section h2 {
      font-size: 1.6rem;
    }
  
    .section p {
      font-size: 1rem;
    }
  
    .footer p {
      font-size: 1rem;
    }
  
    .footer .btn {
      font-size: 1rem;
      padding: 8px 16px;
    }
  }
  