/* Custom CSS for auto-hide navbar */
.navbar {
  /* transition: transform 0.3s ease-in-out; */
  opacity: 1;
}

.navbar.navbar-hidden {
  /* transform: translateY(-100%); */
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

/* Add some content to demonstrate scrolling */
.content {
  height: 200vh;
  padding-top: 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.demo-section {
  padding: 50px 0;
  margin: 50px 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Custom CSS for hover dropdowns */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
  opacity: 0;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
}

/* Mega menu styling for larger dropdowns */
.mega-menu {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0;
}

/* Custom styling */
.navbar-brand {
  font-weight: bold;
  color: #007bff !important;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff !important;
}

/* Demo content styling */
.hero-section {
  background: linear-gradient(135deg, #767676 0%, #afafaf 100%);
  color: rgb(255, 255, 255);
  padding: 100px 0;
  text-align: center;
}

.content-section {
  padding: 50px 0 10px 0;
}

#app-logo {
  width: 200px;
}

#app-logo-footer {
  width: 150px;
}

/* Animated Gradient Background */
.gradient-motion {
  background: linear-gradient(-45deg, #efefef, #f2f2f2, #dfdfdf, #efefef);
  background-size: 400% 400%;
  padding: 130px 80px 30px 80px;
  animation: gradientShift 8s ease infinite;
}

/* For screens smaller than or equal to 768px */
@media screen and (max-width: 768px) {
  .gradient-motion {
    padding: 100px 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer-copyright {
  padding-top: 10px;
}

.frame {
  width: 100%;
  /* Atur lebar frame sesuai kebutuhan */
  height: auto;
  /* Atur tinggi frame sesuai kebutuhan */
  border: 0px solid black;
  /* Opsional: tambahkan border agar frame terlihat */
  overflow: hidden;
  /* Pastikan bagian gambar yang terpotong tidak terlihat */
}

.frame-img {
  width: 95%;
  /* Gambar akan mengisi lebar penuh dari frame */
  height: auto;
  /* Gambar akan mengisi tinggi penuh dari frame */
  object-fit: cover;
  /* Gambar akan mengisi frame secara penuh, memotong bagian yang tidak sesuai */
  /* Gunakan 'contain' jika ingin gambar terlihat sepenuhnya tanpa terpotong, tapi mungkin menyisakan ruang kosong */
  /* object-fit: contain; */
}

.contact-info {
  color: #c8c8c8;
}

.contact-item {
  transition: all 0.2s ease;
}

.contact-item:hover {
  color: #fff !important;
  transform: translateX(5px);
}



/* Slide Effect */
.btn-slide {
  background: #333;
  color: white;
  border: none;
  position: relative;
  z-index: 1;
}

.btn-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #d7d7d7, #969696);
  transition: left 0.2s ease;
  z-index: -1;
}

.btn-slide:hover::before {
  left: 0;
}

.button-item {
  text-align: left;
  padding: 0px;
}

/* Button Styles */
.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 60px;
}

.radius-box {
  border-radius: 5px 20px 5px;
  background: #ffffff;
}

.gap-sm {
  padding-right: 0 !important;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.gradient-motion-more {
  background: linear-gradient(-45deg, #dadada, #f2f2f2, #dfdfdf, #efefef);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

.visual-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgb(68, 68, 68, 0.95);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  to {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
  }
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(68, 68, 68, 0.95);
  margin-bottom: 40px;
  font-weight: 600;
}

.product-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card:hover::before {
  left: 100%;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(68, 68, 68, 0.95);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgb(68, 68, 68, 0.95);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.product-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(68, 68, 68, 0.95);
  margin-bottom: 15px;
}

.product-description {
  color: rgba(68, 68, 68, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
}

.image-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: floatReverse 6s ease-in-out infinite;
}

@keyframes floatReverse {

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

  50% {
    transform: translateY(10px);
  }
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(68);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.features-grid {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.features-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(68, 68, 68);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(68, 68, 68, 0.9);
  font-size: 0.95rem;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
  animation-delay: calc(var(--delay) * 0.2s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-weight: bold;
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatCircle 20s linear infinite;
}

@keyframes floatCircle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .content-panel {
    padding: 25px;
  }
}

.pulse-border {
  position: relative;
}

.pulse-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  animation: borderPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes borderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.gradient-motion-more {
  background: linear-gradient(-45deg, #efefef, #f2f2f2, #dfdfdf, #efefef);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

.visual-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgb(68, 68, 68, 0.95);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  to {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
  }
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(68, 68, 68, 0.95);
  margin-bottom: 40px;
  font-weight: 600;
}

.product-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card:hover::before {
  left: 100%;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(68, 68, 68, 0.95);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgb(68, 68, 68, 0.95);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.product-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(68, 68, 68, 0.95);
  margin-bottom: 15px;
}

.product-description {
  color: rgba(68, 68, 68, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
}

.image-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: floatReverse 6s ease-in-out infinite;
}

@keyframes floatReverse {

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

  50% {
    transform: translateY(10px);
  }
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(68);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.features-grid {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.features-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(68, 68, 68);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(68, 68, 68, 0.9);
  font-size: 0.95rem;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
  animation-delay: calc(var(--delay) * 0.2s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-weight: bold;
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatCircle 20s linear infinite;
}

@keyframes floatCircle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .content-panel {
    padding: 25px;
  }
}

.pulse-border {
  position: relative;
}

.pulse-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  animation: borderPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes borderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}




.body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

.jumbotron {
  background-color: #0d6efd;
  color: white;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border-radius: .3rem;
}

.service-card {
  transition: transform 0.3s ease-in-out;
}

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


body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  /* Bootstrap's bg-light color */
}

/* Make the "Populer" card's border thicker */
.card.border-primary {
  border-width: 2px;
}




section h5 {
  color: #212529;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
}

ul,
ol {
  padding-left: 1.2rem;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
}

.card-hover {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: var(--bs-primary-bg-subtle);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}


.bg-primary-subtle {
  background-color: #939393 !important;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.bg-box {
  background-color:rgb(0 0 0 / 15%) ;
} 