    * { margin: 0; padding: 0; box-sizing: border-box; }
    html{ scroll-behavior: smooth;}
    body {
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      background: #faf5f0;
      color: #222;
    }
    a { text-decoration: none; color: inherit; }

    header {
      background: #ff6f61;
      color: white;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    header img.logo {
      position: absolute;
      left: 20px;
      top: 20px;
      width: 80px;
      height: 80px;
      object-fit: contain;
    }
    header h1 { font-size: 3rem; }
    header p { font-size: 1.2rem; margin-top: 10px; }

    section#about {
      background-color: #fff5e6;
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    section#about img.me {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
    }

    section.skills, section.contact {
      background-color: #ffeeed;
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }
    section h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
    section p { max-width: 800px; margin: auto; text-align: center; }

    #skills-list, #social-links {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 20px;
    }
    .skill-item, .contact-me {
      background: #ffd6c4;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .bx-whatsapp{
      color: #0be580;
    }

    .bx-facebook{
      color: #0b0ee6;
    }

    .bx-fiverr{
      color: #44e684;
    }

    .bx-twitter-x{
      color: #040404;
    }

    .bx-instagram-alt{
      color: #ba14d0;
    }

    .bx-telegram{
      color: #0581f4;
    }
 
    .project-carousel {
      background: #fff0e6;
      padding: 60px 20px;
    }
    .carousel-container {
      max-width: 1000px;
      margin: auto;
      background: white;
      border-radius: 10px;
      display: flex;
      position: relative;
      overflow: hidden;
      min-height: 400px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
    }

    .square {
      width: 300px;
      height: 300px;
      border-radius: 10px; 
      background: white;
      border: 6px solid #ff6f61;
      position: relative;
      overflow: hidden;
      clip-path: none; 
      display: flex;
      align-items: center;
      justify-content: center;
      transition: width 0.5s ease;
      flex-shrink: 0;
    }

    @media (min-width: 1024px) {
      .square {
        width: 350px;
        height: 350px;
      }
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .project-image {
      position: absolute;
      width: 100%;  
      height: 100%;
      top: 0;
      left: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: #fff7f2;
      border: none;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: rotate(0deg);
    }

    .project-image.active {
      display: flex;
    }

    .project-info {
      flex: 1;
      padding: 30px;
      width: 60%;
      opacity: 0;
      animation: fadeInText 0.6s forwards;
      min-width: 280px;
    }

    @keyframes fadeInText {
      to { opacity: 1; }
    }

    .carousel-buttons {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      width: 100%;
      justify-content: center;
    }

    .carousel-buttons button {
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      background-color: #ff6f61;
      border: none;
      color: white;
      border-radius: 4px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .carousel-buttons button:hover {
      transform: scale(1.1);
      background-color: #e6554f;
    }

    .cta-button {
      display: block;
      margin: 30px auto 0;
      padding: 15px 30px;
      font-size: 18px;
      color: white;
      background-color: #ff6f61;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
      max-width: 200px;
      text-align: center;
    }
    .cta-button:hover {
      background-color: #e6554f;
      transform: scale(1.05);
    }

    .contact form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 600px;
      margin: 30px auto 0;
    }

    .contact input, .contact textarea {
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .contact button {
      background-color: #ff6f61;
      color: white;
      border: none;
      padding: 12px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
    }

    .contact button:hover {
      background-color: #e6554f;
    }

    footer {
      background: #333;
      color: #ccc;
      padding: 20px;
      text-align: center;
    }

    footer a {
      color: #ccc;
      margin: 0 10px;
    }
    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 1000px) {
      section#about {
        flex-direction: column;
        text-align: center;
      }
      section#about img.me {
        margin-bottom: 20px;
      }
      .carousel-container {
        min-height: 0;
        flex-direction: column;
        align-items: center;
      }
      .square {
        width: 100%;
        max-width: 400px;
        aspect-ratio: auto;
        height: 320px; 
        margin-bottom: 20px;
        align-self: center;
      }

      .project-info {
        width: 100%;
        padding: 0 10px;
        min-width: auto;
        text-align: center;
      }
      .carousel-buttons {
        margin-top: 10px;
      }
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }
      header p {
        font-size: 1rem;
      }
      header img.logo {
        width: 60px;
        height: 60px;
        top: 15px;
        left: 15px;
      }
      section#about img.me {
        width: 120px;
        height: 120px;
      }
      .square {
        width: 100%;
        max-width: 400px;
        aspect-ratio: auto;
        height: 320px; 
        margin-bottom: 20px;
        align-self: center;
      }
      .carousel-buttons button {
        font-size: 16px;
        padding: 8px 12px;
      }
      .cta-button {
        width: 90%;
        max-width: none;
        padding: 14px 0;
        font-size: 16px;
      }
    }
