/* WhatsApp Floating Button */  
.text-muted {
    text-align: justify;
}

.coming-soon {
    padding: 50px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Jarak dari bawah */
    right: 20px; /* Jarak dari kanan */
    z-index: 1000; /* Agar di atas elemen lain */
    width: 60px; /* Ukuran tombol */
    height: 60px; /* Ukuran tombol */
    background-color: #25d366; /* Warna hijau WhatsApp */
    border-radius: 50%; /* Membuat tombol berbentuk bulat */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Memberikan bayangan */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efek hover */
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1); /* Sedikit membesar saat dihover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Tambah bayangan saat hover */
  }
  
  .whatsapp-icon {
    width: 35px; /* Ukuran logo */
    height: 35px; /* Ukuran logo */
    object-fit: cover; /* Menjaga proporsi logo */
  }
  
  /* Tooltip Styling */
  .whatsapp-float::after {
    content: attr(data-tooltip); /* Mengambil teks dari atribut data-tooltip */
    position: absolute;
    left: -150px; /* Posisikan tooltip di kiri tombol */
    top: 50%; /* Posisikan secara vertikal di tengah */
    transform: translateY(-50%); /* Sesuaikan posisinya */
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap; /* Cegah teks menjadi dua baris */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  /* Tampilkan tooltip saat hover */
  .whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .car-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600; /* Bright color for visibility */
    margin: 8px 0;
  }
/* Google Fonts */
body{
    background-color: #231F20; /* Black Background */
    color: #EAEAEA; /* White Text */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    
}

/* Tambahkan padding untuk menghindari navbar tumpang tindih */
body {
    padding-top: 100px; /* Sesuaikan dengan tinggi navbar */
}

h5, p{
    color: #AD974F; /* White Text */
}

h1{
    color: #FFD700; /* White Text */
}

h2{
    color: #FFD700; /* White Text */
}

h4{
    color: #FFD700; /* White Text */
}


.dark-gold {color: #8E793E}
.light-gold {color: #AD974F}
.intellectual-grey {color: #231F20}
.light-grey {color: #EAEAEA}




/* Navbar Background */
.bg-black {
    background-color: #EAEAEA; /* Black Background */
}

/* Navbar Links */
.navbar-dark .navbar-nav .nav-link {
    color: #AD974F; /* Light Gold for Links */
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #FFD700; /* Bright Gold on Hover */
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #8E793E; /* Primary Gold for Active Links */
}

/* Logo */
.navbar-brand {
    color: #FFD700; /* Bright Gold for Logo Text */
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 70px; /* Adjust logo size */
    width: auto;
}

/* Mobile Menu Button */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28%255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Gold icon */
}

/* For Mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }
}


/* Navbar */
.navbar {
    background-color: #231F20; /* Black Navbar */
    border-bottom: 2px solid #D4AF37; /* Gold Border */
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
    padding: 1rem 1rem; /* Padding awal (besar) */
}

.navbar .nav-link {
    color: #F5CC74; /* Light Gold Text */
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #FFD700; /* Bright Gold on Hover */
}

.navbar-brand {
    font-size: 1.75rem;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

/* Saat halaman di-scroll ke bawah */
.navbar.scrolled {
    padding: 0.5rem 1rem; /* Padding lebih kecil */
    background-color: rgba(0, 0, 0, 0.9); /* Tambahkan warna background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
}

.navbar.scrolled .navbar-brand {
    font-size: 1.2rem; /* Ukuran font logo mengecil saat scroll */
}

/* Buttons */
.btn-primary {
    background-color: #D4AF37; /* Gold Button */
    color: #000000; /* Black Text */
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #C5A46D; /* Muted Gold on Hover */
    color: #FFFFFF; /* White Text */
}

/* Tabs */
.nav-tabs .nav-link {
    background-color: #231F20; /* Black Tab Background */
    color: #F5CC74; /* Light Gold Text */
    border: 1px solid #D4AF37; /* Gold Border */
}

.nav-tabs .nav-link.active {
    background-color: #D4AF37; /* Gold Active Tab */
    color: #231F20; /* Black Text */
}

/* Style untuk section Explore Indonesia */
.explore-section {
    background-image: url("images/Background/indonesia-1920-x-1080-background-fn3t7otb0p53rqae.jpg"); /* Ganti dengan URL gambar Anda */
    background-size: cover; /* Gambar akan menutupi seluruh area */
    background-position: center; /* Pusatkan gambar */
    background-attachment: fixed; /* Gambar tetap saat scrolling (parallax) */
    color: white; /* Teks berwarna putih untuk kontras */
    padding: 5rem 0; /* Tambahkan ruang atas dan bawah */
    position: relative; /* Untuk overlay */
}

/* Overlay transparan untuk memberikan kontras */
.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Konten di dalam section */
.explore-section .container {
    position: relative;
    z-index: 2; /* Letakkan konten di atas overlay */
}

/* Tombol */
.explore-section .btn {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

/* Portrait Container */
.portrait-img {
    height: 450px; /* Tinggi tetap */
    width: 100%; /* Lebar penuh */
    position: relative;
    overflow: hidden; /* Sembunyikan bagian gambar yang keluar */
}

/* Gambar Landscape Menjadi Portrait */
.portrait-img img {
    width: 100%; /* Sesuaikan dengan lebar */
    height: 100%; /* Sesuaikan dengan tinggi */
    object-fit: cover; /* Crop gambar agar sesuai dengan container */
    object-position: center; /* Pusatkan gambar */
}

/* Overlay Effect */
.portrait-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Transparansi hitam */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portrait-img .overlay h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
}

.portrait-img .overlay p {
    font-size: 1rem;
    margin-top: 10px;
}

.portrait-img:hover .overlay {
    opacity: 1; /* Overlay muncul saat hover */
}

/* About Section Styling */
#about-section {
    background-color: #f9f9f9; /* Light background for contrast */
    
}

#about-section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#about-section h1 {
    color: #333333; /* Darker color for headline */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

#about-section .lead {
    font-weight: 500;
    color: #555555;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}



#about-section .text-muted {
    color: #6c757d; /* Slightly muted text color */
}

#about-section img {
    border-radius: 10px; /* Rounded corners for image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for image */
}

#about-section hr {
    margin: 0; /* Remove extra margin from horizontal rule */
}

