@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

* {
  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: -85px; /* 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: 140px; /* 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 {
  padding: 4rem 8%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  z-index: 1;
}

.solutions-label {
  color: #1e3799;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #1e3799;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #333;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.company {
  color: #333;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background-color: #1e3799;
  color: white;
}

.btn.secondary {
  background-color: #e8eeff;
  color: #1e3799;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  top: 45px;
  left: 100px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* 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: -100px; /* Move carousel up */
}

.carousel-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 40px;
  padding: 20px;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-312px * 4 - 40px * 4)
    ); /* Updated width calculation */
  }
}



.carousel-card {
  width: 312px;
  height: 336px;
  flex: 0 0 312px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  background: url("../assets/gambar/Rectangle\ 68.png");
  background-size: cover;
  background-position: center;
  bottom: 20%;
}

.card-content {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  object-fit: contain;
}

.card-text {
  color: #ffffff;
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
  margin: 0;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
}

/* 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;
}

/* Challenges Section Styles */
.challenges-section {
  padding: 60px 0; /* Removed horizontal padding */
  text-align: center;
  margin: 0 auto;
}

.challenges-section h2,
.challenges-description,
.bottom-description {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px; /* Add padding only to text content */
}

.challenges-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #083562; /* Dark blue color */
}

.teal-text {
  color: #00a19c; /* Teal color */
}

.challenges-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}

.challenges-slider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 40px;
}

.slider-track {
  display: flex;
  gap: 40px;
  padding: 20px 40px;
  animation: scroll 40s linear infinite;
  position: relative;
  left: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-312px * 4 - 40px * 4)
    ); /* Updated width calculation */
  }
}

.challenge-card {
  flex: 0 0 312px;
  height: 336px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 100%;
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(245, 245, 245, 0.9) 0%,
    rgba(245, 245, 245, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 2;
}

.challenge-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  z-index: 2;
}

.bottom-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .challenges-section h2 {
    font-size: 28px;
  }

  .challenge-card {
    flex: 0 0 240px;
    padding: 20px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }
}

/* Introduction Section Styles */
.introduction-section {
  width: 100%;
  height: 2360px;
  background-color: #d9d9d9;
  margin: 0 auto;
  position: relative;
  z-index: -1;
}

.introduction-content {
  width: 100%;
  max-width: 3000px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px; /* Increase the gap between text and illustrations */
}

.intro-text {
  flex: 1;
  padding-right: 40px;
}

.intro-text h2 {
  font-size: 48px;
  color: #083562;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text h2 span {
  color: #00a19c; /* Teal color for "Semua" */
}

.intro-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.demo-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00a19c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer; /* Add cursor pointer to indicate clickable */
  position: relative; /* Add position relative for z-index */
  z-index: 10000; /* Increase z-index to ensure it's above other elements */
  pointer-events: auto; /* Ensure pointer events are enabled */
}

.demo-button:hover {
  background-color: #008b87;
  transform: translateY(-2px);
}

.intro-illustrations {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end; /* Align items to the right */
  left: 5%;
}

.shape-container {
  width: 759px; /* Set width to 759px */
  height: 189px; /* Set height to 189px */
  background-color: #083562;
  border-radius: 90px 0 0 90px; /* Rounded left corners */
}

.shape {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #083562;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
}

.shape-icon {
  position: absolute;
  left: -40px;
  height: 120px;
  width: 120px;
  background-color: #083562;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.shape-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.shape-container:nth-child(1) .shape {
  width: 100%;
}

.shape-container:nth-child(2) .shape {
  width: 100%;
}

.shape-container:nth-child(3) .shape {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .introduction-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .intro-text h2 {
    font-size: 36px;
  }
}

.integration-section {
  text-align: center;
  padding: 40px;
  background-color: #f0f0f0;
}

.integration-section h2 {
  font-size: 36px;
  color: #333;
}

.integration-section .highlight {
  color: #00a19c; /* Teal color */
}

.integration-section p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.icon-item {
  background-color: #083562;
  border-radius: 10px;
  padding: 20px;
  width: 120px;
  text-align: center;
  color: white;
}

.icon-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.icon-item p {
  margin: 0;
  font-size: 14px;
}

