/* Import Poppins font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Apply font to all elements */
* {
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

header {
  width: 100%;
  /* background: linear-gradient(to right, #1a5fa3, #3498db); */
  background: transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 1.2%;
}

.top-bar {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}


.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

/* Top Info Bar Styling */
.top-info-bar {
  width: 100vw;
  background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
  padding: 0.75rem 2rem;
  color: white;
  position: relative;
  height: 60px; /* Mengurangi tinggi dari 150px menjadi 60px */
  overflow: 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: 60px; /* 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: 100vw;
  background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
  padding: 0.75rem 2rem;
  color: white;
  position: relative;
  height: 120px; /* 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;
  }
}

.social-icons a:hover {
  opacity: 0.8;
}

.main-nav {
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  margin: 10px 40px; /* Add horizontal margin when not scrolled */
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  border-radius: 40px; /* Add rounded corners by default */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 999;
}

.main-nav.scrolled {
  position: fixed;
  top: 0;
  bottom: auto;
  margin: 0; /* Remove margin when scrolled */
  border-radius: 0; /* Remove border radius when scrolled */
  z-index: 1000;
}

/* Adjust top-bar for scroll state */
.top-bar.hidden {
  opacity: 0;
  visibility: hidden;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-logo {
  height: 50px;
  width: auto;
}

.partner-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  padding: 0; /* Remove padding */
}

.nav-item > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a5fa3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-nav {
    margin: 10px 20px;
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .main-nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 40px 0; /* Tambahkan padding atas bawah */
  z-index: -1;
}

.slider-track {
  margin-top: 110px;
  display: flex;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
  z-index: 100;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* Menambahkan gap khusus setelah shape kedua di setiap slide */
.shape:nth-child(2) {
  margin-right: 480px; /* Gap lebih besar antara shape 2 dan 3 */
}

/* Atau cara alternatif menggunakan class khusus */
.shape.with-gap {
  margin-right: 480px;
}

/* Default shape size */
.shape {
  width: 200px;
  height: 200px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
}

/* Taller shapes (2,3,6,7) */
.shape:nth-child(2),
.shape:nth-child(3) {
  height: 300px;
  background: #ffffff;
}

/* For shapes in second slide */
.slide:nth-child(2) .shape:nth-child(2),
.slide:nth-child(2) .shape:nth-child(3) {
  height: 280px;
}

/* First shape in each slide */
.shape:nth-child(1):hover {
  transform: translateY(-8px) rotate(5deg);
  background: #e8e8e8;
}

/* Second shape in each slide */
.shape:nth-child(2):hover {
  transform: translateY(-8px) scale(1.1);
  background: #e8e8e8;
}

/* Third shape in each slide */
.shape:nth-child(3):hover {
  transform: translateY(-8px) rotate(-5deg);
  background: #e8e8e8;
}

/* Fourth shape in each slide */
.shape:nth-child(4):hover {
  transform: translateY(-8px) scale(0.9);
  background: #e8e8e8;
}

/* Hover state - making it slightly darker white to show interaction */
.shape:hover {
  background: #f8f8f8; /* Very light gray on hover */
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
}

/* Active state */
.shape:active {
  background: #f0f0f0; /* Slightly darker when clicked */
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.1);
}

/* Remove the slider buttons styles */
.slider-buttons {
  display: none;
}

/* Optional: Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.dot.active {
  background: #333;
}

.bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.Odoo-Logo-Product {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintains aspect ratio */
  padding: 20px; /* Add some padding to prevent touching edges */
}

