.success-stories,
.pain-points,
.benefits,
.countdown,
.curriculum,
.mentor {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
  position: relative;
  overflow: hidden;
}

.success-stories,
.pain-points,
.benefits,
.curriculum,
.mentor,
.testimonials,
.get-certified {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}

.pain-points {
  padding-top: 40px;
}

.benefits {
  padding-top: 40px;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.success-stories h2,
.pain-points h2,
.benefits h2,
.countdown h2,
.curriculum h2,
.mentor h2 {
  color: #1a1a4b;
  font-size: 42px;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -0.02em;
}

.highlight {
  color: #4caf50;
}

.carousel-container {
  overflow: hidden;
  margin: 40px auto;
  width: calc(100% - 40px);
  max-width: 100vw;
  position: relative;
  box-sizing: border-box;
  cursor: grab;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid #eef1f6;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  box-sizing: border-box;
  transition: transform 0.1s ease;
}

.student-card {
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 250px;
  margin: 0;
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.student-card:hover {
  transform: translateY(-10px);
}

.student-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: #444;
  background-size: cover;
  background-position: center;
  border: 3px solid #4caf50;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
}

.student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.struggles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 40px auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  justify-items: center;
}

.struggle-item {
  background: white;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #1a1a4b;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.struggle-item:hover {
  transform: translateY(-5px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  justify-content: center;
}

.benefits-grid .benefit-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  color: #1a1a4b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  min-height: 120px;
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
}

.benefits-grid .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefits-carousel-container {
  display: none;
}

.benefits-carousel {
  display: none;
}

.student-card .company-info,
.student-card .stipend-info {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

#timer {
  font-size: 64px;
  margin: 40px 0;
  font-weight: bold;
  color: #1a1a4b;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.days-grid .day-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.day-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: left;
}

.day-card h3 {
  color: #4caf50;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.day-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.day-card li {
  margin: 0 0 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}

.day-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

@media (max-width: 992px) {
  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .days-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .days-grid .day-card {
    height: auto;
    min-height: 200px;
  }
}

.mentor-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: calc(100% - 40px);
  max-width: calc(100% - 40px);
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .mentor-profile {
    flex-direction: row;
    padding: 60px;
  }

  .mentor-image {
    flex: 0 0 300px;
  }

  .mentor-info {
    flex: 1;
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .mentor-profile {
    padding: 30px;
  }

  .mentor-image {
    width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .mentor-profile {
    max-width: calc(100% - 20px);
  }
}

.mentor-image {
  flex: 0 0 200px;
}

.mentor-placeholder {
  width: 100%;
  height: auto;
}

.mentor-info {
  flex: 1;
}

.mentor-profile .mentor-image .mentor-placeholder {
  fill: #4caf50;
}

.mentor-profile h2 {
  font-size: 36px;
  color: #1a1a4b;
  margin-bottom: 10px;
}

.mentor-profile h3 {
  font-size: 24px;
  color: #4caf50;
}

.mentor-profile .mentor-title {
  font-size: 18px;
  color: #4a4a8f;
  margin-bottom: 20px;
}

.mentor-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.mentor-achievements .achievement {
  background: rgba(76, 175, 80, 0.1);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  color: #1a1a4b;
  transition: transform 0.3s ease;
}

.mentor-achievements .achievement:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.linkedin-button {
  background-color: #0077b5;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.linkedin-button:hover {
  background-color: #005582;
}

.linkedin-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.benefits-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.benefits-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}

.benefits-animation lottie-player {
  max-width: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .benefits-animation lottie-player {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .benefits-animation lottie-player {
    max-width: 250px;
  }
}

@media (max-width: 480px) {

  .success-stories h2,
  .pain-points h2,
  .benefits h2,
  .countdown h2,
  .curriculum h2,
  .mentor h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  #timer {
    font-size: 48px;
  }

  .day-card h3 {
    font-size: 20px;
  }

  .day-card li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .struggles {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 12px;
  }

  .struggle-item {
    max-width: 100%;
    padding: 15px;
    font-size: 14px;
  }
}

.student-card,
.benefit-card,
.struggle-item,
.day-card,
.mentor-profile {
  transition: all 0.3s ease;
}

@media (hover: none) {

  .student-card:active,
  .benefit-card:active,
  .struggle-item:active,
  .day-card:active {
    transform: scale(0.98);
  }
}