/* Ferry Section Styling */
#Ferry-section {
    background-color: #f9f9f9; /* Light background for contrast */
}

#Ferry-section h1 {
    color: #333333; /* Darker color for headline */
}

#Ferry-section .lead {
    font-weight: 500;
    color: #555555;
}

#Ferry-section .text-muted {
    color: #6c757d; /* Slightly muted text color */
}

#Ferry-section img {
    border-radius: 10px; /* Rounded corners for image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for image */
}

#Ferry-section hr {
    margin: 0; /* Remove extra margin from horizontal rule */
}


/* Layanan Section */
.services-section {
    background-image: url("images/Background/indonesia-1920-x-1080-background-fn3t7otb0p53rqae.jpg"); /* Ganti dengan URL gambar Anda */
    background-size: cover; /* Gambar akan menutupi seluruh area */
    background-position: center; /* Pusatkan gambar */
    color: white; /* Teks berwarna putih untuk kontras */
    padding: 2rem 0; /* Tambahkan ruang atas dan bawah */
    position: relative; /* Untuk overlay */
}

.services-section h2 {
    font-weight: 600;
    font-size: 2rem;
    color: #333;
}

.service-box {
    background: white;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-box h5 {
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
}

.service-box p {
    color: #666;
}

.service-box:hover {
    transform: scale(1.05);
}

/* Call-to-Action Section */
.call-to-action {
    background: url('images/Foto tempat wisata/Join us.png') no-repeat center center/cover; /* Ganti 'your-image-path.jpg' dengan path gambar Anda */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay warna hitam transparan */
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    color: #fff; /* Teks putih */
  }
  
  .cta-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #ff0000; /* Warna tombol merah */
    color: #fff; /* Teks putih */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff6666; /* Warna tombol saat hover */
  }
  
  
/* Gallery Section */
#gallery {
    background-color: #FFFFFF; /* Black Background */
    color: #F5CC74; /* Light Gold Text */
}

#gallery h2 {
    color: #D4AF37; /* Gold Title */
    font-weight: 600;
    margin-bottom: 1rem;
}

#gallery p {
    color: #C5A46D; /* Muted Gold for Subtext */
}

#gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
    box-shadow: 0px 5px 15px rgba(212, 175, 55, 0.5); /* Gold shadow */
}

/* One Stop Service Section */
#one-stop-service {
    background-color: #231F20; /* Black Background */
    color: #FFFFFF; /* White Text */
}

#one-stop-service h2 {
    color: #D4AF37; /* Gold Title */
    font-weight: 600;
    margin-bottom: 1rem;
}

#one-stop-service p {
    color: #C5A46D; /* Muted Gold for Subtext */
}

