 body {
     font-family: 'Poppins', sans-serif;
 }

 /* NAVBAR */
 .navbar {
     background-color: #1f3b63;
     padding: 15px 0;
 }

 .navbar-brand {
     font-weight: 600;
     color: #fff;
 }

 .navbar-nav .nav-link {
     color: #fff;
     margin: 0 10px;
     font-weight: 500;
 }

 .navbar-nav .nav-link:hover {
     color: #ff7a00;
 }

 /* HERO */
 .hero {
     position: relative;
     height: 90vh;
     background: url('/asset/kornelis1.jpeg') center/cover no-repeat;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
 }

 .hero-content {
     position: relative;
     color: #fff;
     max-width: 700px;
     padding: 0 15px;
 }

 .hero h1 {
     font-weight: 600;
     font-size: 32px;
 }

 .hero p {
     font-size: 16px;
     margin: 15px 0;
 }

 .btn-orange {
     background-color: #ff7a00;
     color: #fff;
     padding: 12px 30px;
     border-radius: 10px;
     border: none;
     font-weight: 500;
 }

 .btn-orange:hover {
     background-color: #e66d00;
 }

 why-section {
     background-color: #e9ecef;
     padding: 60px 0;
 }

 .why-title {
     font-weight: bold;
     margin-bottom: 40px;
 }

 .icon-box {
     background-color: #ff7a00;
     width: 90px;
     height: 90px;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
 }

 .icon-box i {
     font-size: 40px;
     color: black;
 }

 .why-text {
     max-width: 250px;
     margin: auto;
     font-size: 14px;
     color: #333;
 }

 .gallery-section .about-img {
     transition: 0.4s ease;
 }

 .gallery-section .about-img:hover {
     transform: scale(1.08);
     filter: brightness(0.8);
 }

 .footer {
  background-color: #2b4a6b;
  color: #fff;
  padding: 50px 0 20px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer .contact i {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom a {
  margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .contact {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}
