/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding-top: 50px;
  min-height: 100px;
  text-align: center;
  border-bottom: 5px solid #ff6f61;
}

header h1 {
  margin: 0;
  font-size: 36px;
  animation: fadeIn 2s ease-in;
}

header p {
  font-size: 18px;
  animation: fadeIn 3s ease-in;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #ff6f61;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
section {
  padding: 40px 0;
  background: #fff;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #2575fc;
  border-bottom: 2px solid #ff6f61;
  padding-bottom: 10px;
  font-size: 28px;
}

/* Grid Layouts */
.education-grid, .skills-grid, .experience-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.education-item, .skill-item, .experience-item, .project-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.education-item img, .skill-item img, .experience-item img, .project-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Contact Links */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-links a {
  color: #2575fc;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: #ff6f61;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
}