body {
  background: #fff6fa;
  margin: 0;
  
}

.hero-section1 {
  width: 100%;
  background: linear-gradient(90deg,#fff 65%,#ffe6f6 100%);
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 8px 32px #e7009815;
  margin-bottom: 0.5rem;
}

.hero-title1 {
  font-size: 2.7em;
  font-weight: 900;
  background: linear-gradient(270deg, #E70098, #FF6EC7, #E70098);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 10s ease infinite, pulseScale 3s ease-in-out infinite;
  margin-bottom: 0.7rem;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pink-info-section {
  width: 100%;
  background: linear-gradient(90deg, #fff6fa 60%, #ffe0f0 100%);
  border-radius: 24px;
  box-shadow: 0 6px 24px #e7009840;
  padding: 2.5rem 1.5rem;
}

.pink-info-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.pink-info-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pink-info-content h2 {
  color: #E70098;
  font-size: 2.4rem;
font-weight: 900;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 4px #ffd2eb66;
   padding-left: 5rem; 
}

.pink-info-details {
  background: rgba(255,255,255,0.84);
  padding: 1.15rem 1.4rem;
  border-radius: 15px;
  font-size: 1.17rem;
  color: #6b2e4e;
  font-weight: 500;
  line-height: 1.7;
  box-shadow: 0 1px 8px #E7009837;
}

.pink-info-image {
  flex: 1 1 350px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pink-info-image img {
  max-width: 400px;
  width: 100%;
 
  box-shadow: 0 6px 20px #E7009870;
  border: 4px solid #FFD2EB;
  background: #fff6fa;
  height: 280px;
}
.pink-info-image {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;   /* centers image horizontally */
  text-align: center;
}

/* base image size (desktop) */
.pink-info-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  box-shadow: 0 6px 20px #E7009870;
  border: 4px solid #FFD2EB;
  background: #fff6fa;
}

/* tablet + mobile */
@media (max-width: 900px) {
  .pink-info-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .pink-info-image {
    flex: 0 0 auto;
    justify-content: center;   /* ensure center on small screens */
  }
  .pink-info-image img {
    max-width: 90%;
  }
}


@media (max-width: 900px) {
  .pink-info-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .pink-info-content,
  .pink-info-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .pink-info-section {
    padding: 1.5rem 0.5rem;
  }
  .pink-info-image img {
    max-width: 70%;
    
    
  }
}


.hero-desc1 {
  font-size: 1.18em;
  color: #232323;
  font-weight: 600;
  max-width: 650px;
  margin: 0 auto;
}

.service-section {
  max-width: 1150px;
  margin: 2.2rem auto 2.6rem auto;
  padding: 0 1rem;
}

.service-heading {
  font-size: 2.2rem;
  color: #E70098;
  font-weight: 800;
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  display: block;
  letter-spacing: 0.5px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  margin-top: 1.2rem;
  justify-items: center;
}

.service-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 28px #E7009833;
  padding: 2rem 1.1rem 2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.24s, transform 0.19s;
  width: 96%;
  
}

.service-item:hover {
  box-shadow: 0 16px 36px #E7009873;
  transform: translateY(-6px) scale(1.04);
}

.service-img {
  width: 500px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 18px #E7009844;
  background: #ffe6f6;
  padding: 20px;
}

.service-title {
  color: #E70098;
  font-size: 1.29em;
  font-weight: bold;
  margin-bottom: .6rem;
}

.service-desc {
  color: #232323;
  font-size: 1.05em;
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .service-list { grid-template-columns: 1fr; }
  .service-section { padding:0 0.2rem; }
  .service-img { width: 400px; height: 200px; }
}