.rectangle {
  width: 456px;
  height: 311px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 3.4%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

.slider-text {
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.slider-text p {
  margin: 10px 0;
  line-height: 1;

  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

/* You can also specify different weights */
.slider-text p:first-child {
  font-weight: 800; /* semibold */
  font-size: 50px;
  color: #03396c;
}

.slider-text p:nth-child(2) {
  font-weight: 400; /* regular */
  font-size: 20px;
  color: #333;
}

.slider-text p:last-child {
  font-weight: 300; /* light */
  font-size: 15px;
  color: #333;
}

#backgroundAnimation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Ensures clicks pass through to elements below */
}

.introduction {
  width: 100%;
  height: auto;
  padding: 40px 20px 180px;
  margin-top: 50px;
  background: linear-gradient(to bottom, #017e84, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Keep other existing styles */
.introduction h2,
.intro-content,
.intro-rectangles-container,
.intro-rectangle,
.intro-rectangle-middle,
.middle-rectangle {
  position: relative;
}

.introduction h2 {
  margin-top: 0; /* Remove any default margin */
  margin-bottom: 60px; /* Add space between title and rectangles */
  color: #ffffff; /* Making sure the text is visible on dark background */
  align-self: flex-start;
  margin-left: 5%; /* Match the tulisan margin */
}

.intro-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

.intro-rectangles-container {
  left: -20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  z-index: 2;
  width: 100%;
  margin-bottom: 60px;
}

.intro-rectangle-middle {
  width: 1550px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 22%;
  transform: translateY(-50%);
  z-index: 1;
  margin-bottom: 60px;
}

.intro-rectangle {
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-height: 220px; /* Significantly reduced from 300px */
  display: flex;
  flex-direction: column;
}

.intro-rectangle:hover {
  transform: translateY(-5px);
}

.intro-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-wrapper {
  justify-content: space-around !important;
  padding: 5px 0;
}

.stat-item {
  text-align: center;
  margin: 5px 0;
}

.stat-number {
  font-size: 1.3em;
  font-weight: bold;
  color: #1a5fa3;
  display: inline-block;
}

.stat-unit {
  font-size: 0.8em;
  color: #1a5fa3;
  margin-left: 2px;
}

.stat-label {
  display: block;
  margin-top: 1px;
  font-size: 0.8em;
  color: #666;
}

.rectangle-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.intro-text-container {
  flex: 1;
}

.intro-title {
  font-size: 1em;
  margin-bottom: 4px;
}

.rectangle-text {
  font-size: 0.8em;
  line-height: 1.2;
}

.feature-list {
  font-size: 0.8em;
  gap: 2px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

.feature-list i {
  color: #1a5fa3;
  font-size: 12px; /* Reduced icon size */
}

.highlight {
  background: linear-gradient(120deg, #1a5fa3 0%, #2980b9 100%);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  font-size: 14px; /* Reduced font size */
}

.animate-check {
  color: #1a5fa3;
  font-size: 1.2em;
  margin-right: 15px;
}

.completed {
  color: #28a745; /* Green color after animation */
}

.intro-2 {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#neuronAnimation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.intro-2-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.middle-rectangle {
  width: 1141px;
  height: 335px;
  background-color: #ffffff;
  border-color: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -29px;
  z-index: 2;
  top: 80%;
  box-shadow: 0 2px 4px rgba(0.3, 0.3, 0.3, 0.3);
}

.tulisan {
  text-align: left;
  align-self: flex-start;
  margin-left: 5%;
}

.tulisan h2 {
  margin-top: 20px;
  margin-bottom: 60px;
  color: #ffffff;
  margin-left: 0;
  font-size: 5rem; /* Much larger font size */
}

/* Keep other styles consistent */
.introduction > h2 {
  align-self: flex-start;
  margin-left: 5%;
  font-size: 2.5rem; /* Match the tulisan h2 size */
}

.learn-more-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: #1a5fa3;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: background-color 0.3s ease;
  z-index: 100;
}

.learn-more-btn:hover {
  background-color: #1554a0;
}

.circles-container {
  display: flex;
  gap: 220px;
  justify-content: center;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}

.circle {
  width: 200px;
  height: 200px;
  background-color: #078187;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effects */
.circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: #f8f8f8;
}

.circle-img {
  width: 60%;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.circle:hover .circle-img {
  transform: scale(1.1);
}

.circle-text {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  padding: 0 5px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-weight: bold;
}

.circle:hover .circle-text {
  color: #000;
  font-weight: 600;
}

.shape1 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  object-position: right;
  left: -20px;
  border-radius: 10px;
}

.shape2 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  left: -20px;
}

#counter {
  color: #078187;
  font-weight: bold;
  font-size: 40px; /* You can change this to any color you want */
}

#experienceCounter {
  color: #078187;
  font-weight: bold;
  font-size: 40px; /* You can change this to any color you want */
}

.shape3 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  object-position: center;
  left: -20px;
  border-radius: 10px;
}

.shape4 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 10px;
}

.shape6 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}

.shape5 {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 10px;
}

