/* ===== FORM INPUTS ===== */ .form-input { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 14px 16px; color: white; font-size: 14px; width: 100%; outline: none; transition: all 0.3s ease; } .form-input::placeholder { color: rgba(255, 255, 255, 0.3); } .form-input:focus { border-color: rgba(16, 255, 190, 0.4); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 20px rgba(16, 255, 190, 0.1); } /* ===== SELECT DROPDOWN ===== */ .form-select { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 14px 16px; color: rgba(255, 255, 255, 0.6); font-size: 14px; width: 100%; outline: none; cursor: pointer; appearance: none; transition: all 0.3s ease; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; } .form-select:focus { border-color: rgba(16, 255, 190, 0.4); background: rgba(255, 255, 255, 0.08); } .form-select option { background: #1a1a1a; color: white; } /* ===== LABEL ===== */ .form-label { display: block; font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.8); margin-bottom: 8px; text-align: left; line-height: 120%; } .form-label .required { color: #31DFAA; } /* ===== SUBMIT BUTTON ===== */ .submit-btn { width: 100%; padding: 16px 32px; background: white; color: #050505; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 999px; border: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(16, 255, 190, 0.2); } .submit-btn:active { transform: translateY(0); } /* ===== ANIMATIONS ===== */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .animate-in { animation: fadeInUp 0.8s ease forwards; opacity: 0; } /* ===== CASE STUDY CARD ===== */ .case-card { width: 100%; height: auto; position: relative; cursor: pointer; overflow: hidden; border-radius: 37px; border: 7px solid rgb(168 220 204 / 64%); opacity: 0.8; background: #0a0a0ac2; transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); } .case-card::before { content: ''; position: absolute; inset: 0; border-radius: 37px; padding: 1px; background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, transparent 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; } /* ===== CARD IMAGE AREA ===== */ .card-image-area { position: relative; width: 100%; height: 280px; } .card-image-area img { width: 100%; height: 100%; object-fit: cover; } /* ===== BRAND LOGO BADGE (bottom left on image) ===== */ .brand-logo-badge { position: absolute; bottom: -22px; left: 16px; padding:0px; border-radius: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; z-index: 2; } .brand-yaynuts { width: 103px; height: 103px; border-radius: 10px; background-color: #0277B6; } .brand-sweetums { width: 103px; height: 103px; border-radius: 10px; background-color: #fff; } /* ===== CPG TAG (bottom right on image) ===== */ .cpg-tag { position: absolute; bottom: -22px; right: 16px; border-radius: 43px; background: #98EFD5; color: #003324; text-align: center; font-family: Poppins; font-size: 16px; font-style: normal; font-weight: 500; line-height: normal; padding: 6px 14px; border-radius: 999px; width: 145px; height: 45px; display: flex; align-items: center; justify-content: center; z-index: 2; backdrop-filter: blur(10px); } /* ===== CARD CONTENT ===== */ .card-content { padding: 24px; } .card-title { font-size: 20px; font-weight: 600; color: #10FFBE; line-height: 1.3; margin-bottom: 12px; } .card-description { font-size: 13px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; } /* ===== ANIMATIONS ===== */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; } .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } /* ===== RESPONSIVE ===== */ @media (max-width: 768px) { .card-image-area { height: 220px; } .card-title { font-size: 18px; } .brand-yaynuts { width: 72px; height: 72px; } .brand-sweetums { width: 72px; height: 72px; } .cpg-tag { width: 104px; height: 35px; font-size: 12px; bottom: -17px; } } /* ===== BACKGROUND GLOW ===== */ .bg-glow-left { position: absolute; left: -200px; top: 50%; transform: translateY(-50%); width: 500px; height: 600px; background: radial-gradient(ellipse, rgba(16, 255, 190, 0.15) 0%, rgba(16, 255, 190, 0.03) 50%, transparent 70%); filter: blur(100px); pointer-events: none; z-index: 0; } /* ===== SIDEBAR ===== */ .sidebar-sticky { position: sticky; top: 40px; } /* ===== CONTENTS NAV ===== */ .contents-title { color: #31DFAA; font-family: Poppins; font-size: 20px; font-style: normal; font-weight: 600; line-height: 120%; /* 24px */ margin-bottom: 33px; } .contents-link { display: block; color: #FFF; font-family: Poppins; font-size: 20px; font-style: normal; font-weight: 500; line-height: 120%; /* 24px */ margin-bottom: 18px; } .contents-link:hover, .contents-link.active { color: #ffffff; } /* ===== CTA CARD ===== */ .cta-sidebar-card { background: linear-gradient(37deg, rgb(1 13 9) 0%, rgb(10 80 59) 100%); border: 1px solid rgb(8 37 28); border-radius: 16px; padding: 24px 0px; margin-top: 24px; text-align: center; } .cta-sidebar-card h3 { width: 249px; color: #FFF; text-align: center; font-family: Poppins; font-size: 24px; font-style: normal; font-weight: 600; line-height: 120%; /* 28.8px */ color: white; margin-bottom: 16px; } .cta-sidebar-btn { width: 168px; display: inline-flex; align-items: center; justify-content: center; background: white; color: #000; text-align: center; font-family: Poppins; font-size: 16px; font-style: normal; font-weight: 600; line-height: 120%; /* 19.2px */ text-transform: uppercase; padding: 12px 24px; border-radius: 999px; border: none; cursor: pointer; transition: all 0.3s ease; } .cta-sidebar-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16, 255, 190, 0.2); } /* ===== CONTENT AREA ===== */ .content-intro { font-size: 15px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 40px; } /* ===== BULLET LIST ===== */ .bullet-list { list-style: none; padding: 0; margin: 0; } .bullet-list li { color: #FFF; font-family: Poppins; font-style: normal; font-weight: 300; line-height: 120%; list-style: disc; } .bullet-list li strong { color: #FFF; font-family: Poppins; font-style: normal; line-height: 120%; /* 24px */ font-weight: 700; } /* ===== ANIMATIONS ===== */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .animate-in { animation: fadeInUp 0.8s ease forwards; opacity: 0; } .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; } .delay-5 { animation-delay: 0.5s; }
.slider-container {
  width: 100%;
  max-width: 1440px;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-wrapper::before, .cards-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -100px;
    width: 215px;
    z-index: 19;
    pointer-events: none;
}
.cards-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}
.cards-wrapper::after {
    right: -90px;
    background: linear-gradient(to left, #000000, transparent);
}

.hero-card {
  position: absolute;
  width: 270px;
  height: 480px;
  overflow: hidden;
  border-radius: 23px;
  box-shadow: -5px 5px 15px 15px rgba(0, 0, 0, 0.25);
  /* transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
    transition: transform 0.45s ease, opacity 0.45s ease;

  cursor: pointer;
  transform-origin: center bottom;
  background: #fff;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 9 / 16;

}

.hero-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-card.active .overlay {
  opacity: 1;
}

.hero-card .overlay h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-card .overlay p {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}


.hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
    .cards-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #00000000, transparent);
}
.cards-wrapper::after {
    right: -90px;
    background: linear-gradient(to left, #00000000, transparent);
}
}