.playfair-paragraph-font {
  font-family: "Playfair Display", serif;
  font-weight: medium;
  font-style: normal;
}

.poppins-medium-font {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold-font {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sm-font {
  font-size: 0.9rem;
}
.md-font {
  font-size: 2rem;
}

.container-content {
  /* Main content wrapper for consistent layout across all pages */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.active {
  color: #ea2b7b !important;
}

.section-content {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.section-content p {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 1.5rem 0.75rem;
}

.hero {
  background-color: aliceblue;
}

.hero.section-content {
  text-align: center;
}


h1 {
  font-size: 3rem !important;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.resume{
  display: flex;
  margin: 0 auto;
  margin-bottom:30px;
  padding: 10px;
  justify-content: center;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

.btn {
  max-width: 300px;
  min-width: 140px;
  background: linear-gradient(90deg, #fff0f6 0%, #fbc2eb 100%);
  border: none;
  border-radius: 4px;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 25px rgba(190, 24, 93, 0.25);
  transition: all 150ms ease-in-out;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}
.btn:hover {
  background: linear-gradient(90deg, #fbc2eb 0%, #fff0f6 100%);
  transform: translateY(-4px) scale(0.9);
  transition: all 150ms ease-in-out;
  box-shadow: 0 4px 16px rgba(190, 24, 93, 0.12);
}

.background-color {
  background-color: #fdf2f8;
}

.bg-pink {
  background: linear-gradient(90deg, #fff0f6 0%, #fbc2eb 100%);
  box-shadow: 0 8px 25px rgba(190, 24, 93, 0.25);
  letter-spacing: 0.8px;
  max-width: 50%;
  margin: 0 auto;
}

.bg-grey {
  background-color: #e9ebee;
}

.job-description {
  padding: 20px;
  border-radius: 5px;
  border: 5px solid #fff0f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.profile-pic {
  max-width: 100%;
  width: 70%;
  height: 70%;
  border-radius: 6%;
}
@media (max-width: 768px) {
  .profile-pic {
    margin-bottom: 20px;
    width: 50%;
    height: auto;
  }
}

.footer-content {
  padding: 20px;
}

.footer-links:hover {
  color: #ea2b7b !important;
  text-decoration: none;
  transition: color 100ms ease-in-out;
}


.hover-detail {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted #be185d; 
  color: #bfc2c8;
}

.hover-detail:hover::after {
  content: attr(data-tooltip-content);
  position: fixed;
  top: 50%;
  left: 20%;

  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
  padding: 20px 24px;
  border-radius: 8px;
  white-space: normal;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hover-detail-alt {
  color: #ec91b5;
  position: relative;
  cursor: help;
  border-bottom: 1px dotted #831843;
}

.hover-detail-alt:hover::after {
  content: attr(data-tooltip-content);
  position: fixed;
  top: 50%;
  left: 20%;
  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
  padding: 20px 24px;
  border-radius: 8px;
  white-space: normal;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.line-spacing {
  
  line-height: 1.6;
}

.about-paragraph::first-letter {
  font-size: 2em;
  font-weight: bold;

  line-height: 1;
  padding-right: 4px;
  vertical-align: baseline;
}

.link-color {
  color: #ea2b7b;
  text-decoration: none;
}


.pulse-animation {
  display: block;
  animation: pulse-desktop 10s ease-in-out infinite;
}

@media (max-width: 768px) {
  .pulse-animation {
    font-size: 1.2rem !important;
    transform: scale(0.8);
  }
}

@keyframes pulse-desktop {
  0% {
    transform: scale(0.9) translateY(0.75px);
    color: #ebadc7;
    text-shadow: 0 0 2px rgba(234, 43, 123, 0.3px);
  }
  50% {
    transform: scale(1.3) translateY(-0.5px);
    color: #e16fdf;
    text-shadow: 0 0 5px rgba(244, 114, 182, 0.3px);
  }
  100% {
    transform: scale(0.9) translateY(0.75px);
    color: #ebadc7;
    text-shadow: 0 0 2px rgba(234, 43, 123, 0.3px);
  }
}
