* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #e0f2ff, #f8fbff);
    color: #30495f;
    line-height: 1.6;
  }
  
  a {
    color: #779bb4;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
  }
  
  .hero {
    text-align: center;
    padding: 2rem 1rem 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    opacity: 0.95;
  }
  
  section {
    margin-bottom: 3rem;
  }
  
  section h2 {
    font-size: 2rem;
    color: #779bb4;
    margin-bottom: 1rem;
  }
  
.project-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  margin-bottom: 0.5rem;
}

.project-scroll::-webkit-scrollbar {
  height: 8px;
}
.project-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.project-card {
  flex: 0 0 450px; 
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(28, 92, 134, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  scroll-snap-align: start;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(28, 92, 134, 0.15);
}


  .project-scroll {
  scroll-behavior: smooth;
  }

  .project-scroll {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }

  .scroll-hint {
    display: flex;
    justify-content: flex-end;
    padding-right: 0.75rem;
    margin-top: -0.5rem;
    opacity: 0.9;
  }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.projects-header h2 {
  font-size: 2rem;
  color: #779bb4;
  margin: 0;
}

.arrow-icon-img {
  width: 38px;
  height: 30px;
  margin-right: 0.5rem;
}

.arrow-icon-img {
  animation: arrowBounce 1.2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}


  .project-card h3 {
    margin-bottom: 0.5rem;
  }
  
  .contact p {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .project-card p {
  margin-bottom: 0.5rem;
  }

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 60%;
  min-width: 250px;
  max-width: 650px;
}

.about-photo {
  flex: 0 0 120px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.projects {
  margin-bottom: 1.5rem;
}

.top-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: transparent;
}

.tab {
  color: #30495f;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.tab.active {
  font-weight: 600;
  color: #30495f;
}

.tab:hover {
  text-decoration: underline;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.project-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(28, 92, 134, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(28, 92, 134, 0.15);
}

form {
  max-width: 600px;
  margin-top: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-top: 0.25rem;
}

label {
  font-weight: 500;
  color: #30495f;
}

button[type="submit"] {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #779bb4;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button[type="submit"]:hover {
  background-color: #5a87a3;
}

.project-date {
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #5a87a3;
  opacity: 0.6;
}

.language {
  font-weight: 550;
}