* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
  }
  
  body {
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .navbar {
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px;
    background-color: #f9f9f9;
  }
  
  .navbar a {
    margin-left: 30px;
    font-weight: 500;
  }

  .navbar a.active {
    color: #ff5c5c;
    font-weight: bold;
  }
  
  .hero {
    padding: 60px 40px;
  }
  
  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
    max-width: 500px;
  }
  
  .hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .hero-text h1 span {
    font-weight: bold;
  }
  
  .hero-text p {
    margin-bottom: 20px;
    color: #555;
  }
  
  .btn {
    display: inline-block;
    background: #333333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    min-width: 120px;
  }

  .btn:hover {
    background: #555555;
  }

  /* Contact Section */
  .contact {
    background-color: #fff;
    padding: 80px 40px;
    border-top: 1px solid #e0e0e0;
  }

  .contact-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
  }

  .contact-left {
    flex: 1;
  }

  .contact-left h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
  }

  .contact-left p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .contact-left .social-icons {
    display: flex;
    gap: 20px;
  }

  .contact-left .social-icons a {
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .contact-left .social-icons a:hover {
    opacity: 0.7;
  }

  .contact-left .social-icons img {
    width: 24px;
    height: 24px;
  }

  .contact-right {
    flex: 1;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    background-color: #f8f8f8;
    color: #333;
    transition: border-color 0.3s ease;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #333;
    background-color: #fff;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form .btn {
    align-self: flex-start;
    margin-top: 10px;
  }
  
  .hero-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
  }



  /* Skills Section */
.skills {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .skills h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .skills p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
  }
  
  .skills-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .skill img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  
  .skill p {
    font-size: 1em;
    color: #555;
    margin-top: 10px;
  }
  
  /* MOBILE RESPONSIVENESS */
  @media (max-width: 768px) {
    .skills h2 {
      font-size: 1.8em;
    }
  
    .skills p {
      font-size: 1em;
    }
  
    .skills-icons {
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
  }
  
  
  .posts {
    background-color: #edf7fa;
    padding: 40px;
  }
  
  .posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 20px auto;
  }
  
  .posts-header h2 {
    font-size: 1.5em;
  }
  
  .post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .post-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
  }
  
  .post-card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
  }
  
  .post-card .meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
  }
  
  .blog-page {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  .blog-page h1 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #1a1a1a;
  }
  
  .blog-post {
    margin-bottom: 40px;
  }
  
  .blog-post h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .blog-post .meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
  }
  
  .blog-post p {
    color: #555;
  }
  
  .blog-post hr {
    margin-top: 20px;
    border: none;
    height: 1px;
    background: #ddd;
  }
  
  .footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #666;
    background-color: #fff;
  }
  
  .footer .social-icons {
    margin-bottom: 10px;
  }
  
  .footer .social-icons a {
    margin: 0 8px;
    display: inline-block;
  }


  /* Featured Works Section */
.featured-works {
    background-color: #f7fbff;
    padding: 60px 20px;
  }
  
  .featured-works h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .featured-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .featured-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .featured-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .featured-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .featured-info .meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
  }
  
  .featured-info p {
    font-size: 1em;
    color: #555;
  }

  /* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-end;
    }
  
    .navbar a {
      margin: 10px 0;
    }
  
    .hero-content {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .hero-image img {
      margin: 20px auto;
    }
  
    .posts-header {
      flex-direction: column;
      gap: 10px;
    }
  
    .post-cards {
      grid-template-columns: 1fr;
    }
  
    .blog-page {
      padding: 0 20px;
    }
  
    .footer .social-icons a {
      margin: 0 5px;
    }

    .contact-container {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }

    .contact-left .social-icons {
      justify-content: center;
    }

    .contact-form .btn {
      align-self: center;
    }
  }
  