/* Card Tour Package */
.cardtp {
  background: #fff7ed;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
}

.cardtp img {
  width: 300px;
  object-fit: cover;
}

.cardtp-content {
  padding: 30px;
  flex: 1;
}

.cardtp-content h2 {
  color: #c49a00;
}

.starstp {
  color: #f5c400;
  margin: 8px 0;
}

.cardtp-footer {
  margin-top: 20px;
  color: #f5c400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cardtp-footer button {
  background: #1f2326;
  color: #f5c400;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}


/* Card Styling */
.card {
    background-color: #231F20; /* Black Card Background */
    border: 8px solid #D4AF37; /* Gold Border */
    transition: transform 0.3s ease;
}

.card img{
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card-title {
    color: #FFD700; /* Bright Gold for Titles */
    font-weight: bold;
}

.card-text {
    color: #C5A46D; /* Muted Gold for Text */
}

/* Card Styling 2*/
.car-card {
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .car-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .car-card-img-top {
    width: 100%;
    height: 300px;
    
    border-bottom: 1px solid #ddd;
  }
  
  .car-card-body {
    padding: 1rem;
  }
  
  .car-card-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .car-card-body ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .car-card-body ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .btn-warning {
    background-color: #f57c00;
    color: white;
    font-weight: bold;
  }
  
  .btn-warning:hover {
    background-color: #e06400;
  }
  
  /* Root Variables */
:root {
    --primary-color3: #ffcc00; /* Warna kuning utama */
    --secondary-color3: #231F20; /* Warna hitam latar belakang */
    --background-color3: #000000; /* Warna latar belakang tambahan */
    --text-color3: #ffffff; /* Warna teks putih */
    --heading-color3: #ffcc00; /* Warna judul kuning */
    --btn-hover-color3: #ffffff; /* Warna tombol hover putih */
    --btn-text-hover-color3: #000000; /* Warna teks tombol saat hover hitam */
  }
  
  /* PACKAGES */
.packages {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

  /* Section Styling */
  .tour-packages {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--secondary-color3); /* Warna latar belakang hitam */
    color: var(--text-color3); /* Warna teks putih */
  }

  .tour-packages2 {
    text-align: left;
    padding: 50px 20px;
    background-color: var(--secondary-color3); /* Warna latar belakang hitam */
    color: var(--text-color3); /* Warna teks putih */
  }
  
  .tour-packages h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color3); /* Judul tetap putih */
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 18px;
    color: var(--primary-color3); /* Warna subtitle kuning */
  }
  
  .divider {
    width: 50px;
    border: 2px solid var(--primary-color3); /* Divider kuning */
    margin: 10px auto 20px;
  }
  
  /* Tabs Styling */
  .destination-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .tab-button {
    background: transparent;
    border: 1px solid var(--primary-color3); /* Border kuning */
    color: var(--primary-color3); /* Teks kuning */
    border-radius: 15px;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tab-button:hover,
  .tab-button.active {
    background-color: var(--primary-color3); /* Latar kuning saat hover/aktif */
    color: var(--btn-text-hover-color3); /* Teks hitam saat hover/aktif */
  }
 
  /* Package Details Styling */
  .package-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
  
  .images {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .package-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1); /* Bayangan putih */
  }

  .package-image-large {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    grid-column: span 2; /* Membuat gambar ini memanjang ke bawah */
  }

  .details {
    max-width: 600px;
    text-align: left;
  }
  
  .details h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color3); /* Judul kuning */
  }
  
  .details p {
    font-size: 14px;
    color: var(--text-color3); /* Teks putih */
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color3); /* Tombol kuning */
    color: var(--btn-text-hover-color3); /* Teks hitam */
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .read-more:hover {
    background-color: var(--btn-hover-color3); /* Tombol putih saat hover */
    color: var(--btn-text-hover-color3); /* Teks hitam saat hover */
  }
  
    
  

/* Registered With Section */
#registered-with {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
}

#registered-with h2 {
    color: #D4AF37; /* Gold Title */
    font-weight: 600;
    margin-bottom: 1rem;
}

#registered-with p {
    color: #C5A46D; /* Muted Gold for Subtext */
}

/* Logo Styling */
#registered-with img {
    max-height: 100px; /* Set max height for logos */
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

#registered-with img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0px 5px 15px rgba(212, 175, 55, 0.5); /* Gold shadow */
    
}

/* Footer Section */
#footer {
    background-color: #212529; /* Dark Gray Background */
    color: #FFFFFF; /* White Text */
    font-size: 1.1rem; /* Larger text for better readability */
}

