/* ===== VIBRANT TEAL & PINK PORTFOLIO ===== */
/* (Only modified animations to match education section) */

/* ===== ABOUT SECTION ===== */
.about-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  border-left: 4px solid var(--teal);
  transition: transform 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--pink);
}

/* ===== PROJECTS SECTION ===== */
.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--pink);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--teal);
}

/* ===== CONTACT SECTION ===== */
.contact-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--pink);
}

/* ===== EASTER EGG SECTION ===== */
.easter-egg-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  border-left: 4px solid var(--teal);
  transition: transform 0.2s ease;
}

.easter-egg-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--pink);
}

/* EVERYTHING ELSE BELOW REMAINS EXACTLY THE SAME AS YOUR ORIGINAL CSS */
/* ===== ROOT VARIABLES ===== */
:root {
  --teal: #00d4ff;
  --pink: #ff00b8;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f0f9ff;
  --card-bg: rgba(2, 6, 23, 0.7);
  --text-light: #e2e8f0;
  --text-gray: #94a3b8;
  --accent: #f472b6;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--pink));
  border-radius: 4px;
}

@media (min-width: 768px) {
  .about-card {
    flex-direction: row;
    align-items: center;
  }
}

.profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  align-self: center;
}

.about-text h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.edu-card {
  display: flex;
  gap: 1.5rem;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--teal);
  transition: transform 0.2s ease;
}

.edu-card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--pink);
}

.edu-icon {
  font-size: 1.5rem;
  color: var(--teal);
  background: rgba(0, 212, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edu-content h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.edu-details p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.edu-details i {
  color: var(--teal);
  width: 18px;
  text-align: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(to right, var(--teal), var(--pink));
  color: var(--darker);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 184, 0.3);
}

.interest-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.interest-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  text-align: center;
  border-top: 3px solid var(--teal);
}

.interest-card:hover {
  transform: translateY(-5px);
  border-top: 3px solid var(--pink);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.interest-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--teal);
  transition: color 0.2s ease;
}

.interest-card:hover i {
  color: var(--pink);
}

.interest-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.interest-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-card p {
  margin-bottom: 0.8rem;
  color: var(--text-gray);
}

.contact-card a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--pink);
  text-decoration: underline;
}

.reveal-btn {
  background: linear-gradient(to right, var(--teal), var(--pink));
  color: var(--darker);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.reveal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 184, 0.3);
}

.easter-img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 3px solid var(--teal);
}

.easter-caption {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 25%;
  border: none;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }
  
  .about-card {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-pic {
    margin-bottom: 1.5rem;
  }
  
  .interest-container {
    grid-template-columns: 1fr;
  }
}