/* 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%);
}
 /* Testimonial Slider Styles */
  .testimonial-item {
    display: none;
    animation: fadeIn 1s ease-in-out;
  }

  .testimonial-item.active {
    display: block;
  }

  .testimonial-item .card {
    min-height: 550px;
    display: flex;
    flex-direction: column;
  }

  .testimonial-item .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Company Logo Wrapper */
  .company-logo-wrapper {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
  }

  .company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* Dots Indicators */
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 1s ease;
  }

  .dot:hover {
    background-color: #717171;
  }

  .dot.active {
    background-color: var(--bs-primary, #0d6efd);
    width: 30px;
    border-radius: 6px;
  }

  /* Navigation Buttons Hover Effect */
  #prevBtn:hover,
  #nextBtn:hover {
    background-color: var(--bs-primary, #0d6efd) !important;
    color: white !important;
  }

  /* Logo Carousel Styles */
  .logo-carousel-wrapper {
    overflow: hidden;
    padding: 15px 0;
    background: white;
    position: relative;
  }

  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
  }

  .logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
  }

  .logo-carousel {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
  }

  .logo-carousel:hover {
    animation-play-state: paused;
  }

  .logo-slide {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .logo-slide img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
  }

  .logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {

    #prevBtn,
    #nextBtn {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }

    .company-logo-wrapper {
      width: 80px;
      height: 80px;
      padding: 8px;
    }

    .logo-slide {
      width: 150px;
      height: 80px;
      padding: 0 20px;
    }

    .logo-slide img {
      max-height: 60px;
    }

    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
      width: 50px;
    }
  }
  
  
    /* Consultation Form Styles */
.consultation-form-wrapper {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 16px;
  padding: 3px;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.consultation-form {
  background: white;
  border-radius: 14px;
  padding: 3rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.consultation-form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.consultation-form .form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

.consultation-form .form-control::placeholder {
  color: #94a3b8;
}

.submit-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-message {
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
  display: block;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

@media (max-width: 768px) {
  .consultation-form {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }
}