/* ===== General Styles ===== */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #e0f7fa, #fff3e0);
  margin: 0;
  padding: 0;
  color: #333;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  animation: fadeIn 1s ease-in;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}
.container:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== Headings ===== */
h1 {
  color: #ff6f61;
  font-size: 3em;
  margin: 10px 0;
}

h2 {
  color: #2563eb;
  margin: 5px 0 30px 0;
}

/* ===== Welcome & Thanks ===== */
.welcome {
  font-size: 22px;
  color: #ff7043;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in;
}

.thanks {
  font-size: 20px;
  color: #ff7043;
  margin-top: 30px;
  animation: fadeIn 1s ease-in;
}

/* ===== Sections ===== */
.section {
  background: linear-gradient(to right, #ffffff, #e0f7fa);
  border-radius: 15px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.section:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

/* ===== Skills ===== */
.skills-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.skill {
  background: linear-gradient(135deg, #ff6f61, #fbc02d);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 8px 15px rgba(0,0,0,0.2);
}

/* ===== Projects ===== */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.project {
  background: linear-gradient(135deg, #fbc02d, #ff6f61);
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ===== Fade-in Animation ===== */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ===== Responsive ===== */
@media (max-width: 600px){
  h1 { font-size: 2.2em; }
  .skills-list { flex-direction: column; align-items: center; }
  .skill { font-size: 15px; padding: 10px 18px; }
}