/* common*/
@import url("common.css");

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}


/* First banner specific styles */
.slide:first-child .hero-content {
  top: 35%;
  transform: translateY(-50%);
}

.slide:first-child.active .hero-content h1,
.slide:first-child.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 400px;
  max-height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  background: rgba(0,0,0,0.55);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0 5rem;
  box-sizing: border-box;
  top: 35%;
  transform: translateY(-50%);
}
.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.1;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease, opacity 1s ease;
}

.hero-content p {
  font-size: 1.875rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.2s;
}
.slide.active .hero-content h1,
.slide.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}
.hero-prev:hover, .hero-next:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 11;
}
.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.hero-dots .dot.active {
  background: #1a5da8;
}

.header.scrolled,
.header.scrolled .logo,
.header.scrolled .logo-desc,
.header.scrolled .nav a {
  color: #000;
}

/* Why GKMC */
.why {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 200px 0;
}

.why h2 {
  font-weight: bold;
  font-size: 3.75rem;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 2.125rem;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 120px;
}

.why-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 110px auto 0;
}

.why-card {
  width: 384px;
  min-width: 384px;
  max-width: 384px;
  height: 379px;
  min-height: 379px;
  max-height: 379px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0);
}

.why-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A5DA8;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(26, 93, 168, 0.15);
  border-color: #1A5DA8;
}

.why-card:hover:before {
  opacity: 1;
}

.why-card-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  margin-bottom: 1.5rem;
}

.why-card:hover .why-card-icon {
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.why-card p {
  color: #666;
  font-size: 1.25rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}

.why-card-icon img {
  transition: transform 0.4s ease;
  filter: brightness(1);
}

.why-card:hover .why-card-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

/* Why cards animation */
.why-card[data-aos] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.why-card[data-aos].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Why GKMC section animation */
.why h2[data-aos],
.why-desc[data-aos],
.why-card[data-aos] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.why h2[data-aos].aos-animate,
.why-desc[data-aos].aos-animate,
.why-card[data-aos].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Our Service */
.service {
  background: #f4f5f7;
  padding: 200px 0;
}

.service h2 {
  text-align: center;
  font-weight: bold;
  font-size: 3.75rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 2.125rem;
  letter-spacing: -1px;
  color: #000;
  text-align: center;
  margin-bottom: 120px;
}

.service-main {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 110px auto 0;
  align-items: flex-start;
  padding: 0px;
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 160px;
  align-items: flex-end;
  padding-top:50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
  width: 100%;
  color: #000;
}

.step-label, .step-title {
  display: block;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.step-label {
  font-size: 1.125rem;
  color: #666;
}

.step-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  letter-spacing: -0.5px;
}

.step:not(.active) .step-title {
  color: #bbb;
}

.step.active .step-title {
  color: #000000;
  opacity: 1;
}

.step:hover .step-label,
.step.active .step-label {
  color: #000;
  opacity: 1;
}

.service-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  gap: 40px;
  padding: 68px;
  min-width: 0;
  flex: 1 1 0;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
  width: 996px;
  min-width: 996px;
  max-width: 996px;
  height: 502px;
  min-height: 502px;
  max-height: 502px;
}

.service-detail.fading {
  opacity: 0.15;
  transform: translateY(32px) scale(0.98) skewY(1deg);
  filter: brightness(1.07) contrast(1.03);
  pointer-events: none;
  transition:
    opacity 0.1s cubic-bezier(0.4,0,0.2,1),
    transform 0.1s cubic-bezier(0.4,0,0.2,1),
    filter 0.1s cubic-bezier(0.4,0,0.2,1);
}

.service-detail-text h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 24px;
}

.service-detail-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-text ul li {
  font-size: 1.375rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style: none;
}

.service-detail-text ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1A5DA8;
  font-weight: bold;
}

.service-detail-img {
  width: 380px;
  height: 380px;
  min-width: 380px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: none;
}

