/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
  }
  
  /* Header */
  header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 40px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    z-index: 200;
  }
  
  header h1 {
    color: #3613c2dc;
    font-weight: 200;
    cursor: pointer;
    transition: 0.5s;
  }
  
  header h1:hover {
    transform: scale(0.9);
  }
  
  nav ul {
    display: flex;
    gap: 30px;
  }
  
  nav ul li {
    list-style: none;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
    text-transform: lowercase;
    font-weight: 200;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    color: #1919dba0;
  }
  
  .menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  .nav-links.active {
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Sections */
  section {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
  }
  
  section:nth-child(odd) {
    background-color: #e9e9e9dc;
  }
  
  /* Home */
  .home {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .home-content {
    padding: 50px;
  }
  
  .home-content h2 {
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 14px;
  }
  
  .home-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  
  .link i {
    font-size: 24px;
    cursor: pointer;
  }
  
  /* About */
  .about-content h1 {
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    padding: 50px 0;
  }
  
  .about1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 40px;
  }
  
  .about-container p {
    font-size: 20px;
    flex: 1;
  }
  
  .image img {
    width: 300px;
    height: 300px;
  }
  
  /* Skills */
  .skill h1 {
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    padding: 50px 0;
  }
  
  .skillss {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .skills-content {
    padding: 20px;
    border: 1px solid #222;
    border-radius: 5px;
    text-align: center;
  }
  
  .skills-content img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .skills-content p {
    font-size: 13px;
  }
  
  .btn {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Contact */
  .con {
    padding: 100px 20px;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .contact-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }
  
  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin: 10px 0 5px;
    color: #444;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form button {
    margin-top: 15px;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  .contact-map {
    flex: 1;
    min-height: 400px;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Footer */
  footer {
    width: 100%;
    padding: 40px;
    background-color: #f3f3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  footer p {
    font-size: 14px;
  }
  
  .links {
    display: flex;
    gap: 20px;
  }
  
  .links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }
  
  .links a:hover {
    color: #007bff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      gap: 20px;
      padding: 20px 0;
      background-color: white;
    }
  
    .about1 {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-wrapper {
      flex-direction: column;
    }
  
    .skillss {
      flex-direction: column;
    }
  
    footer {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  
  /* Span Styling */
  span {
    color: #3613c2dc;
    text-transform: uppercase;
  }
  