:root {
  --primary-yellow: #fdd835;
  --accent-red: #e53935;
}

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Small inline styles to keep the section clean & elegant */
.project-card .project-overlay { transition: transform .35s ease; transform: translateY(0); }
.project-card:hover .project-overlay { transform: translateY(-6px); }

.section-title {
  color: black;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-img,
.mentor img {
  transition: 0.4s;
  border: 4px solid var(--primary-yellow);
}

.testimonial-img:hover,
.mentor img:hover {
  transform: scale(1.1);
}

.flow{
   border-radius: 0 0 30px 30px;
}

.cta {
  background: linear-gradient(90deg, var(--accent-red), #ff7043);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logos img {
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  filter: none;
  opacity: 1;
}

.form-floating input {
  border-radius: 12px;
}

footer {
  background: #222;
  color: #bbb;
  padding: 30px 0;
  text-align: center;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.marquee {
  animation: marquee-left 18s linear infinite;
  white-space: nowrap;
  gap: 2rem;
  flex-wrap: nowrap;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee img {
  margin-right: 2rem;
  display: inline-block;
}

#mentorCarouselInner {
  width: max-content;
}

.mentor-card {
  flex: 0 0 33.3333%;
  /* 3 card per view */
  max-width: 33.3333%;
}

/* Style for form */
 @keyframes float1 {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-20px);}
}
@keyframes float2 {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(18px);}
}
@keyframes float3 {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-12px);}
}
@keyframes float4 {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(15px);}
}
@keyframes float5 {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-8px);}
}
@keyframes spinStar {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.registration-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.form-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 500px;
  margin: auto;
}

.form-floating label {
  font-size: 0.95rem;
  color: #888;
}

.btn-submit {
  background-color: #fdd835;
  color: #222;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1.05rem;
}

.btn-submit:hover {
  background-color: #ffca28;
  color: #000;
}

.left-banner {
  background-color: #fdd835;
  background-image: url('https://bio.kampunginggrislc.com/_next/image?url=%2Flogo.webp&w=640&q=75');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
  border-radius: 20px;
  min-height: 500px;
}

@media (max-width: 768px) {
  .left-banner {
    display: none;
  }
}

/* CSS untuk header baru */
  /* Hero Banner */
  .hero-banner {
      background: linear-gradient(135deg, rgb(40, 36, 157) 0%, rgb(71, 66, 239) 100%);
      min-height: 500px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
  }

  /* Animated Background Pattern */
  .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
          radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
      animation: pulse 8s ease-in-out infinite;
  }

  @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
  }

  /* Floating Shapes */
  .shape {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      animation: float 6s ease-in-out infinite;
  }

  .shape1 {
      width: 300px;
      height: 300px;
      top: -100px;
      right: 10%;
      animation-delay: 0s;
  }

  .shape2 {
      width: 200px;
      height: 200px;
      bottom: -50px;
      left: 5%;
      animation-delay: 2s;
  }

  .shape3 {
      width: 150px;
      height: 150px;
      top: 40%;
      right: 5%;
      animation-delay: 4s;
  }

  @keyframes float {
      0%, 100% {
          transform: translateY(0) rotate(0deg);
      }
      50% {
          transform: translateY(-30px) rotate(180deg);
      }
  }

  /* Content Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
  }

  .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .hero-text {
      color: white;
  }

  .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      animation: slideInLeft 0.8s ease-out;
  }

  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .hero-text h1 {
      /* font-size: 3.5rem; */
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      animation: slideInLeft 0.8s ease-out 0.2s both;
  }

  .hero-text p {
      /* font-size: 1.25rem; */
      line-height: 1.8;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      animation: slideInLeft 0.8s ease-out 0.4s both;
  }

  .cta-buttons {
      display: flex;
      gap: 1rem;
      animation: slideInLeft 0.8s ease-out 0.6s both;
  }

  .btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary {
      background: white;
      color: #141239;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-primary:hover {
    background: black;
      transform: translateY(-3px);
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  }

  .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
  }

  .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
  }

  /* Hero Image/Illustration */
  /* .hero-visual {
      position: relative;
      animation: slideInRight 0.8s ease-out 0.4s both;
  } */

  /* simple vertical float animation */
  .hero-visual .floating {
      animation: floatY 3s ease-in-out infinite;
      will-change: transform;
  }
  @keyframes floatY {
      0% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0); }
  }
  /* optional sizing and responsive behavior */
  .hero-visual .illustration-image {
      width: 320px;
      max-width: 100%;
      height: auto;
      display: block;
  }

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .illustration-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .illustration-placeholder {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
      border-radius: 15px;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
      padding: 2rem;
  }

  .illustration-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
  }

  .illustration-icons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      width: 100%;
      max-width: 300px;
  }

  .icon-box {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      animation: iconFloat 3s ease-in-out infinite;
  }

  .icon-box:nth-child(1) {
      animation-delay: 0s;
  }

  .icon-box:nth-child(2) {
      animation-delay: 0.5s;
  }

  .icon-box:nth-child(3) {
      animation-delay: 1s;
  }

  @keyframes iconFloat {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-10px);
      }
  }

  .icon-box:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .illustration-text {
      color: white;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 600;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      color: white;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 2rem;
      font-weight: 800;
      display: block;
      margin-bottom: 0.25rem;
  }

  .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero-banner {
          min-height: auto;
          padding: 4rem 0;
      }

      .hero-content {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .hero-text h1 {
          font-size: 2.5rem;
      }

      .hero-text p {
          font-size: 1.1rem;
      }

      .cta-buttons {
          flex-direction: column;
      }

      .btn {
          text-align: center;
      }

      .stats {
          grid-template-columns: repeat(3, 1fr);
          gap: 0.5rem;
      }

      .stat-number {
          font-size: 1.5rem;
      }
  }