/* Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1e3c72);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  scroll-behavior: smooth;
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* Background Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header Section */
.main-header {
  text-align: center;
  padding: 6rem 2rem 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.intro-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.intro-text h2.typing {
  font-size: 1.5rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: #69c0ff;
}

.intro-text p {
  font-size: 1rem;
  color: #ccc;
}

/* Profile Image */
.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.profile-img:hover {
  transform: scale(1.05);
}

/* Social Links */
.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.social-links a {
  display: inline-block;
  overflow: hidden;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 1;
}

.social-links a img {
  display: block;
  height: 75px;
  width: auto;
  object-fit: contain;
}

/* Typography */
h2 {
  color: #69c0ff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: #ccc;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #eee;
}

.highlight {
  color: #69c0ff;
}

/* Layout */
.container {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card Styling */
.card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 780px) {
  .social-links a img {
    height: 50px;
  }
}
