/* Style for the navbar */
.navbar {
    background-color: #ffffff; /* Set navbar background to white */
    padding: 10px 20px; /* Add padding for spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo, menu, and language buttons */
}

/* Style for the brand logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 120px; /* Logo size */
    height: auto; /* Ensure proportional scaling */
}

/* Style for the navbar menu items */
.navbar-nav {
    flex-grow: 1;
    justify-content: center; /* Center the menu items */
    display: flex;
}

.navbar-nav .nav-item {
    margin: 0 15px; /* Add space between menu items */
}

.navbar-nav .nav-link {
    color: #0068ff; /* Blue text color */
    font-size: 1.2rem; /* Larger font size */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for navbar links */
.navbar-nav .nav-link:hover {
    color: #004080; /* Slightly darker blue on hover */
}

/* Active state for selected link */
.navbar-nav .nav-link.active {
    color: #ffffff; /* White text when active */
    background-color: #0068ff; /* Blue background for active item */
    border-radius: 5px; /* Rounded corners for active item */
}

/* Style for the language buttons */
.btn-outline-primary {
    color: #0068ff; /* Blue text color */
    border-color: #0068ff; /* Blue border */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
    margin-left: 15px; /* Add spacing between the buttons */
}

.btn-outline-primary:hover {
    background-color: #0068ff; /* Blue background on hover */
    color: #ffffff; /* White text on hover */
}

/* Mobile responsiveness adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 90px; /* Smaller logo on mobile */
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav li {
        margin-right: 0; /* Remove margin for vertical stacking */
    }
}

/* Reduce the height of the carousel images */
.carousel-inner img {
    max-height: 500px; /* Adjust this value to your preferred height */
    width: 100%; /* Maintain the full width */
    object-fit: cover; /* Ensures the image fills the area without distortion */
}

/* Center the caption text vertically and horizontally */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the element */
    text-align: center; /* Center the text */
    z-index: 10; /* Ensure the caption stays on top */
}

/* Style for the caption box */
.caption-box {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    padding: 20px; /* Add padding inside the box */
    border-radius: 10px; /* Rounded corners for a smoother look */
    display: inline-block; /* Box size adjusts based on content */
}

/* Styling for the heading */
.carousel-caption h2 {
    color: #fff; /* White text */
    font-size: 2.5rem; /* Larger font for the main heading */
    font-weight: bold; /* Make the heading bold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
    margin-bottom: 10px; /* Add spacing below the heading */
}

/* Styling for the paragraph text */
.carousel-caption p {
    color: #fff; /* White text */
    font-size: 1.25rem; /* Slightly larger font for readability */
    font-style: italic; /* Italic for a softer look */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Light shadow for better contrast */
    margin: 0; /* Remove margin for tighter alignment */
}

/* Text styling inside the caption box */
.carousel-caption h2, .carousel-caption p {
    color: #ffffff; /* White text color */
    margin: 0; /* Remove default margins */
    text-align: center; /* Center the text */
}

/* Adjust font sizes for smaller screens */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 2rem; /* Smaller heading for mobile */
    }

    .carousel-caption p {
        font-size: 1rem; /* Smaller text for mobile */
    }
}

#quality-assurance {
    background-color: #ffffff; /* White background */
    padding: 40px 0; /* Inner padding */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    max-width: 80%; /* Restrict section width */
    margin: 60px auto; /* Increase margin to add space between carousel and section */
}

.quality-box h3 {
    font-size: 3.5rem; /* Slightly smaller font size */
    font-weight: bold;
    color: #0068ff; /* Blue text */
    text-shadow: none; /* Remove shadow since the background is now white */
}

.quality-box p {
    font-size: 1.2rem;
    color: #0068ff; /* Blue text */
}

@media (max-width: 768px) {
    .quality-box h3 {
        font-size: 2.5rem; /* Adjust the size for mobile screens */
    }

    .quality-box p {
        font-size: 1rem;
    }
}

/* Styling for the partners section */
#partners {
  background-color: #f0f0f0; /* Background abu-abu muda */
  padding: 40px 0;
}

#partners h2 {
  color: #0068ff; /* Warna teks biru */
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center; /* Teks di tengah */
}

.partner-logo {
  width: 300px;
  height: 250px;
  object-fit: contain; /* Ukuran logo tanpa distorsi */
  display: block;
  margin: 0 auto 10px;
  padding: 10px; /* Padding di sekitar logo */
  border: 1px solid #ddd; /* Border abu-abu */
  background-color: #fff; /* Background putih di sekitar logo */
}

.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Adjust this to move it up or down */
    right: 20px; /* Adjust this to move it left or right */
    z-index: 1000; /* Make sure it appears on top */
    cursor: pointer;
}

.whatsapp-float img {
    width: 60px; /* Size of the WhatsApp icon */
    height: 60px;
    border-radius: 50%; /* Make it round if desired */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Optional: Add a shadow for effect */
}

.whatsapp-float:hover img {
    transform: scale(1.1); /* Slightly enlarge on hover */
    transition: transform 0.3s ease;
}

*, *:before, *:after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%;
  }
  
  body {
    font-family: acumin-pro, system-ui, sans-serif;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-size: 14px;
    background-color: #f4f4f4;
    align-items: start;
    min-height: 100vh;
}

*, *:before, *:after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%;
  }
  
  body {
    font-family: acumin-pro, system-ui, sans-serif;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-size: 14px;
    background-color: #f4f4f4;
    align-items: start;
    min-height: 100vh;
  }
  
  ul {
    margin: 0px;
    padding: 0px;
}

#about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}

.about-image {
  flex: 1;
  margin-right: 20px; /* Menambahkan jarak antara gambar dan teks */
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.about-content .btn {
  background-color: #0068ff;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  text-decoration: none;
}


#footer {
    padding: 40px 0;
  }
  
  .company-info p {
    color: #ffffff;
    font-size: 16px;
  }
  
  .menu-link h4,
  .contact-info h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .menu-link ul li,
  .contact-info ul li {
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .menu-link ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .menu-link ul li a:hover {
    text-decoration: underline;
  }
  
  .contact-info ul {
    padding: 0;
    list-style-type: none;
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: center; /* Aligns the icon and text vertically */
    margin-bottom: 15px; /* Adds space between each item */
  }
  
  .contact-info .info-item img.icon {
    width: 24px; /* Adjust the size of the icons */
    margin-right: 10px; /* Adds space between the image and the text */
  }
  
  .contact-info .info-item span {
    font-size: 16px;
    color: #ffffff;
  }
  
  
  #copy-right {
    background-color: #0a2e5a;
    padding: 10px 0;
    color: #ffffff;
    text-align: center;
  }
  
  #copy-right a {
    color: #ffffff;
    text-decoration: underline;
  }

  #about {
    padding: 60px 0;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .about-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .about-content .btn {
    background-color: #ff5e14;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    text-decoration: none;
  }
  
  .about-content .btn:hover {
    background-color: #e94e00;
    color: #fff;
  }
  
  