/* Solution Section */
.solution-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.solution-section h2,
.integration-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #002b5b;
  line-height: 1.2;
}

.highlight {
  color: #008b9b;
}

.section-description {
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.solution-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.solution-card {
  flex: 1;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  background: #002b5b;
  padding: 30px;
  border-radius: 20px 20px 0 0;
}

.card-header img {
  width: 60px;
  height: 60px;
}

.card-body {
  padding: 30px;
}

.card-body p {
  color: #666;
  line-height: 1.6;
}

/* Integration Section */
.integration-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.features-carousel {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.carousel-container {
  overflow: hidden;
  margin: 0 40px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  flex: 0 0 262px;
  height: 262px;
  background: #083562;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.carousel-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.prev-btn,
.next-btn {
  pointer-events: auto;
  background: #002b5b;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background: #008b9b;
}

/* Update feature-icon styles */
.feature-icon {
  width: 120px;
  height: 120px;
  background: #083562;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .solution-cards {
    flex-direction: column;
    align-items: center;
  }

  .solution-card {
    width: 100%;
  }

  .features-carousel {
    flex-wrap: wrap;
    gap: 20px;
  }

  .carousel-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 576px) {
  .solution-section h2,
  .integration-section h2 {
    font-size: 2rem;
  }

  .carousel-card {
    flex: 0 0 calc(50% - 20px);
  }
}

.system-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.system-header {
  margin-bottom: 60px;
}

.system-header h3 {
  color: #002b5b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.system-header h2 {
  font-size: 2.5rem;
  color: #002b5b;
  margin-bottom: 20px;
}

.system-header .highlight {
  color: #008b9b;
}

.system-header p {
  color: #666;
  line-height: 1.6;
}

.circle-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.circle-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* Add this new style for the connectors container */
.connector {
  width: 100px;
  height: 30px;
  background-color: #002b5b;
  margin: 0 -20px;
  z-index: 1;
  position: relative;
}

.circle-wrapper {
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.circle {
  width: 379px;
  height: 379px;
  background-color: #ffd93d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle img {
  width: 20%;
  height: 20%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(4506%)
    hue-rotate(194deg) brightness(93%) contrast(98%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-explanation {
  position: absolute;
  top: 0;
  left: 0;
  width: 379px;
  height: 379px;
  background-color: #002b5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  padding: 40px;
}

.circle-explanation p {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.circle-wrapper:hover .circle {
  transform: scale(0.98);
}

.circle-wrapper:hover .circle img {
  transform: scale(0.9);
}

.circle-wrapper:hover .circle-explanation {
  opacity: 0.97;
  transform: scale(1);
}

.circle-wrapper:hover .circle-explanation p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .circle,
  .circle-explanation {
    width: 300px;
    height: 300px;
  }

  .circle-explanation p {
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  .circle,
  .circle-explanation {
    width: 250px;
    height: 250px;
  }

  .circle-explanation p {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .circle-group {
    flex-direction: column;
  }

  .connector {
    width: 8px;
    height: 60px;
    margin: -20px 0;
  }

  .circle,
  .circle-explanation {
    width: 379px;
    height: 379px;
  }

  .circle-explanation p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .circle,
  .circle-explanation {
    width: 280px;
    height: 280px;
  }

  .circle-explanation p {
    font-size: 0.9rem;
    padding: 20px;
  }
}

.automation-section {
  padding: 80px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.automation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.automation-content {
  flex: 1;
}

.automation-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #002b5b;
}

.teal-text {
  color: #008b9b;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: #e6f4f1;
  color: #008b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-item p {
  color: #002b5b;
  line-height: 1.6;
  margin: 0;
}

.automation-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.automation-illustration img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .automation-container {
    flex-direction: column;
  }

  .automation-content {
    text-align: center;
  }

  .automation-content h2 {
    font-size: 2.4rem;
  }

  .feature-list {
    align-items: flex-start;
    text-align: left;
  }

  .automation-illustration {
    order: -1;
    margin-bottom: 40px;
  }

  .automation-illustration img {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .automation-content h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .automation-illustration img {
    max-width: 100%;
  }
}

.odoo-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.odoo-header {
  margin-bottom: 60px;
}

.odoo-header h2 {
  font-size: 2.5rem;
  color: #002b5b;
  margin-bottom: 20px;
}

.odoo-header .highlight {
  color: #008b9b;
}

.section-description {
  color: #666;
  line-height: 1.6;
}

.circle-carousel-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px; /* Add padding for buttons */
}

.circle-carousel {
  position: relative;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden; /* Add this to hide sliding cards */
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* Start off-screen to the right */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.previous {
  transform: translateX(-100%); /* Move to left when becoming previous */
}

.carousel-slide.active {
  transform: translateX(0); /* Center when active */
  pointer-events: all;
}

.circle-card {
  width: 400px;
  height: 400px;
  background-color: #002b5b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin: 0 auto;
  color: white;
}

.circle-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.circle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.circle-card p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 280px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ccd1d9;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #008b9b;
  transform: scale(1.2);
}

@media (max-width: 576px) {
  .circle-card {
    width: 300px;
    height: 300px;
    padding: 30px;
  }

  .circle-carousel {
    height: 300px;
  }

  .circle-card img {
    width: 60px;
    height: 60px;
  }

  .circle-card h3 {
    font-size: 1.2rem;
  }

  .circle-card p {
    font-size: 0.9rem;
  }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #002b5b;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-button:hover {
  background-color: #008b9b;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

/* Add button states */
.carousel-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .circle-carousel-container {
    padding: 0 30px;
  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Product ERP Section */
.product-erp {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-erp h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b3b5a;
}

.product-erp .highlight {
  color: #00a7b1;
}

.product-erp .description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -20px;
  padding: 20px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 300px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  width: 60px;
  height: 60px;
  background: #00a7b1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.product-content {
  text-align: left;
  flex-grow: 1;
  min-width: 0;
}

.product-content h3 {
  margin: 0 0 5px;
  color: #1b3b5a;
  font-size: 1.1rem;
}

.product-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.slider-progress {
  width: 200px;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  margin: 30px auto 0;
  overflow: hidden;
}

.progress-bar {
  width: 33.33%;
  height: 100%;
  background: #00a7b1;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 280px;
  }

  .product-erp h2 {
    font-size: 2rem;
  }
}

.slider-container {
  position: relative;
  margin: 0 -20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1b3b5a;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #00a7b1;
  color: #fff;
  border-color: #00a7b1;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.product-slider {
  scroll-behavior: smooth;
}

/* Innovation Section */
.innovation-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.innovation-section h2 {
  font-size: 2.5rem;
  color: #1b3b5a;
  margin-bottom: 20px;
}

.innovation-section .highlight {
  color: #00a7b1;
}

.innovation-section .description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.innovation-illustration {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 90px;
}

.main-image {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.float {
  position: absolute;
  width: 80px; /* Increased from 40px to 80px */
  height: 80px; /* Increased from 40px to 80px */
  opacity: 0.8;
}

.float.chat {
  top: 5%; /* Adjusted position */
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.float.puzzle {
  top: 15%; /* Adjusted position */
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.float.graph {
  bottom: 15%; /* Adjusted position */
  right: 15%;
  animation: float 3.5s ease-in-out infinite;
}

.float.user {
  bottom: 10%; /* Adjusted position */
  left: 15%;
  animation: float 4.5s ease-in-out infinite;
}

.float.gear {
  top: 45%; /* Adjusted position */
  right: 5%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.cta-section {
  margin-top: 40px;
}

.cta-section p {
  color: #1b3b5a;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e8f4f4;
  color: #1b3b5a;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #00a7b1;
  color: #fff;
}

.cta-button i {
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .innovation-section h2 {
    font-size: 2rem;
  }

  .main-image {
    max-width: 90%;
  }

  .float {
    width: 60px; /* Increased from 30px to 60px for mobile */
    height: 60px; /* Increased from 30px to 60px for mobile */
  }
}



header.sticky {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.sticky nav {
  padding: 10px 0;
}

/* Adjust the main content to prevent overlap with fixed header */
main {
  padding-top: 160px; /* Adjust based on header + top bar height */
}

/* 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%;
}

.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;
}