* {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.countdown {
  display: none;
}

.testimonials {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 42px;
  color: #1a1a4b;
  margin-bottom: 40px;
}

.testimonials h2 .highlight {
  color: #4caf50;
}

.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-content {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-frame {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  border-radius: 40px;
  background: #000;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mobile-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 2;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}

.prev-button,
.next-button {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.prev-button:hover,
.next-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.prev-button svg,
.next-button svg {
  width: 24px;
  height: 24px;
  fill: #1a1a4b;
}

@media (max-width: 768px) {
  .mobile-frame {
    width: 240px;
    height: 480px;
  }

  .testimonials h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .mobile-frame {
    width: 200px;
    height: 400px;
  }

  .prev-button,
  .next-button {
    width: 40px;
    height: 40px;
  }

  .prev-button svg,
  .next-button svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 500px) {
  .mobile-testimonial-title {
    display: none;
  }
}

@media (max-width: 500px) {
  .testimonials h2:not(.mobile-testimonial-title) {
    display: none;
  }

  .mobile-testimonial-title {
    display: block;
    text-align: center;
    font-size: 28px;
    color: #1a1a4b;
    margin-bottom: 20px;
  }
}

.get-certified {
  width: 100%;
  padding: 60px 20px;
  background: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.get-certified h2 {
  font-size: 42px;
  color: #1a1a4b;
  margin-bottom: 20px;
}

.get-certified p {
  font-size: 20px;
  color: #4a4a8f;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.clarification-note {
  font-size: 16px;
  color: #4a4a8f;
  margin-top: -20px;
  margin-bottom: 30px;
  background-color: rgba(76, 175, 80, 0.05);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #4caf50;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
}

.certificate-container {
  perspective: 2000px;
  margin: 60px auto;
  max-width: 800px;
  transform-style: preserve-3d;
}

.certificate-frame {
  width: 100%;
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.certificate-frame.rotated {
  transform: rotateY(-30deg) rotateX(5deg) rotateZ(-2deg);
}

.certificate-frame.flat {
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0px);
}

.certificate-frame:hover {
  transform: rotateY(-25deg) rotateX(3deg) rotateZ(-1deg) translateZ(20px);
}

.certificate-shadow {
  position: absolute;
  width: 80%;
  height: 30px;
  background: rgba(0, 0, 0, 0.2);
  bottom: -40px;
  left: 10%;
  border-radius: 50%;
  filter: blur(20px);
  transform: rotateX(90deg) translateZ(-20px);
  z-index: -1;
}

.certificate-frame-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 10px solid #333;
  border-radius: 20px;
  transform-style: preserve-3d;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: #333;
}

.certificate-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 15px;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.certificate-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.certificate-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%);
  transform: rotate(30deg);
  pointer-events: none;
}

.certificate-content {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  z-index: 1;
}

.certificate-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transform: translateZ(10px);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  border-radius: 15px;
  transform: translateZ(20px);
  pointer-events: none;
}

.shine-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateZ(30px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.certificate-frame:hover .shine-effect {
  opacity: 1;
  animation: shine 1.5s infinite alternate;
}

.certificate-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateZ(25px);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corner-tl {
  top: 15px;
  left: 15px;
}

.corner-tr {
  top: 15px;
  right: 15px;
}

.corner-bl {
  bottom: 15px;
  left: 15px;
}

.corner-br {
  bottom: 15px;
  right: 15px;
}

.floating-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(40px);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  opacity: 0.5;
  animation: rotateEmblem 10s infinite linear;
}

.award-icon {
  width: 60px;
  height: 60px;
  fill: rgba(255, 255, 255, 0.8);
}

@keyframes rotateEmblem {
  from {
    transform: translate(-50%, -50%) translateZ(40px) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) translateZ(40px) rotate(360deg);
  }
}

@keyframes shine {
  0% {
    background-position: -300% center;
  }

  100% {
    background-position: 300% center;
  }
}

@media (max-width: 768px) {
  .certificate-frame {
    height: 400px;
  }

  .floating-emblem {
    width: 80px;
    height: 80px;
  }

  .award-icon {
    width: 40px;
    height: 40px;
  }
}

.action-btn {
  margin-top: 40px;
  display: inline-block;
  padding: 15px 35px;
  background: rgba(58, 110, 165, 0.9);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(41, 128, 185, 0.9);
}