#footer h5 {
    color: #FFD700; /* Gold Text for Titles */
    font-weight: bold;
    font-size: 1.3rem; /* Slightly larger titles */
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#footer p {
    font-size: 1rem; /* Normal text size */
    line-height: 1.8; /* Add spacing between lines */
    color: #C0C0C0; /* Muted Text */
}

#footer ul {
    padding: 0;
    list-style-type: none;
}

#footer a {
    color: #C0C0C0; /* Muted Link Text */
    font-size: 1rem;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #FFD700; /* Gold on Hover */
    text-decoration: none; /* Remove underline */
}

/* Social Media Icons */
#footer i {
    color: #FFD700; /* Gold Icons */
    transition: transform 0.3s ease, color 0.3s ease;
    margin: 0 10px;
}

#footer i:hover {
    transform: scale(1.2); /* Slight zoom on hover */
    color: #FFFFFF; /* Change to white on hover */
}


/* Footer */
.footer {
    background-color: #231F20; /* Black Background */
    color: #C5A46D; /* Muted Gold Text */
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid #D4AF37; /* Gold Border */
}

.footer a {
    color: #FFD700; /* Bright Gold Links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFFFFF; /* White on Hover */
}

.footer p {
    margin: 0;
    font-size: 0.875rem;
}

/* HERO */
.hero {
  height: 300px;
  background: url("images/Foto tempat wisata/Barelang.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: #f5c400;
  font-size: 48px;
}

/* ===== STATS SECTION ===== */
.stats {
  background: #ffffff;
  padding: 120px 0;
}

.stats-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.stats-title span {
  font-weight: 800;
  color: #f5c400;
}

.stats-grid {
  row-gap: 50px;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stat-item.active {
  opacity: 1;
  transform: translateY(0);
}

.stat-item h3 {
  font-size: 52px;
  font-weight: 800;
  color: #000;
}

.stat-item p {
  font-size: 16px;
  color: #0b6db7;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats {
    padding: 80px 0;
  }

  .stats-title {
    font-size: 26px;
  }

  .stat-item h3 {
    font-size: 40px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f9f9f9;
  padding: 120px 0;
}

.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.testimonial-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #f5c400;
  display: block;
  margin-top: 8px;
}

.testimonial-subtitle {
  color: #6c757d;
  margin-top: 15px;
}

.testimonial-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  height: 100%;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -35px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 30px;
}

.testimonial-card .stars {
  color: #f5c400;
  margin: 15px 0;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-card span {
  font-size: 14px;
  color: #6c757d;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonial-title {
    font-size: 28px;
  }
}


/* Scroll Reveal Styling */
.reveal {
    opacity: 0;
    transform: translateY(100px); /* Geser ke bawah */
    transition: all 0.8s ease-out; /* Efek transisi */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Kembali ke posisi semula */
}

.service-box a img {
    transition: transform 0.3s ease-in-out;
}

.service-box a img:hover {
    transform: scale(1.05); /* Membesarkan sedikit gambar saat hover */
}

/* Services Hero Section */
.services-hero-section {
    background-image: url('images/Background/indonesia-1920-x-1080-background-fn3t7otb0p53rqae.jpg')!important;
    background-size: cover; /* Pastikan gambar menutupi area */
    background-position: center;
    background-color: rgba(0, 0, 128, 0.8); /* Tambahkan overlay warna biru */
    background-blend-mode: overlay; /* Gabungkan overlay dengan gambar */
    padding: 5rem 2rem;
    position: relative;
}

.services-hero-section .container {
    position: relative;
    z-index: 2;
}

.services-hero-section h1,
.services-hero-section h3 {
    margin-bottom: 1rem;
}

.services-hero-section h3 {
    color: #f4a100; /* Warna gold/orange untuk teks */
}

.services-hero-section .btn {
    border-radius: 50px;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    color: black;
    transition: all 0.3s ease-in-out;
}

.services-hero-section .btn:hover {
    background-color: white;
    color: #f4a100;
    transform: scale(1.05);
}

.services-hero-section p {
    color: #ddd;
    margin-bottom: 0;
}

/* Optional: Wave Divider (Orange Line) */
.services-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    background: linear-gradient(to right, #f4a100 50%, transparent 50%);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .services-hero-section {
        text-align: center;
    }

    .services-hero-section h1 {
        font-size: 2rem;
    }

    .services-hero-section h3 {
        font-size: 1.5rem;
    }

    .services-hero-section .btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }


}
