@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #f8f8f8;
}

/* Top Info Bar Styling */
.top-info-bar {
  width: 100%;
  background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
  padding: 0.75rem 2rem;
  color: white;
  position: relative;
  height: 140px;
  overflow-x: hidden;
}

.top-info-bar.hidden {
  transform: scaleY(0);
  height: 0;
  padding: 0;
}

.top-info-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-info-bar a:hover {
  opacity: 0.8;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-info-bar {
      font-size: 0.8rem;
  }
  
  .contact-info {
      flex-direction: column;
      align-items: flex-start;
      space-y: 4px;
  }
  
  .social-links {
      display: none;
  }
}

@media (max-width: 480px) {
  .top-info-bar {
      padding: 5px 0;
  }
  
  .contact-info a {
      font-size: 0.75rem;
  }
}




/* Top Info Bar dengan Background Gradient yang diperluas */
.top-info-bar {
  background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
  padding: 0.75rem 2rem;
  color: white;
  position: relative;
  height: 140px; /* Menambah tinggi sedikit */
}

.info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}
/* Contact Info Styling */
.contact-info-wrapper {
  background: linear-gradient(145deg, #ffffff, #f5f7ff);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
/* Contact Info Bar */
#contact-info-bar {
  position: relative;
  z-index: 60;
  padding: 4px 20px; /* Menambah padding kanan kiri */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0; /* Memastikan tidak ada margin */
  margin-left: 80px; /* Menambah margin kiri */
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.nav-menu a {
  color: #4B5563;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-menu a:hover {
  color: #1141B0;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #E5E7EB;
}
/* Navbar Styling */
header {
  position: relative;
  max-width: 1850px; /* Memperlebar max-width */
  transition: all 0.3s ease-in-out;
  margin-top: -80px; /* Menyesuaikan margin-top */
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem; /* Menambah padding kanan kiri */
  width: 100%; /* Memastikan lebar penuh */
  /* Menghilangkan margin atas */
}
/* Scroll Effect */
header.scrolled nav {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  animation: slideDown 0.5s forwards;
}
.globe-icon {
  color: #4B5563;
}
/* Navbar Container Styling */
.navbar-container {
  background: white;
  border-radius: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 40;
  max-width: 1850px;
  padding: 1rem 2rem;
  transform: translateY(30px); /* Mendorong navbar ke bawah */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-container {
      margin: -20px 1rem 0;
      padding: 1rem;
  }
  
  .logo-partner-container {
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  
  .mobile-menu-button {
      display: block;
  }
}

/* Top Info Bar Styling */
.top-info-bar {
  width: 100%;
  background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
  padding: 0.75rem 2rem;
  color: white;
  position: relative;
  height: 100px; /* Mengurangi tinggi dari 150px menjadi 60px */
  overflow: hidden;
}

/* Container untuk info */
.info-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}


nav.container {
  width: 100%;
  max-width: 1850px;
  margin-top: -80px; /* Menyesuaikan margin-top */
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Mega Menu Styling */
.mega-menu {
  width: 280px;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  animation: fadeInDown 0.3s ease;
}

.mega-menu-item {
  position: relative;
}
/* Submenu Styling */
.submenu {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: translateY(-15px) scaleY(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100; /* Menaikkan z-index */
  display: none;
  margin-top: 0.5rem; /* Menambah jarak dari parent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
  display: block;
  animation: submenuFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Responsive Design */
@media (max-width: 768px) {
  .info-container {
      padding: 0 0.5rem;
  }
  
  nav.container {
      margin: 0 1rem;
      padding: 1rem;
  }
}

/* Mega Menu adjustments */
.mega-menu {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Hover Effects */
@media (min-width: 992px) {
  .mega-menu-item:hover > .dropdown-item.has-submenu {
      background-color: #f8f9fa;
      color: #1141B0;
  }

  .mega-menu-item:hover > .dropdown-item .submenu-arrow {
      transform: rotate(-90deg);
  }

  .mega-menu-item:hover > .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
  }
}

/* Mobile Styling */
@media (max-width: 991.98px) {
  .mega-menu {
      width: 100%;
      position: static;
      box-shadow: none;
      padding: 0;
  }

  .submenu {
      position: static;
      width: 100%;
      box-shadow: none;
      padding-left: 20px;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
  }

  .mega-menu-item.show > .submenu {
      display: block;
  }

  .dropdown-item.has-submenu {
      padding: 12px 15px;
  }

  .submenu-arrow {
      transform: rotate(90deg);
  }

  .mega-menu-item.show .submenu-arrow {
      transform: rotate(-90deg);
  }
}

/* Animasi untuk mobile toggle */
@media (max-width: 991.98px) {
  .navbar-toggler {
      border: none;
      padding: 0;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  .navbar-collapse {
      max-height: 80vh;
      overflow-y: auto;
  }

  .mega-menu-item {
      border-bottom: 1px solid #eee;
  }

  .mega-menu-item:last-child {
      border-bottom: none;
  }
}

.bg-colour {
  position: absolute;
  z-index: -1;
  align-items: center;
  max-width: 2000px;
}

.hero-section {
  position: relative;
  margin-top: -64px;
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(
    to bottom,
    #1a5fa3,
    #f8f8f8
  ); /* Blue to white gradient */
  z-index: -1;
}

.hero-background {
  position: absolute;
  top: -190px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-background .border-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}

.hero-background img {
  margin-top: 300px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 220px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  flex: 1;
  text-align: left;
  padding-right: 60px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -70px;
}

.hero-image img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-content .solutions-tag {
  text-transform: uppercase;
  color: #1a5fa3;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700;
}

.hero-content h1 .blue-text {
  color: #4F6571;
  font-size: 64px;
  display: block;
  margin-bottom: 10px;
}

.hero-content h1 span:last-child {
  color: #002B5B;
  font-size: 48px;
  display: inline;
  letter-spacing: -0.5px;
}

.hero-content .subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 600px;
}

.hero-content .company-name {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
}

.hero-button {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button {
  background-color: #2c3e50;
  color: white;
}

.primary-button:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.secondary-button {
  background-color: #e8f1f8;
  color: #083562;
}

.secondary-button:hover {
  background-color: #d1e3f2;
  transform: translateY(-2px);
}

/* 3D Cube Grid Animation */
.background-animation {
  position: absolute;
  top: 350px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

canvas {
  display: block;
}

/* Add these to your existing CSS */
.main-nav {
  transition: transform 0.3s ease;
}

.main-nav.hide {
  transform: translateY(-100%);
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Enhanced dropdown styles */
.solutions-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-width: 1000px;
  padding: 20px;
  border-radius: 15px;
  z-index: 1000;
}

.solutions-submenu.show {
  display: block;
}

/* Remove hover-based display */
.has-submenu:hover .solutions-submenu {
  display: none;
}

.nav-item.has-submenu {
  cursor: pointer;
}

.nav-item.has-submenu.active > a {
  color: #1a5fa3;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.solution-item {
  position: relative;
  padding: 8px;
  cursor: pointer;
}

.solution-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 8px;
  font-weight: 500;
}

.solution-item > a::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.solution-item.active > a::after {
  transform: rotate(180deg);
}

/* Nested submenu styles */
.nested-submenu {
  display: none;
  position: relative;
  background: #f8f9fa;
  border-radius: 6px;
  padding: 8px;
  margin-top: 5px;
}

.nested-submenu.show {
  display: block;
}

.nested-submenu a {
  display: block;
  padding: 8px 12px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nested-submenu a:hover {
  background: white;
  color: #1a5fa3;
  transform: translateX(5px);
}

/* Active states */
.solution-item.active {
  background: #f8f9fa;
}

.solution-item.active > a {
  color: #1a5fa3;
}

/* Ensure proper z-index */
.main-nav {
  position: relative;
  z-index: 1001;
}

/* Product indicators */
.nested-submenu a[href*="1Ci"]::before {
  background-color: #4caf50;
}

.nested-submenu a[href*="ERPNext"]::before {
  background-color: #2196f3;
}

.nested-submenu a[href*="Odoo"]::before {
  background-color: #ff5722;
}

/* Add subtle animation for child items */
.solutions-submenu.show .solution-item {
  animation: fadeIn 0.3s ease forwards;
  animation-delay: calc(var(--item-index) * 0.05s);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Animation classes */
.solutions-submenu.show {
  animation: fadeIn 0.3s ease;
}

.nested-submenu.show {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions-submenu {
    min-width: 800px;
  }
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-submenu {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .solutions-submenu {
    min-width: 300px;
  }
}

/* Products and Services styles */
.products-submenu .solutions-grid,
.services-submenu .solutions-grid {
  gap: 15px;
  padding: 10px;
}

.products-submenu .solutions-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-submenu .solutions-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-item,
.service-item {
  text-decoration: none;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-item:hover,
.service-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-item h3,
.service-item h3 {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-item p,
.service-item p {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .products-submenu .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-submenu .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .products-submenu .solutions-grid,
  .services-submenu .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-submenu .solutions-grid,
  .services-submenu .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Reset dropdown styles */
.dropdown-menu,
.solution-submenu {
  display: none;
}

.dropdown-menu.active,
.solution-submenu.active {
  display: block;
}

.dropdown-trigger,
.solution-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: #333;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-width: 1000px;
  padding: 20px;
  border-radius: 15px;
  z-index: 1000;
}

.solution-submenu {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 8px;
  margin-top: 5px;
}

.solution-submenu a {
  display: block;
  padding: 8px 12px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.solution-submenu a:hover {
  background: white;
  color: #1a5fa3;
}

/* Active states */
.dropdown-trigger.active,
.solution-trigger.active {
  color: #1a5fa3;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-item {
  text-decoration: none;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  text-decoration: none;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Common styles for product and service items */
.product-item h3,
.service-item h3 {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-item p,
.service-item p {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .dropdown-menu {
    min-width: 800px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .dropdown-menu {
    min-width: 600px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    min-width: 300px;
  }
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.carousel-wrapper {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 100px;
}

.carousel-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 60px 0;
  height: 600px;
  margin-top: -150px;
}

.center-illustration {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 400px;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 0;
}

.center-illustration img {
  width: 400px;
  height: 330px;
  object-fit: contain;
  position: relative;
  z-index: 4;
}

.center-illustration::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 330px;
  background: linear-gradient(to bottom, #f8f8f8 60%, transparent 100%);
  z-index: 2;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  gap: 40px;
  padding: 20px;
  animation: scroll 40s linear infinite;
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.carousel-card {
  width: 280px;
  height: 320px;
  flex: 0 0 280px;
  position: relative;
  border-radius: 20px;
  background-color: #F5F5F5;
  border: 2px solid #D1D1D1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
  transition: all 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4 - 40px * 4));
  }
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  background: transparent;
  border-radius: 20px;
}

.card-icon {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card-text {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.carousel-container::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #f8f8f8;
  border-radius: 0;
  z-index: 2;
}

/* Additional wrapper for content */
.content-wrapper {
  position: relative;
  z-index: 2;
  background: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Add smooth animation effect */
.carousel-track:hover {
  animation-play-state: paused;
}

/* Add these dropdown styles while keeping your existing carousel styles */

.solutions-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-width: 1000px;
  padding: 20px;
  border-radius: 15px;
  z-index: 1000;
}

.solutions-submenu.show {
  display: block;
}

.nested-submenu {
  display: none;
  position: relative;
  background: #f8f9fa;
  border-radius: 6px;
  padding: 8px;
  margin-top: 5px;
}

.nested-submenu.show {
  display: block;
}

.solutions-trigger.active,
.dropdown-trigger.active {
  color: #1a5fa3;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 20px;
  border-radius: 15px;
  z-index: 1000;
}

.dropdown-menu.show {
  display: block;
}

/* Ensure dropdowns appear above carousel */
.main-nav {
  position: relative;
  z-index: 1001;
}

/* Keep your existing styles and add/update these */
.solution-trigger {
  width: 100%;
  text-align: left;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solution-trigger::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 8px;
}

.solution-trigger.active::after {
  transform: rotate(180deg);
}

.solution-submenu {
  display: none;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 4px;
  margin-top: 5px;
}

.solution-submenu.show {
  display: block;
}

.solution-submenu a {
  display: block;
  padding: 8px 10px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
}

.solution-submenu a:hover {
  color: #1a5fa3;
  background: #fff;
  transform: translateX(5px);
}

.solution-item {
  position: relative;
  margin-bottom: 5px;
}

.solution-item:hover {
  background: #f8f9fa;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: rgba(8, 53, 98, 1);
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 36px;
  color: rgba(8, 53, 98, 1); /* Warna untuk "Perusahaan" */
  margin-bottom: 20px;
  font-weight: bold;
}

.section-header h3 .highlight {
  color: rgba(7, 129, 135, 1); /* Warna teal untuk "Tantangan" */
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tambahkan hover effect */
.carousel-card:hover {
  transform: translateY(-5px);
  border-color: #BDBDBD;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Carousel Buttons */
.carousel-buttons {
  text-align: center;
  padding: 40px 20px;
  margin-top: -40px;
}

.carousel-text {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.carousel-btn.learn-more {
  background-color: #2C3E50;
  color: white;
}

.carousel-btn.learn-more:hover {
  background-color: #34495E;
  transform: translateY(-2px);
}

.carousel-btn.contact-us {
  background-color: #E8F1F8;
  color: #083562;
}

.carousel-btn.contact-us:hover {
  background-color: #D1E3F2;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .carousel-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .carousel-text {
    padding: 0 20px;
  }
}

/* Solution Section Styles */
.solution-section {
  background-color: rgba(217, 217, 217, 1);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../../assets/gambar/logo\ bg\ horizon.png');
  background-size: cover;
  opacity: 0.2; /* Membuat gambar lebih transparan */
  z-index: 0;
  transform: rotate(-5deg) scale(0.9); /* Mengecilkan ukuran gambar */
  transform-origin: center center;
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solution-title {
  font-size: 48px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 5px;
}

.solution-subtitle {
  font-size: 48px;
  font-weight: 700;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.teal-text {
  color: #00a19a;
}

.solution-description {
  font-size: 16px;
  color: #333;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.solution-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.icon-item {
  width: 366px;
  height: 365.9px;
  top: 2335px;
  left: 79px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item img {
  width: 366px;
  height: auto;
}

.demo-button {
  display: inline-block;
  background-color: #00a19a;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 161, 154, 0.3);
}

.demo-button:hover {
  background-color: #008c86;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 161, 154, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .solution-icons {
    gap: 20px;
  }
  
  .icon-item {
    width: 100px;
    height: 100px;
  }
  
  .solution-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .solution-icons {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
}

/* Styling untuk Bagian Integrasi Distribusi */
.integration-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 6rem;
  margin: 3rem 0;
  overflow: hidden;
}

.integration-content {
  flex: 1;
  max-width: 50%;
  padding-right: 3rem;
}

.integration-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
}

.dark-blue-text {
  color: #003366;
}

.teal-text {
  color: #008080;
}


.integration-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Container untuk feature cards */
.feature-cards-container {
  flex: 1;
  max-width: 28%;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.feature-cards-slider {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideUpDown 15s infinite linear;
}

.feature-card {
  background-color: #003366;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  max-width: 100%;
  max-height: 100%;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Animasi untuk slider */
@keyframes slideUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50%);
  }
}

/* Responsif */
@media (max-width: 1024px) {
  .integration-section {
    padding: 3rem 4rem;
  }
  
  .integration-content {
    max-width: 55%;
  }
  
  .feature-cards-container {
    max-width: 40%;
  }
  
  .feature-card {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .integration-section {
    flex-direction: column;
    padding: 3rem 2rem;
  }
  
  .integration-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .feature-cards-container {
    max-width: 100%;
    height: 300px;
  }
  
  .feature-cards-slider {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    animation: slideLeftRight 15s infinite linear;
  }
  
  .feature-card {
    width: 180px;
    flex-shrink: 0;
  }
  
  @keyframes slideLeftRight {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 480px) {
  .integration-section {
    padding: 2rem 1rem;
  }
  
  .integration-title {
    font-size: 2rem;
  }
  
  .feature-cards-container {
    height: 250px;
  }
  
  .feature-card {
    width: 150px;
    padding: 1rem;
  }
}

/* System Section Styles */
.system-section {
  padding: 80px 20px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.system-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.system-header {
  text-align: center;
  margin-bottom: 60px;
}

.system-tag {
  font-size: 22px;
  font-weight: 600;
  color: rgba(8, 53, 98, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.system-title {
  font-size: 60px;
  font-weight: 700;
  color: #002B5B;
  margin-bottom: 15px;
}

.system-title .teal-text {
  color: #00a19a;
}

.system-subtitle {
  font-size: 22px;
  color: rgba(8, 53, 98, 1);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.system-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.feature-circle {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: rgba(252, 213, 63, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 51, 102, 0.9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-circle:hover .feature-hover-content {
  opacity: 1;
  transform: scale(1);
}

.feature-hover-content h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.feature-hover-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.feature-circle:hover .feature-icon {
  opacity: 0;
}

/* Responsive adjustments for feature circles */
@media (max-width: 768px) {
  .feature-circle {
    width: 100px;
    height: 100px;
  }
  
  .feature-hover-content h4 {
    font-size: 12px;
  }
  
  .feature-hover-content p {
    font-size: 9px;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 480px) {
  .feature-circle {
    width: 80px;
    height: 80px;
  }
  
  .feature-hover-content h4 {
    font-size: 10px;
    margin-bottom: 2px;
  }
  
  .feature-hover-content p {
    font-size: 8px;
    -webkit-line-clamp: 2;
  }
}

.feature-description {
  background-color: #083562;
  color: white;
  padding: 30px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-description h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-description p {
  font-size: 14px;
  line-height: 1.5;
}

.connector-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 40px;
  background-color: #002B5B;
  z-index: 0;
  transform: translateY(-50%);
}

/* Responsive styles */
@media (max-width: 992px) {
  .system-features {
    flex-direction: column;
    gap: 40px;
  }
  
  .feature-circle {
    width: 180px;
    height: 180px;
  }
  
  .feature-description {
    width: 240px;
    height: 240px;
  }
  
  .connector-line {
    width: 40px;
    height: 80%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .system-title {
    font-size: 36px;
  }
  
  .feature-circle {
    width: 150px;
    height: 150px;
  }
  
  .feature-description {
    width: 200px;
    height: 200px;
    padding: 20px;
  }
  
  .feature-description h3 {
    font-size: 20px;
  }
  
  .feature-description p {
    font-size: 12px;
  }
}

/* Automation Section Styles */
.automation-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
  margin-top: 60px;
}

.automation-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.automation-title {
  font-size: 48px;
  font-weight: 700;
  color: #008080; /* Warna teal */
  margin-bottom: 5px;
}

.automation-subtitle {
  font-size: 48px;
  font-weight: 700;
  color: #002B5B; /* Warna biru tua */
  margin-top: 0;
  margin-bottom: 20px;
}

.automation-description {
  font-size: 16px;
  color: #333;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.automation-illustration {
  margin: 40px auto;
  max-width: 800px;
}

.automation-illustration img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}


/* Responsive styles for automation section */
@media (max-width: 768px) {
  .automation-title,
  .automation-subtitle {
    font-size: 36px;
  }
  
  .automation-illustration {
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .automation-title,
  .automation-subtitle {
    font-size: 28px;
  }
  
  .automation-description {
    font-size: 14px;
  }
}

/* Feature Checkmark Cards Styles */
.feature-checkmark-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
  max-width: 1200px;
}

.checkmark-card {
  flex: 1;
  background-color: #ffffff;
  border: 8px solid #FFDE59;
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 350px;
  min-height: 350px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.checkmark-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.checkmark-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 43, 91, 0.8); /* Membuat warna lebih transparan */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.checkmark-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.checkmark-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Responsive styles for checkmark cards */
@media (max-width: 992px) {
  .feature-checkmark-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .checkmark-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .feature-checkmark-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .checkmark-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* Auto Slide Section Styles */
.auto-slide-section {
  padding: 80px 0;
  background-color: rgba(217, 217, 217, 1);
  overflow: hidden;
  position: relative;
}

.auto-slide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../../assets/gambar/logo\ bg\ horizon.png');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.auto-slide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.auto-slide-header {
  text-align: center;
  margin-bottom: 60px;
}

.auto-slide-header h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 700;
}

.auto-slide-header h3 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 700;
}

.auto-slide-header h3 .teal-text {
  color: #00a19a;
}

.auto-slide-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.auto-slide-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.auto-slide-track {
  display: flex;
  gap: 30px;
  animation: autoSlide 20s linear infinite;
  width: fit-content;
}

@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 3 - 30px * 3)); /* Adjust based on card width and gap */
  }
}

.auto-slide-card {
  flex: 0 0 300px;
  height: 350px; /* Menambah tinggi card */
  background-color: #003366;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auto-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.auto-slide-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 53, 98, 1);
  border-radius: 50%;
  padding: 15px;
}

.auto-slide-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1); /* Makes icon white */
}

.auto-slide-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.auto-slide-card p {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
}

.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #003366;
}

/* Responsive styles */
@media (max-width: 992px) {
  .auto-slide-card {
    flex: 0 0 280px;
    padding: 25px;
  }
  
  @keyframes autoSlide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 3 - 30px * 3));
    }
  }
}

@media (max-width: 768px) {
  .auto-slide-section {
    padding: 60px 0;
  }
  
  .auto-slide-header h2,
  .auto-slide-header h3 {
    font-size: 28px;
  }
  
  .auto-slide-card {
    flex: 0 0 250px;
    padding: 20px;
  }
  
  .auto-slide-icon {
    width: 60px;
    height: 60px;
  }
  
  @keyframes autoSlide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 3 - 30px * 3));
    }
  }
}

@media (max-width: 576px) {
  .auto-slide-card {
    flex: 0 0 220px;
  }
  
  .auto-slide-icon {
    width: 50px;
    height: 50px;
  }
  
  .auto-slide-card h4 {
    font-size: 18px;
  }
  
  @keyframes autoSlide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-220px * 3 - 30px * 3));
    }
  }
}

/* Product ERP Section Styles */
.product-erp-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.product-erp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-erp-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-erp-header h2 {
  font-size: 36px;
  color: #002B5B;
  margin-bottom: 5px;
  font-weight: 700;
}

.product-erp-header h3 {
  font-size: 36px;
  color: #002B5B;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-erp-header .teal-text {
  color: #00a19a;
}

.product-erp-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product Slider Styles */
.product-slider-container {
  position: relative;
  margin-top: 40px;
}

.product-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.product-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.product-card {
  display: flex;
  align-items: center;
  background-color: rgba(7, 129, 135, 1); /* Warna pink muda seperti di gambar */
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 450px; /* Diperpanjang dari 400px menjadi 450px */
  min-width: 420px; /* Tambahan min-width untuk memastikan lebar minimum */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-icon {
  /* Warna pink untuk lingkaran ikon */
  border-radius: 50%;
  width: 80px; /* Diperbesar dari 60px */
  height: 80px; /* Diperbesar dari 60px */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.product-icon img {
  width: 70px; /* Diperbesar dari 30px */
  height: 70px; /* Diperbesar dari 30px */
}

.product-info {
  flex: 1;
}

.product-info h4 {
  color: rgba(242, 248, 255, 1);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.product-info p {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.slider-progress {
  flex: 1;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin: 0 20px;
  position: relative;
  max-width: 300px;
}

.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #00a19a;
  border-radius: 2px;
  width: 33.333%; /* Initial width */
  transition: width 0.3s ease, transform 0.3s ease;
}

.slider-buttons {
  display: flex;
  gap: 15px;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #00a19a;
  border-color: #00a19a;
  color: white;
}

.slider-prev.disabled,
.slider-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-prev.disabled:hover,
.slider-next.disabled:hover {
  background-color: #ffffff;
  border-color: #e0e0e0;
  color: inherit;
}

/* Responsive styles */
@media (max-width: 992px) {
  .product-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .product-erp-header h2,
  .product-erp-header h3 {
    font-size: 28px;
  }
  
  .product-card {
    flex: 0 0 calc(100% - 30px);
  }
  
  .slider-progress {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .product-erp-section {
    padding: 60px 0;
  }
  
  .slider-controls {
    flex-direction: column;
    gap: 20px;
  }
  
  .slider-progress {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* Pembaruan Section Styling */
.pembaruan-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  overflow: hidden;
}

.pembaruan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pembaruan-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pembaruan-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e2b5c;
  margin-bottom: 20px;
}

.pembaruan-title .teal-text {
  color: #00a19a;
}

.pembaruan-description {
  max-width: 800px;
  margin-bottom: 50px;
  color: #4a5568;
  line-height: 1.6;
}

.pembaruan-illustration {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

.cycle-image {
  width: 100%;
  height: auto;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.chat-icon {
  top: 10%;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.puzzle-icon {
  top: 15%;
  right: 15%;
  animation: float 4s ease-in-out infinite;
}

.gear-icon {
  bottom: 20%;
  right: 10%;
  animation: float 3.5s ease-in-out infinite;
}

.chart-icon {
  bottom: 15%;
  left: 15%;
  animation: float 4.5s ease-in-out infinite;
}

.user-icon {
  top: 50%;
  right: 5%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.demo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0e2b5c;
  margin-bottom: 20px;
}

.contact-button-container {
  margin-top: 10px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: rgba(209, 223, 234, 0.7);
  color: #0e2b5c;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button i {
  margin-left: 10px;
}

.contact-button:hover {
  background-color: rgba(209, 223, 234, 1);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pembaruan-title {
    font-size: 2rem;
  }
  
  .pembaruan-illustration {
    max-width: 90%;
  }
  
  .floating-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .pembaruan-title {
    font-size: 1.8rem;
  }
  
  .pembaruan-description {
    font-size: 0.9rem;
  }
  
  .demo-text {
    font-size: 1rem;
  }
  
  .contact-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Product ERP Section Styles */
.product-erp-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.product-erp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-erp-title {
  font-size: 48px;
  font-weight: bold;
  color: #083562;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-erp-title .highlight {
  color: #00a19c;
}

.product-erp-description {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-erp-section {
    padding: 40px 0;
  }
  
  .product-erp-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .product-erp-title {
    font-size: 28px;
  }
}


 /* Product ERP Cards Styles */
 .product-erp-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.erp-card-container {
  width: 300px;
  position: relative;
  padding-top: 50px;
  margin-bottom: 20px;
}

.erp-card-icon-top {
  width: 90px;
  height: 90px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.erp-card-icon-top img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.erp-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 50px 30px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e0e0e0;
  background-color: white;
}

.erp-card-container:hover .erp-card {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.erp-card-title {
  color: #083562;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.erp-card-text {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.erp-card-link {
  color: #083562;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.erp-card-link:hover {
  color: #00a19c;
}

.erp-card-link i {
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-erp-cards {
    gap: 20px;
  }
  
  .erp-card-container {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .erp-card-container {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(to bottom, #000000, #1b2637);
  color: white;
  padding: 4rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-link {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.operation-hours {
  list-style: none;
  padding: 0;
}

.operation-item {
  display: flex;
  align-items: center;
  color: #9ca3af;
}

.operation-icon {
  color: #60a5fa;
  width: 20px;
  text-align: center;
  margin-right: 0.75rem;
}

.operation-indent {
  margin-left: 1.5rem;
}

.support-phone {
  color: #4ade80;
}

.location-section {
  margin-bottom: 1rem;
}

.location-title {
  color: #60a5fa;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #9ca3af;
}

.contact-email {
  display: flex;
  align-items: center;
  color: #9ca3af;
  transition: color 0.3s;
  margin-top: 1rem;
}

.contact-email:hover {
  color: white;
}

.contact-icon {
  color: #60a5fa;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Footer Bottom Section */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  margin-top: 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright-text {
  color: #9ca3af;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copyright-text i.fa-copyright {
  color: #9ca3af;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.copyright-text i.fa-circle {
  color: #4b5563;
  margin: 0 0.75rem;
  font-size: 0.25rem;
  vertical-align: middle;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.footer-bottom-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-bottom-link:hover {
  color: white;
}

.footer-bottom-link:not(:last-child)::after {
  content: "•";
  color: #4b5563;
  margin-left: 1.5rem;
}

/* Fix for footer gap */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
}

/* Footer Styles */
.footer {
  background: linear-gradient(to bottom, #000000, #1b2637);
  color: white;
  padding: 4rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-link {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.operation-hours {
  list-style: none;
  padding: 0;
}

.operation-item {
  display: flex;
  align-items: center;
  color: #9ca3af;
}

.operation-icon {
  color: #60a5fa;
  width: 20px;
  text-align: center;
  margin-right: 0.75rem;
}

.operation-indent {
  margin-left: 1.5rem;
}

.support-phone {
  color: #4ade80;
}

.location-section {
  margin-bottom: 1rem;
}

.location-title {
  color: #60a5fa;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #9ca3af;
}

.contact-email {
  display: flex;
  align-items: center;
  color: #9ca3af;
  transition: color 0.3s;
  margin-top: 1rem;
}

.contact-email:hover {
  color: white;
}

.contact-icon {
  color: #60a5fa;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Footer Bottom Section */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  margin-top: 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright-text {
  color: #9ca3af;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copyright-text i.fa-copyright {
  color: #9ca3af;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.copyright-text i.fa-circle {
  color: #4b5563;
  margin: 0 0.75rem;
  font-size: 0.25rem;
  vertical-align: middle;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.footer-bottom-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-bottom-link:hover {
  color: white;
}

.footer-bottom-link:not(:last-child)::after {
  content: "•";
  color: #4b5563;
  margin-left: 1.5rem;
}

/* Fix for footer gap */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
}


