body {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
  background-color: #001f3f;
}

.navbar-brand,
.nav-link {
  color: white !important;
}

.nav-link:hover {
  color: #00bfff !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #001f3f, #003366);
  color: white;
  padding: 100px 0;
}

.hero img {
  animation: pop-in 1s ease;
}

/* Section Titles */
.section-title {
  color: #001f3f;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Section Kontak */

#kontak h5 {
  color: #001f3f;
  font-weight: bold;
  margin-bottom: 20px;
}

#kontak p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

#kontak a {
  color: #00bfff;
  text-decoration: none;
}

#kontak a:hover {
  text-decoration: underline;
}


/* Footer */
footer {
  background-color: #001f3f;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

/* Icons */
.icon-service {
  font-size: 40px;
  color: #046281;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.icon-service:hover {
  transform: scale(1.1);
}

/* Buttons */
.btn-primary {
  background-color: #00bfff;
  border-color: #00bfff;
}

.btn-primary:hover {
  background-color: #0099cc;
  border-color: #0099cc;
}

/* Animasi */
@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* AOS Animation Setup */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