.icon-grid-container {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 100px;
  transform: translateX(-40px); /* Move entire grid left */
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* First row (8 boxes) */
.row-1 {
  margin-left: 40px; /* Adjusted margin */
  margin-right: 0px;
}

/* Second row (7 boxes) */
.row-2 {
  margin-left: 70px; /* Adjusted margin */
  margin-right: 50px;
}

/* Third row (5 boxes) */
.row-3 {
  margin-left: 80px; /* Adjusted margin */
  margin-right: 30px;
}

.icon-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin-top: 40px;
  margin-left: 30px;
  margin-right: 0;
  right: 50%;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.icon-box:hover img {
  transform: scale(1.1);
}

.bg-module {
  padding: 40px 20px;
  border-radius: 0 0 50px 50px;
  position: relative;
  z-index: 1;
  margin-top: -140px;
  margin-bottom: 300px;
}

.bg-module-img {
  width: 100%;
  height: auto;
}

.modul-container {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 90;
}

.modul-row {
  display: flex;
  justify-content: center;
  gap: 150px;
  margin-bottom: 30px;
  position: relative;
}

First row .modul-row:nth-child(1) {
  z-index: 101;
}

/* Second row */
.modul-row:nth-child(2) {
  z-index: 102;
}

/* Third row - highest z-index */
.modul-row:nth-child(3) {
  z-index: 103;
}

.modul-card {
  background-color: #b4d4d6;
  border-radius: 25px;
  padding: 30px;
  width: 1100px;
  min-height: 700px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Keep responsive adjustments */
@media (max-width: 1400px) {
  .icon-grid-container {
    padding: 0 50px;
    transform: translateX(-20px); /* Adjust for smaller screens */
  }
}

@media (max-width: 768px) {
  .icon-grid-container {
    padding: 0 20px;
    transform: translateX(0); /* Remove transform on mobile */
  }
}

.carousel-circle {
  width: 400px;
  height: 400px;
  background-color: #f5f5f5;
  border-radius: 50%;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.circle-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.circle-slide {
  min-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-circle {
  width: 400px;
  height: 400px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #7bcfd3; /* Lighter shade for better contrast with stroke */
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #017e84; /* Added stroke */
}

.dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #017e84;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.dot.active {
  transform: scale(1.4);
  background-color: transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid #017e84; /* Maintained stroke in active state */
}

.dot.active::before {
  transform: translateX(0);
  animation: fillDot 3s linear;
  box-shadow: 0 2px 4px rgba(1, 126, 132, 0.3);
}

@keyframes fillDot {
  0% {
    transform: translateX(-100%);
  }
  15% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.dot:hover {
  transform: scale(1.2);
  background-color: #7bcfd3; /* Updated hover color */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid #017e84; /* Maintained stroke in hover state */
}

.hosting-section {
  padding: 80px 30px;
  background-color: #f5f5f5;
}

.hosting-header {
  text-align: center;
  margin-bottom: 10px;
  bottom: 90%; /* Increased bottom percentage to move section higher */
  margin-top: -400px; /* Added negative margin to pull content up */
  position: relative; /* Added position relative to work with bottom property */
}

.hosting-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.hosting-header p {
  font-size: 1.2rem;
  color: #666;
}

.hosting-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hosting-tab {
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #e0e0e0;
  color: #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.hosting-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Click effect */
.hosting-tab:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Ripple effect on click */
.hosting-tab::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.hosting-tab:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}

/* Active state */
.hosting-tab.active {
  background-color: #ffc107;
  color: #333;
  transform: scale(1.05);
  font-weight: 500;
}

.hosting-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row; /* Ensure horizontal layout */
}

.hosting-card {
  background-color: #4a235a;
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  max-width: calc(33.333% - 20px); /* Set maximum width for each card */
  min-width: 300px; /* Ensure minimum width */
  color: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Adjust stagger animation for horizontal layout */
.hosting-card:nth-child(1) {
  transition-delay: 0.1s;
}

.hosting-card:nth-child(2) {
  transition-delay: 0.2s;
}

.hosting-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Maintain other styles */
.hosting-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.hosting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hosting-card:hover .card-inner {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hosting-card:hover img {
  transform: scale(1.1);
}

.hosting-card:hover h4 {
  color: #1a5fa3; /* Or your preferred highlight color */
}

/* Add responsive behavior */
@media (max-width: 968px) {
  .hosting-cards {
    flex-wrap: wrap;
  }

  .hosting-card {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .hosting-card {
    max-width: 100%;
  }
}

.connection-section {
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.connection-header {
  margin-bottom: 40px;
}

.connection-header h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.connection-header p {
  font-size: 1.1rem;
  color: #666;
}

.connection-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.connection-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 1px solid #e0e0e0; /* Add border */
  border-radius: 10px;
  margin-bottom: 20px; /* Add space between cards */
}

.card-inner {
  padding: 30px; /* Increased padding */
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex; /* Add flex display */
  align-items: center; /* Center items vertically */
  gap: 20px; /* Space between image and content */
}

/* Image container */
.connection-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 10px;
  background: #f5f5f5; /* Light background for icon */
  border-radius: 8px;
}

.connection-content {
  flex: 1;
}

.connection-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.connection-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Enhanced hover effects */
.connection-card:hover {
  transform: translateY(-5px);
  border-color: #1a5fa3; /* Border color change on hover */
}

.connection-card:hover .card-inner {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.connection-card:hover img {
  transform: scale(1.1);
  background: #e8f0f5; /* Lighter background on hover */
}

.connection-card:hover h4 {
  color: #1a5fa3;
}

/* Gradient overlay effect */
.connection-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 95, 163, 0.1),
    rgba(26, 95, 163, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.connection-card:hover:before {
  opacity: 1;
}

/* Animation for check icons */
.animate-check {
  color: #1a5fa3;
  animation: checkmark 2s ease-in-out infinite; /* Added infinite and increased duration */
}

@keyframes checkmark {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Make each check icon animate with a delay */
.rectangle-text2 i:nth-child(1) {
  animation-delay: 0.2s;
}
.rectangle-text2 i:nth-child(2) {
  animation-delay: 0.4s;
}
.rectangle-text2 i:nth-child(3) {
  animation-delay: 0.6s;
}
.rectangle-text2 i:nth-child(4) {
  animation-delay: 0.8s;
}
.rectangle-text2 i:nth-child(5) {
  animation-delay: 1s;
}

/* Remove the opacity 0 since we want them always visible */
.rectangle-text2 i {
  animation-fill-mode: none;
}

.solutions-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 80vw;
  max-width: 800px;
  z-index: 1000;
}

.has-submenu:hover .solutions-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.solution-item {
  padding: 5px;
}

.solution-item a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.9em;
}

.solution-item a:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #1a5fa3;
}

/* Add arrow indicator for solutions menu */
.has-submenu > a::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
}

/* Ensure the submenu stays above other content */
.solutions-submenu {
  z-index: 1000;
}

/* Add responsive adjustments */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(
      3,
      1fr
    ); /* 3 items per row on smaller screens */
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
  }
}

.product-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 80vw;
  max-width: 800px;
  z-index: 1000;
}