/* LinkedIn Posts Section */
.linkedin-posts {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.linkedin-posts h2 {
  font-size: 42px;
  color: #1a1a4b;
  margin-bottom: 40px;
}

.linkedin-posts h2 .highlight {
  color: #4caf50;
}

.linkedin-carousel-container {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.linkedin-carousel {
  display: flex;
  gap: 24px;
  /* Removed overflow/scroll properties */
  padding: 20px 0;
  width: max-content;
  /* Allow content to expand */
}

.linkedin-carousel::-webkit-scrollbar {
  display: none;
}

.linkedin-nav-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.linkedin-nav-btn:hover {
  background: #f3f6f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.linkedin-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: #666;
}

.linkedin-card {
  flex: 0 0 320px;
  min-width: 320px;
  height: 420px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.linkedin-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 12px;
}

.linkedin-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0e0e0;
}

.linkedin-user-info {
  flex: 1;
  min-width: 0;
}

.linkedin-user-name {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.linkedin-user-title {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.linkedin-card-content {
  padding: 0 16px 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.linkedin-card-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, white);
}

.linkedin-reactions {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #666;
}

.linkedin-reaction-icons {
  display: flex;
  margin-right: 4px;
}

.linkedin-reaction-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-left: -4px;
}

.linkedin-reaction-icon:first-child {
  margin-left: 0;
}

.linkedin-reaction-icon.like {
  background: #0077b5;
  color: white;
}

.linkedin-reaction-icon.celebrate {
  background: #44712e;
  color: white;
}

.linkedin-reaction-icon.love {
  background: #df704d;
  color: white;
}

.linkedin-actions {
  display: flex;
  border-top: 1px solid #e0e0e0;
  padding: 4px 8px;
}

.linkedin-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  border-radius: 4px;
  transition: background 0.2s;
}

.linkedin-action-btn:hover {
  background: #f3f6f8;
}

.linkedin-action-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .linkedin-posts h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .linkedin-carousel-container {
    padding: 0 10px;
  }

  .linkedin-carousel {
    padding: 10px 0;
  }

  .linkedin-card {
    flex: 0 0 300px;
    min-width: 280px;
  }

  .linkedin-nav-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .linkedin-posts {
    padding: 40px 15px;
  }

  .linkedin-posts h2 {
    font-size: 24px;
  }

  .linkedin-card {
    flex: 0 0 280px;
    min-width: 260px;
  }
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
}

.hero-cloud-1 {
  width: 120px;
  top: 15%;
  left: 5%;
  animation-duration: 8s;
  animation-delay: 1s;
}

.hero-cloud-2 {
  width: 150px;
  top: 60%;
  right: -5%;
  animation-duration: 10s;
  animation-delay: 2s;
  opacity: 0.6;
}

.hero-arrow {
  width: 90px;
  top: 65%;
  left: 10%;
  animation-duration: 7s;
  animation-delay: 0.5s;
  transform: rotate(-15deg);
}

.hero-airplane {
  width: 100px;
  top: 10%;
  right: 15%;
  animation-duration: 9s;
  animation-delay: -2s;
}

.hero-trophy {
  width: 110px;
  bottom: 5%;
  right: 15%;
  animation-duration: 6.5s;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Scrollytelling Section Styling */
.hero-journey {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.journey-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  align-items: flex-start;
  position: relative;
}

.journey-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding: 40px 0 300px 0;
  z-index: 2;
}

.journey-step {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.journey-step h2 {
  font-size: 32px;
  color: #1a1a4b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.struggles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.struggle-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #4a4a8f;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.struggle-bullet i {
  color: #ff6b6b;
  font-size: 20px;
}

.journey-visual {
  flex: 1;
  position: sticky;
  top: 120px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.journey-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 100%;
  max-width: 450px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.1));
}

.journey-img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

@media (max-width: 991px) {
  .journey-container {
    flex-direction: column;
  }

  .journey-text {
    padding: 0;
    gap: 40px;
  }

  .journey-visual {
    position: relative;
    top: 0;
    height: 350px;
    width: 100%;
    margin-top: -20px;
    order: -1;
  }
}