/* Service section animation */
.service h2[data-aos],
.service-desc[data-aos],
.service-steps[data-aos],
.service-detail[data-aos] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.service h2[data-aos].aos-animate,
.service-desc[data-aos].aos-animate,
.service-steps[data-aos].aos-animate,
.service-detail[data-aos].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Partner Hospitals */
.hospitals {
  width: 100%;
  text-align: center;
  padding: 200px 0;
  background: #fff;
}
.hospitals h2 {
  font-weight: bold;
  font-size: 3.75rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease, opacity 1s ease;
}
.hospitals h2.animate {
  opacity: 1;
  transform: translateY(0);
}
.hospitals-desc {
  font-size: 2.125rem;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.2s;
}
.hospitals-desc.animate {
  opacity: 1;
  transform: translateY(0);
}
.hospitals-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hospitals-logos img {
  object-fit: contain;
  background: #fff;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hospitals-logos-marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 40px 0;
}
.hospitals-logos-track {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.hospitals-logos-track img {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hospitals-logos-multiline {
  overflow: hidden;
  max-width: 1500px;
  margin: 110px auto 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hospitals-logos-multiline::before,
.hospitals-logos-multiline::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.hospitals-logos-multiline::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0));
}
.hospitals-logos-multiline::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0));
}
.logos-row {
  display: flex;
  align-items: center;
  width: max-content;
}
.logos-row img {
  width: 250px;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: 20px;
  margin: 0 24px;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.logos-row img:hover {
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.logos-row-1 {
  animation: marquee-left 16s linear infinite;
}
.logos-row-2 {
  animation: marquee-right 22s linear infinite;
}
.logos-row-3 {
  animation: marquee-left 18s linear infinite;
}

.service-steps .step:hover:not(.active) {
  box-shadow: none !important;
  background: none !important;
}

.service-steps .step {
  color: #000;
}
.service-steps .step .step-title {
  transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-steps .step:hover:not(.active) .step-title {
  color: #000;
  font-weight: 700;
}

.service-steps .step-connector {
  width: 1px;
  height: 32px;
  background: #000;
  margin: 0 auto;
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.header.scrolled .hamburger span {
  background-color: #000;
}

.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
  background-color: #000;
}

/* Patient Stories */
.stories {
  background: #f4f5f7;
  padding: 200px 0;
  text-align: center;
  margin-bottom: 0;
}
.stories h2 {
  font-weight: bold;
  font-size: 3.75rem;
  margin-bottom: 0.5rem;
}
.stories-desc {
  font-size: 2.125rem;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 120px;
}
.stories-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.story-video {
  margin: 35px 0 60px 0;
}
.story-video iframe {
  width: 1200px;
  max-width: 100%;
  height: 675px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.story-caption {
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  text-align: left;
}
.stories-more {
  display: block;
  width: 180px;
  margin: 0 auto;
  background: #f5f5f7;
  color: #666;
  border: 2px solid #ddd;
  border-radius: 2rem;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.stories-more:hover {
  background: #1a5da8;
  border: 2px solid #1a5da8;
  color: #fff;
}

/* CTA Section */
.cta {
  position: relative;
  height: 606px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('../images/contact.jpg') center/cover no-repeat;
  z-index: 1;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}
.cta-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}
.cta-content h2 {
  font-weight: bold;
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.cta-content p {
  font-size: 2rem;
  margin-bottom: 60px;
}
.cta-btn {
  width: 180px;
  background:none;
  color: #fff;
  border: #fff solid 2px;
  border-radius: 2rem;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-btn:hover {background:#1a5da8; border: #1a5da8 solid 1px;}

/* Responsive */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
  font-size: 1rem;
  }
  .why {
   padding: 100px 0;
  }
  .why-cards {
    max-width: 100%;
  }
  .why-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .why-card h3 {
    font-size: 10px;
  }
  .why-card p {
    font-size: 1rem;
  }
  .service {
    padding: 100px 2%;
  }
  .stories {
    padding-left: 2%;
	  padding-right: 2%;
	  box-sizing: border-box;
  }
  .service-main {
    flex-direction: column;
    gap: 60px;
    margin: 60px auto 0;
    padding: 0 8px;
  }
  .service-steps {flex-direction: row; gap: 24px; align-items: flex-start;}
  .step {align-items: center;}
  .service-detail {
    width: 100%;
	  padding: 40px 30px 0 30px;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 460px;
    max-height: none;
  }
  .why-desc {
    font-size: 1.375rem;
    margin-bottom: 60px; 
  }
  .service-desc {
   font-size: 1.375rem;
   margin-bottom: 60px;
  }
  .hospitals {
    margin: 0 0 50px 0;
    padding: 100px 1rem;
  }
  .hospitals-desc {
    font-size: 1.375rem;
    margin-bottom: 60px;
  }
  .hospitals-logos-multiline {
    margin: 60px auto 0;
  }
  .stories {
    padding: 100px 0;
  }
  .stories-desc {
    font-size: 1.375rem;
    margin-bottom: 60px;
  }
  .cta-content p {
    font-size: 1.5rem;
}
}

@media (max-width: 900px) {  
  .hero {
    height: 100%;
  }
  .hero-slider {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
  }
  .hero-prev,
  .hero-next {
    display: none !important;
  }
  .slide:nth-child(1) .hero-bg {
    background-image: url('../images/banner_m1.jpg') !important;
  }
  .slide:nth-child(2) .hero-bg {
    background-image: url('../images/banner_m2.jpg') !important;
  }
  .slide:nth-child(3) .hero-bg {
    background-image: url('../images/banner_m3.jpg') !important;
  }
  .slide:nth-child(4) .hero-bg {
    background-image: url('../images/banner_m4.jpg') !important;
  }

  .hero-dots {	
	bottom: 10%;
  }
  .hero-dots .dot {
    width: 15px;
    height: 15px;
  }
  .why {
    max-width: 100%;
	  padding: 100px 20px;
  }
  .why-cards {
	  flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 60px auto 0;
  }
  .why-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-bottom: 10px;
  }
  .story-video {
    width: 100%;
    max-width: 100%;
    margin: 35px 0 24px 0;
  }
  .story-video iframe {
    width: 100%;
    height: 56vw;
    min-height: 200px;
    border-radius: 10px;
  }
  .hospitals-logos img {
    width: 150px;
    height: 50px;
    padding: 5px;
    margin-bottom:0;
  }
  .hospitals-logos-marquee {
    padding: 20px 0;
  }
  .hospitals-logos-multiline {
    padding: 20px 0;
    max-width: 100%;
    gap: 1rem;
  }
  .logos-row img { width: 150px; padding: 20px 5px; }
  .logos-row-1 { animation-duration: 8s; }
  .logos-row-2 { animation-duration: 11s; }
  .logos-row-3 { animation-duration: 9s; }

}

@media (max-width: 600px) {  

  .why, .service, .hospitals, .stories, .cta, .footer {
    width: 100%;
  }
  .why-cards, .service-main, .hospitals-logos, .stories-main {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    align-items: stretch;
  }
  .why-card, .service-detail, .story-video, .cta-content, .footer-inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .why-card {
    box-sizing: border-box;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
  .why-card h3 {
    font-size: 20px;
  }
  .service-detail {
    height: auto;
    min-height: 680px;
    max-height: none;
    margin:0 10px 10px 10px;
    width: calc(100% - 20px);
    box-sizing: border-box;
	  padding: 30px 15px 0 15px;
    flex-direction: column;
    gap: 20px;
  }
  .service-detail-img {
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    margin: 0 auto;
  }
  .service-detail-img img {
    height: auto;
  }
  .service-main {
    padding: 5px 0;
  }
  .service-desc, .hospitals-desc, .stories-desc {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .step {
    position: relative;
    display: inline-block;
    margin-right: 10px;
  }
  
  .step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }  
  .step:last-child::after {
    display: none;
  }
  .service-steps {
    width: 90%;
    margin-left: 10%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .step-label {
    font-size: 1rem;
    color: #666;
  }
  .step:hover .step-label,
  .step.active .step-label {
    color: #000;
  }
  .service-detail-text h3 {
    font-size: 20px;
  }
  .service-detail-text ul li {
    font-size: 0.875rem;
  }
  .hospitals-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 0;
    max-width: 100%;
    margin: 0;
  }
  .hospitals h2, .why h2, .service h2, .stories h2, .cta-content h2 {
    font-size: 2.25rem;
  }
  .why-desc, .service-desc, .hospitals-desc, .stories-desc, .cta-content p {
    font-size: 1.125rem;
  }
  .story-video iframe {
    width: 94%;
    max-width: 100%;
    height: auto;
    margin: 0 3%;    
  }
  .stories-more {
    width: 150px;
    padding: 12px 0;
    font-size: 1rem;
}
  .cta {
    margin-top: 0;
    margin-bottom: 0;
    height: 500px;
	  padding:0 10px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .cta-content h2 { width:280px; text-align:center; margin:0 auto; }
  .cta-btn {
    width: 150px;
    padding: 12px 0;
    font-size: 1rem;
  }
  
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}

/* Animation Styles */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-timing-function: ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Section title animations */
section h2[data-aos] {
  transform: translateY(50px);
}

section p[data-aos] {
  transform: translateY(30px);
}

/* Why GKMC section */
.why-cards > div[data-aos] {
  transform: translateY(30px);
}

/* Service section */
.service-main > div[data-aos] {
  transform: translateY(30px);
}

/* Partner Hospitals section */
.hospitals h2[data-aos],
.hospitals-desc[data-aos] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.hospitals h2[data-aos].aos-animate,
.hospitals-desc[data-aos].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.service-detail-text,
.service-detail-img {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.service-detail-text.fading,
.service-detail-img.fading {
  opacity: 0;
  transform: translateY(30px) scale(1);
  pointer-events: none;
}

.service-detail-text.show,
.service-detail-img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}