/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }
  
  body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header and Navigation */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .port {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Dancing Script", cursive;
  }
  
  .ham {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .ham .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
  }
  
  .nav-bar {
    display: flex;
    align-items: center;
  }
  
  .nav-bar ul {
    display: flex;
    list-style: none;
  }
  
  .nav-bar ul li {
    margin-left: 2rem;
  }
  
  .nav-bar ul li a {
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-bar ul li a:hover {
    color: #1abc9c;
  }
  
  /* Hamburger Menu for Mobile */
  @media (max-width: 768px) {
    .ham {
      display: flex;
    }
  
    .nav-bar {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #2c3e50;
      flex-direction: column;
      align-items: center;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
  
    .nav-bar.active {
      transform: translateY(0);
    }
  
    .nav-bar ul {
      flex-direction: column;
      width: 100%;
    }
  
    .nav-bar ul li {
      margin: 1rem 0;
      text-align: center;
    }
  }
  
  /* Sections */
  section {
    padding: 6rem 2rem 2rem;
    min-height: 100vh;
  }
  
  .intro {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1abc9c;
    color: #fff;
    text-align: center;
    background-image: url("/photos/cloud.jpg");
    background-image:no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
  }
  
  .intro h1 {
    font-size: 3rem;
    font-family: "Dancing Script", cursive;
  }
  
  .About {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  #pro {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem;
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .profile-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .social {
    display: flex;
    gap: 1rem;
  }
  
  .social img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    border-radius: 50%;
  }
  
  .social img:hover {
    transform: scale(1.2);
  }
  
  /* Skills Section */
  .skills {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .skills h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .skill {
    margin-bottom: 1.5rem;
  }
  
  .skill label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .skill input[type="range"] {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  
  .skill input[type="range"]:hover {
    opacity: 1;
  }
  
  .skill input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #1abc9c;
    border-radius: 50%;
    cursor: pointer;
  }
  
  /* Projects Section */
  #projects {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #projects h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .project {
    margin-bottom: 2rem;
  }
  
  .project h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .project p {
    margin-bottom: 1rem;
  }
  
  .github-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1abc9c;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .github-link:hover {
    background-color: #16a085;
  }
  
  hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 2rem 0;
  }
  
  /* Contact Section */
  #contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .heading h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    resize: vertical;
    height: 150px;
  }
  
  .contact-form button {
    padding: 0.5rem 1rem;
    background-color: #1abc9c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #16a085;
  }
  
  /* Footer */
  .footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: #2c3e50;
    color: #fff;
    margin-top: 2rem;
  }