/* Full-width "Launch Your Career" row */
.journey-step-full {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.journey-step-full .journey-step {
  text-align: center;
}

.journey-step-full .journey-step h2 {
  font-size: 36px;
}

.journey-step-full .solution {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a8f;
}


.benefits-grid .benefit-card {
  border-radius: 24px !important;
  padding: 40px 30px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(230, 235, 245, 0.7) !important;
  flex-direction: column !important;
  gap: 20px !important;
  min-height: auto !important;
}

.benefit-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefit-card span {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a4b;
  line-height: 1.4;
}

/* Day Cards Curriculum */
.day-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.day-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a4b 0%, #29297a 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
      rgba(76, 175, 80, 0.15) 0%,
      transparent 50%);
  animation: pulseRotate 15s linear infinite;
}

@keyframes pulseRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.cta-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
  color: white;
  text-align: left;
}

.cta-text h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #a7f3d0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  color: white;
}

.cta-text p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-image img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}

.inline-cta {
  font-size: 20px;
  padding: 20px 50px;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.inline-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.6);
}

@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .cta-text h2 {
    font-size: 36px;
  }
}

/* ========================================
   Lottie Scrollytelling — One Card at a Time
   ======================================== */
.lottie-scrolly-wrapper {
  background-color: #050505;
  height: 600vh;
  position: relative;
  z-index: 1;
  width: 100%;
}

.lottie-scrolly-sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #050505;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  box-sizing: border-box;
}

.lottie-scrolly-sticky.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.lottie-scrolly-sticky.is-unpinned {
  position: absolute;
  bottom: 0;
  top: auto;
}

/* Header */
.ls-points-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.ls-points-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.ls-points-header p {
  font-size: 15px;
  color: #888;
  margin: 0;
}

/* Progress dots */
.ls-progress {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.ls-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
}

.ls-progress-dot.active {
  background: #4f8cff;
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(79, 140, 255, 0.5);
}

/* Main row: Lottie left, card right */
.lottie-scrolly-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  gap: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Left Col — Lottie */
.ls-lottie-col {
  flex: 0 0 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 50vh;
}

/* Right Col — one card shown at a time */
.ls-content-col {
  flex: 1;
  position: relative;
  min-height: 140px;
}

/* Cards: absolutely positioned, stacked */
.ls-benefit-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 28px;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ls-benefit-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ls-benefit-item.past {
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
}

.ls-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
}

.ls-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ls-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.ls-text p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.5;
  margin: 0;
}

/* Next section covers pinned panel */
.lottie-scrolly-wrapper+section,
.lottie-scrolly-wrapper+.curriculum {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .lottie-scrolly-wrapper {
    height: 700vh;
  }

  .lottie-scrolly-sticky {
    padding-top: 70px;
    justify-content: flex-start;
  }

  .ls-points-header h2 {
    font-size: 26px;
  }

  .ls-points-header p {
    font-size: 13px;
  }

  .ls-progress {
    margin-bottom: 16px;
  }

  .lottie-scrolly-row {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }

  .ls-lottie-col {
    flex: none;
    width: 55%;
  }

  .ls-content-col {
    width: 100%;
    min-height: 130px;
  }

  .ls-benefit-item {
    padding: 18px 20px;
    gap: 14px;
  }

  .ls-icon {
    width: 44px;
    height: 44px;
  }

  .ls-text h3 {
    font-size: 17px;
  }

  .ls-text p {
    font-size: 13px;
  }
}

/* --- Destination Dream Job SVG Animations --- */
.destination-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.confetti-strip {
  opacity: 0;
  transform-origin: center top;
  animation: fallConfetti linear forwards infinite;
  animation-duration: var(--sway-dur, 2.5s);
  animation-delay: var(--delay, 0s);
}

@keyframes fallConfetti {
  0% {
    opacity: 0;
    transform: translateY(-100px) translateX(0) rotate(0deg) scale(0.5);
  }

  10% {
    opacity: 1;
    transform: translateY(-30px) translateX(calc(var(--tx, 0px) * 0.2)) rotate(15deg) scale(1);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(220px) translateX(var(--tx, 0px)) rotate(360deg) scale(1.2);
  }
}

.go-btn-group {
  transform-origin: 201px 197px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.go-btn-group:hover {
  transform: scale(1.1);
  filter: brightness(1.1) drop-shadow(0px 8px 12px rgba(92, 178, 122, 0.4));
}

.go-btn-group:active {
  transform: scale(0.95);
}