*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;

}
body{
    background: #f9f6f7;
    color: #2f2f2f;
    font-family: 'Courier New',monospace;

}
#header{
    width: 100%;
    height:100vh;
    background-size: cover;
    background-position: center;
}

.container{
    padding: 10px 10%;
}
nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;

}

nav ul li a{
    color: #2f2f2f;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Courier New';
    position: relative;
    display: inline-block;

}
nav ul li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #e49ab0;
    position: absolute;
    left:0;
    bottom: -6px;
    transition: width 0.3s ease;

}

nav ul li a:hover::after{
    width:100%
}

.hero-text {
    padding-top: 300px;
    text-align: left;
}

.typewriter-text {
    display: inline-block;
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #2f2f2f;
    font-family: 'Courier New', monospace;
    animation: typing 3s steps(30, end), blink 0.7s step-end infinite;
}
.typewriter-wrapper{
    display: inline-flex;
    align-items: left;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color:#2f2f2f
}
.typewriter-container{
    max-width: 500px;
    margin: 0;
    text-align:left;
}
.static-heading{
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2f2f2f;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.cursor {
    display: inline-block;
    width: 2px;
    margin-left: 2px; /* adds spacing from text */
    background-color: #2f2f2f;
    animation: blink 0.7s steps(1) infinite;
  }
  
  #typed-text{
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: #2f2f2f;
  }
  .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
    gap: 40px;
  }
  
  .hero-left {
    flex: 1;
    text-align: left;
  }
  
  .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-img {
    max-width: 80%;
    height: auto;
  }

  .social-links{
    margin-top: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .social-links a {
    color: #2f2f2f;
    font-size: 30px; 
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #e49ab0; 
  }
  .scroll-indicator {
    margin-top: 40px;
    font-size: 32px;
    color: #b58db6;
    animation: bounce 1.5s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  
  .about-section {
    background-color: #f9f6f7; 
    padding: 100px 10%;
    color: #2f2f2f;
  }
  
  .section-title {
    font-size: 2rem;
    font-family: 'Courier New';
    font-weight: bolder;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    font-weight: bold ;
    line-height: 1.7;
    max-width: 700px;
  }
  .about-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .about-photo img {
    max-width: 300px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0,05);
  }
  
  @media (max-width: 768px) {
    .about-flex {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      text-align: left;
    }
  
    .about-photo {
      margin-top: 30px;
    }
    .project-flex{
        flex-direction: column;
        text-align: center;
    }
    .project-info{
        margin-top: 30px;
    }
  }
  html {
    scroll-behavior: smooth;
  }
  .portfolio-section {
    padding: 100px 10%;
    background-color: #f9f6f7;
    color: #2f2f2f;
  }
  
  .project-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .project-image {
    flex: 1;
  }
  
  .project-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
  
  .project-info {
    flex: 1;
    text-align: left;
  }
  
  .project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
  }
  
  .project-info p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Courier New';
    font-weight: 700;
  }
  
  .tech-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .tech-icons img {
    width: 32px;
    height: 32px;
  }
  
  .project-link {
    color: #2f2f2f;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
  }
  .resume-download {
    margin-top: 40px;
    text-align: center;
  }
  
  .resume-btn {
    background-color: #cdb4db;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: 'Courier New', monospace;
  }
  
  .resume-btn:hover {
    background-color: #e49ab0;
  }

  .mini-projects {
    margin-top: 30px;
    padding-left: 20px;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    font-weight: 400;
  }
  
  .mini-projects li {
    margin-bottom: 16px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
  }
  
  .mini-projects li a {
    color: #c8102e;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Courier New', monospace;
  }
  
  .mini-projects li a:hover {
    text-decoration: underline;
    color: #e49ab0;
  }
  
  .status-tag {
    font-size: 0.8rem;
    color: #fff;
    background-color: #ffb3c6;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
  }
  .contact-section {
    padding: 100px 10%;
    background-color: #f9f6f7;
    color: #2f2f2f;
    text-align: center;
  }
  
  .contact-text {
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
  }
  
  .contact-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    
  }
  
  .contact-links li a {
    color: #c8102e;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Courier New', monospace;
  }
  
  .contact-links li a:hover {
    text-decoration: underline;
    color: #e49ab0;
  }
  .chatbot-container {
    max-width: 420px;
    margin: 80px auto;
    background: #fff5f7; /* pastel pink */
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', monospace;
  }
  
  #chat-window {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #2f2f2f;
  }
  
  .user-msg {
    color: #2f2f2f;
    font-weight: bold;
    font-family: 'Courier New', monospace;
  }
  
  .bot-msg {
    color: #2f2f2f;
    font-style: italic;
    font-family: 'Courier New', monospace;
    font-weight: 700;
  }
  
  .chat-input {
    display: flex;
    gap: 8px;
  }
  
  #user-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e49ab0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
  }
  
  button {
    padding: 10px 16px;
    background: #e49ab0;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #ffb3c6;
  }
  .timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #c8102e;
}

.event {
  position: relative;
  margin: 24px auto;
  background: #fff5f7;
  border-radius: 12px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.event-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.event-lik .event:hover {
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.15);
  transform: translateY(-4px) scale(1.03);
  transition: 0.2s;
}

/*.dot {
  width: 18px;
  height: 18px;
  background: #2f2f2f;
  border-radius: 50%;
  margin-bottom: 12px;
}*/

.label {
  font-weight: bold;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #2f2f2f;
  margin-bottom: 10px;
}

.description {
  font-size: 0.98rem;
  margin-top: 5px;
  color: #2f2f2f;
  display: block;
  text-align: center;
  font-family: 'Courier New', monospace;
}


    
  
  
  
  