.has-submenu:hover .product-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.product-item {
  padding: 5px;
}

.product-item a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.9em;
}

.product-item a:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #1a5fa3;
}

/* First, make the parent menu item position relative */
.nav-item.has-submenu {
  position: relative;
}

.services-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 60vw;
  max-width: 600px;
  z-index: 1000;
}

.has-submenu:hover .services-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}

.service-item {
  padding: 5px;
}

.service-item a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  font-size: 0.9em;
  line-height: 1.4;
}

.service-item a:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #1a5fa3;
}

.solution-item.has-nested {
  position: relative;
  z-index: 1002;
}

.solution-item.has-nested > a::after {
  content: "▼";
  position: absolute;
  right: 10px;
  font-size: 0.8em;
}

.nested-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  z-index: 1003;
}

.solution-item.has-nested:hover {
  z-index: 1004;
}

.solution-item.has-nested:hover .nested-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure other solution items don't overlap */
.solution-item {
  position: relative;
  background-color: white;
}

/* Add higher z-index to hovered items */
.solution-item:hover {
  z-index: 1004;
}

/* Adjust the solutions grid to accommodate nested menus */
.solutions-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-selector {
  position: relative;
}

.language-selector > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
}

.language-selector i {
  font-size: 16px;
  color: #333;
}

.language-selector > a::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
}

.language-submenu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  z-index: 1003;
}

.language-selector:hover .language-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-option:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #1a5fa3;
}

/* Common styles for all dropdown arrows */
.has-submenu > a::after,
.solution-item.has-nested > a::after,
.language-selector > a::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotate arrows on hover */
.has-submenu:hover > a::after,
.solution-item.has-nested:hover > a::after,
.language-selector:hover > a::after {
  transform: rotate(180deg);
}

/* Ensure smooth transitions for all interactive elements */
.has-submenu > a,
.solution-item.has-nested > a,
.language-selector > a {
  transition: color 0.3s ease;
}

/* Keep existing hover states and transitions for submenus */
.submenu,
.nested-submenu,
.language-submenu {
  transition: all 0.3s ease;
}

.ready-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ready-section h2 {
  font-size: 40px;
  color: #14264e;
  margin-bottom: 20px;
}

.ready-section .highlight {
  color: #20b2aa;
}

.ready-section p {
  color: #14264e;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cycle-illustration {
  margin: 40px 0;
}

.cycle-illustration img {
  max-width: 100%;
  height: auto;
}

.demo-cta {
  margin-top: 40px;
}

.demo-cta h3 {
  color: #14264e;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e8f0f5;
  color: #14264e;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #14264e;
  color: white;
}

@media (max-width: 768px) {
  .intro-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .rectangle-img {
    width: 100px;
    margin-bottom: 15px;
  }

  .intro-rectangle {
    width: 90%; /* Responsive width for mobile */
  }
}
