/* Google Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #4095a9
;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .nav-link {
  color: #4095a9;
  position: relative;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 1.rem;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #4095a9;
  transition: width 0.3s ease-in-out;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: semi-bold;
  color: #4095a9;
}

.navbar-brand:hover {
  color: #4095a9;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  border-radius: 100%;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f8f9fa;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: #555;
}

.hero .btn-primary {
  background-color: #4095a9;
  border-color: #4095a9;
}

@media (max-width: 576px) {
  #hero {
    padding-top: 120px;
  }
}

.hero-bg {
  background: url('assets/img/Banner_1.png') center center / cover no-repeat;
}


/* Buttons */
.btn-primary {
  background: #4095a9;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #4095a9;
}

.btn-outline-primary {
  border: 2px solid #4095a9;
  color: #4095a9;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #4095a9;
  color: #fff;
}

/* Section Styling */
section {
  padding: 5rem 1rem;
}

.section-title {
  font-weight: 700;
  color: #4095a9;
  margin-bottom: 2rem;
}

.infographic-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.infographic-card:hover {
  transform: translateY(-5px);
}

.infographic-card img {
  background: #e6f2ff;
  padding: 1rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.infographic-card:hover img {
  transform: scale(1.1);
}

.infographic-card p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 1rem;
}

.product-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card h5 {
  color: #4095a9;
}

.product-card p {
  color: #555;
  font-size: 0.95rem;
}

.card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.section-title.text-start {
  text-align: left;
}

.benefit-item img {
  background-color: #f1f5ff;
  padding: 10px;
  border-radius: 12px;
}

.benefit-item h6 {
  font-size: 1rem;
  color: #1a1a1a;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #555;
}

.ilustration-container img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  transform: scale(150%);
}

/* Clients Section */

.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* Atur sesuai kebutuhan */
}

.clients .swiper-slide img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.client-logo {
  width: 120px; /* atau sesuaikan dengan logo terbesar */
  height: 60px; /* sesuaikan juga */
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Testimonial Section */
#testimonial {
  background-color: #f8f9fa;
}

.carousel-item {
  min-height: 200px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* Contact Section */
#contact {
  background: #f8f9fa;
  padding: 5rem 0;
}

#contact .section-title {
  color: #4095a9;
  font-weight: 700;
}

#contact .card {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#contact .card-title {
  color: #4095a9;
  font-weight: 600;
  font-size: 1.25rem;
}

#contact .card-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
}

#contact .btn-outline-primary,
#contact .btn-outline-success {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#contact .btn-outline-primary:hover,
#contact .btn-outline-success:hover {
  color: #fff;
}

#contact .btn-outline-primary:hover {
  background: #4095a9;
  border-color: #4095a9;
}

#contact .btn-outline-success:hover {
  background: #25D366;
  border-color: #25D366;
}

#contact img {
  height: 200px;
  width: fit-content;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Footer */
footer {
  background: #4095a9;
  color: #fff;
  padding: 2rem 0;
  text-align: left;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

footer .logo img {
  width: 50px;
  padding: 0.5rem;
  height: 50px;
  color: #fff;
  filter: brightness (0) invert(1);
}

footer .logo h1 {
  font-size: 2rem;
  color: #4095a9;
  margin-bottom: 3px;
}

footer .logo p {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3px;
}

footer .social-icons img {
  height: 32px;
  transition: color 0.3s ease;
}

footer .social-icons img:hover {
  filter: invert(0.5);
  color: #4095a9;
  transform: scale(1.1);
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #25D366;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #25D366;
}

.whatsapp-btn img {
  filter: invert(0);
  transition: filter 0.3s ease;
}

.whatsapp-btn:hover img {
  filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
