.navbar {
  background: white;
}

  body::before,
  .navbar::before,
  footer::before,
  section::before,
  .cta-card::before,
  .footer-bottom::before {
    display: none;
    content: none;
  }

.bg-pink {
  background: linear-gradient(180deg, #ffffff 0%, #ffeef1 100%);
}

.bg-pink-light {
  background: linear-gradient(0deg, #ffffff 0%, #ffeef1 100%);
}

.bg-pink-linkedin {
  background-color: #ffe7eb;
  border-radius: 20px;
  padding: 50px;
  align-items: center;
}

.about-split {
  grid-template-columns: 1fr 1.12fr;
  gap: 25px;
}

.about-text-side {
  gap: 40px;
}

/* --- Typography Overrides --- */
.service-title {
  margin-bottom: 15px;
}

.service-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.warning-list li:last-child {
  border-bottom: none;
  padding: 28px 0px 28px;
}

.bg-pink-light .expect-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.bg-pink-light .expect-text-wrap {
  max-width: 550px;
  margin-top: 15px;
}

.linkedin-sec .expect-layout {
  grid-template-columns: 1fr max-content;
  gap: 90px;
}

.linkedin-sec .expect-text-wrap,
.red-service-card .expect-text-wrap {
  max-width: 725px;
  gap: 26px;
}

.about-highlight-box {
  padding-top: 14px;
  gap: 26px;
}

.linkedin-sec h3,
.red-service-card h3 {
  padding-bottom: 8px;
  font-size: 24px;
}

.red-service-card .warning-list li {
  border-color: #ffe7eb;
}

/* --- Service Tags (Pills) --- */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #ffedf0; /* Very light pink */
  border: 1px solid #b20d28;
  padding: 6px 12px;
  border-radius: 25px;
  color: #b20d28;
  font-weight: 400;
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.pill-tag:hover {
  transform: translateY(-4px); /* Pops up */
  background-color: #fff; /* White background on hover */
  box-shadow: 0 5px 15px rgba(178, 13, 40, 0.1);
  cursor: default;
}

.pill-tag img {
  width: 24px;
  height: auto;
}

/* --- RED CARD SECTIONS --- */
.red-service-card {
  background-color: #fb2a4d;
  border-radius: 20px;
  padding: 20px 50px;
  position: relative;
  overflow: hidden;
}

.red-service-card .split-layout {
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}

.red-service-card .about-highlight-box {
  padding-top: 0;
}

.text-white {
  color: white !important;
}

.text-white h2,
.text-white p,
.text-white h5 {
  color: white;
}

.illustration-wrapper {
  /* Background blob effect behind image if needed */
  position: relative;
  display: flex;
  justify-content: center;
}

.card-img {
  max-height: 470px;
  width: auto;
}

.ai-warning .warning-list {
  max-width: 494px;
}

.ai-warning .warning-list li {
  align-items: flex-start;
}


.linkedin-profile img,.service-img-lg,.organizing-file,.card-img {
  transition: transform 0.5s ease;
}

.linkedin-profile img:hover,.service-img-lg:hover,.organizing-file:hover,.card-img:hover{
  transform: scale(1.02);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1024px) {
  .red-service-card {
    position: relative;
  }

  .service-img-lg,
  .service-img-md {
    max-width: 100%;
  }

  .red-service-card {
    padding: 40px 30px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    text-align: center;
  }

  .about-image-side {
    margin: 0 auto;
  }

  .about-text-side {
    gap: 18px;
  }

  .service-tags {
    justify-content: space-between;
  }

  .bg-pink-light .expect-layout {
    padding: 0;
  }

  .bg-pink-light .expect-text-wrap,
  .linkedin-sec .expect-text-wrap {
    max-width: 100%;
  }

  .red-service-card {
    padding: 50px 40px;
  }

  .red-service-card .expect-text-wrap {
    max-width: 100%;
  }

  .organizing-file,
  .linkedin-profile {
    margin: 0 auto;
  }

  .warning-list li {
    padding: 24px 0;
  }

  .warning-list li:last-child,
  .warning-list li:first-child {
    padding: 24px 0;
  }

  .linkedin-sec .expect-layout,
  .red-service-card .split-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  
  .red-service-card .about-highlight-box {
    text-align: center;
  }

  .red-service-card h3 {
    text-align: center;
  }

  .linkedin-sec h2 {
    text-align: left;
    margin: 0;
  }

  .bg-pink-linkedin {
    border-radius: 0px;
    padding: 24px;
  }

  .mock-interview .expect-text-wrap h2 {
    text-align: left;
    margin: 0;
  }

  .mock-interview .about-highlight-box {
    text-align: left;
  }

  .mock-interview h3 {
    text-align: left;
  }

  .ai-warning {
    padding: 0px 0px 30px;
  }

  .ai-warning .section-layout {
    gap: 18px;
  }

  .ai-warning .image-side {
    order: 1;
  }

  .ai-warning .warning-list {
    max-width: 100%;
  }

  .ai-main-img {
    position: relative;
  }
}

@media (max-width: 767px) {
  .service-title {
    font-size: 32px;
  }

  p {
    font-size: 18px;
    font-weight: 400px;
  }

  .service-subtitle {
    font-weight: 500;
  }

  .about-split {
    padding-inline: 25px;
  }

  .about-text-side {
    gap: 26px;
  }

  .expect-layout div:nth-child(2) {
    order: -1;
  }

  .warning-list li {
    padding: 16px 0px;
  }

  .warning-list li:first-child {
    padding: 0px 0px 16px;
  }
  .warning-list li:last-child {
    padding: 16px 0px;
  }
  .red-service-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  /* Stack the content inside the red card */
  .red-service-card .split-layout {
    flex-direction: column;
    gap: 40px;
  }

  .illustration-wrapper {
    margin-bottom: 20px;
  }

  .service-tags {
    gap: 18px;
  }

  .pill-tag {
    padding: 6px 32px;
    width: 100%; /* Full width tags on mobile looks cleaner */
  }

  .bg-pink-linkedin {
    border-radius: 10px;
    padding: 36px 16px;
  }

  .linkedin-sec .expect-layout {
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .linkedin-sec .expect-text-wrap div:nth-child(2) {
    order: 0;
    padding-top: 0px;
  }

  .linkedin-sec h2 {
    text-align: center;
  }

  .linkedin-sec .warning-list li {
    text-align: left;
  }

  .red-service-card {
    padding: 40px 24px;
  }

  .red-service-card .expect-text-wrap {
    padding: 0;
  }

  .red-service-card .about-highlight-box {
    gap: 7px;
  }

  .mock-interview .expect-text-wrap h2 {
    text-align: center;
    margin: 0 auto;
  }

  .mock-interview .about-highlight-box {
    text-align: center;
  }

  .mock-interview h3 {
    text-align: center;
  }

  .ai-warning .image-side {
    order: 0;
  }

  .ai-warning .section-layout {
    padding: 0 32px 20px;
    gap: 26px;
  }

  .ai-warning .split-layout {
    gap: 26px;
  }
}
