
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #ffffff;
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #333;
    }

    nav a {
      text-decoration: none;
      color: #333;
      margin: 0 15px;
      font-weight: 500;
      position: relative;
    }
    

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #1013ec;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 50px;
      flex-wrap: wrap;
    }

    .content {
      max-width: 600px;
    }

    .content h1 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .content h1 span {
      color: orange;
    }

    .writer {
      font-size: 16px;
      color: #777;
      margin-top: -8px;
      margin-bottom: 10px;
    }

    .content h2 {
      font-size: 26px;
      color: #222;
    }

    .typing {
      color: maroon;
      border-right: 2px solid;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 25px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .socials {
      margin-top: 20px;
    }

    .socials a {
      margin-right: 10px;
      display: inline-block;
    }

    .socials img {
      width: 30px;
      height: 30px;
    }

    .avatar img {
      max-width: 430px;
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .chat-icon {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 60px;
      height: 60px;
      cursor: pointer;
    }

    .chat-icon img {
      width: 100%;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .notification {
      position: absolute;
      top: 0;
      right: 0;
      background: red;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 50%;
    }
    .logo {
        font-family: 'Segoe UI', sans-serif;
        font-weight: 700;
        font-size: 40px;
        color: #270cf4;
        cursor: default;
      }
      
      .blue-letter {
        color: #090a0b; /* Blue color */
        font-weight: 900;
      }
     
      /* About Me Section */
.about-me-section {
    padding: 60px 20px;
    background-color: #f4f8ff; /* subtle light blue background to keep consistent with blue accents */
    min-height: 80vh;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .about-me-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-photo {
    flex: 1 1 320px;
  }
  
  .about-photo img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    object-fit: cover;
  }
  
  .about-text {
    flex: 2 1 500px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
  }
  
  .about-text h2 {
    color: #007bff;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 850px) {
    .about-me-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-photo,
    .about-text {
      flex: 1 1 100%;
    }
  
    .about-photo img {
      max-width: 250px;
      margin: auto;
    }
  
    .about-text h2 {
      font-size: 28px;
    }
  }
  
  /* Skill Section*/
  .skills-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.skills-list {
  max-width: 800px;
  margin: auto;
}

.skill {
  margin-bottom: 30px;
  text-align: left;
}

.skill h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #444;
}

.progress-container {
  background-color: #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  height: 25px;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #007BFF, #00c6ff);
  color: white;
  line-height: 25px;
  text-align: right;
  padding-right: 10px;
  border-radius: 30px;
  font-weight: bold;
  transition: width 0.5s ease-in-out;
}

.writers-mind-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .media-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  
  .media-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .media-item h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: #333;
  }
  
  .media-item p {
    margin-bottom: 10px;
    color: #555;
  }
  
  .read-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .read-link:hover {
    text-decoration: underline;
  }
  .media-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .media-item {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .media-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
  }
  
  .media-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .read-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .read-link:hover {
    text-decoration: underline;
  }
  .media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    margin-top: 30px;
  }
  
  .media-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .media-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .media-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .read-link {
    color: #007acc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .read-link:hover {
    text-decoration: underline;
  }
  
  /* Responsive for small screens */
  @media (max-width: 768px) {
    .media-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
 /*contact me*/ 

 .contact-section {
   padding: 60px 20px;
   background: #f9f9f9;
 }

 .contact-container {
   max-width: 1000px;
   margin: auto;
   background: white;
   padding: 40px;
   border-radius: 12px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }

 .section-title {
   text-align: center;
   font-size: 32px;
   margin-bottom: 10px;
 }

 .contact-intro {
   text-align: center;
   margin-bottom: 40px;
   color: #555;
 }

 .contact-content {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
 }

 .contact-form {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 15px;
 }

 .contact-form input,
 .contact-form textarea {
   padding: 12px;
   border: 1px solid #ccc;
   border-radius: 10px;
   font-size: 16px;
   width: 100%;
 }

 .contact-form button {
   background: #0077cc;
   color: #fff;
   border: none;
   padding: 12px;
   font-size: 16px;
   border-radius: 10px;
   cursor: pointer;
   transition: background 0.3s ease;
 }

 .contact-form button:hover {
   background: #005fa3;
 }

 .contact-info {
   flex: 1;
 }

 .contact-info h3 {
   margin-bottom: 15px;
   font-size: 22px;
 }

 .contact-info p {
   margin-bottom: 10px;
   color: #333;
 }

 .social-icons {
   margin-top: 15px;
 }

 .social-icons a {
   margin-right: 10px;
   display: inline-block;
 }

 .social-icons img {
   width: 30px;
   transition: transform 0.2s;
 }

 .social-icons img:hover {
   transform: scale(1.1);
 }
