/* New wrapper for the header section with dynamic backgrounds */
.page-header-wrapper {
    width: 100%;
    min-height: 450px; /* Set a minimum height for your header area */
    background-size: cover;
    background-attachment: scroll; /* Changed to 'scroll' for header background */
    background-position: center;
    position: relative; /* Essential for positioning the overlay and hero content */
    display: flex; /* Use flexbox to stack navbar and hero content */
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top (navbar first) */
    overflow: hidden; /* Ensures background and other elements are contained */
}

/* Specific background images for the header wrapper */
.page-header-wrapper.home-bg {
    background-image: url('../images/indexbg.jpg');
}

.page-header-wrapper.island-hopping-bg {
    background-image: url('../images/islandbg.png');
}

.page-header-wrapper.inbound-bg {
    background-image: url('../images/inboundbg.png');
}

.page-header-wrapper.japan-bg {
    background-image: url('../images/japanbg.png');
}

.page-header-wrapper.korea-bg {
    background-image: url('../images/koreabg.png');
}

.page-header-wrapper.vietnam-bg {
    background-image: url('../images/vietnambg.png');
}

.page-header-wrapper.indonesia-bg {
    background-image: url('../images/indonesiabg.png');
}

.page-header-wrapper.umrah-bg {
    background-image: url('../images/umrahbg.png');
}

.page-header-wrapper.payment-bg {
    background-image: url('../images/paymentbg.png');
}


/* Navbar Customizations */
.navbar {
    background-color: transparent !important; /* Make navbar background transparent to see the image */
    position: relative; /* Ensure it's above the overlay */
    z-index: 3; /* Higher z-index for navbar */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #fff !important; /* Force white text for visibility on dark backgrounds */
}

/* Adjust toggler icon color for dark backgrounds */
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


/* Hero Section within the header wrapper */
.hero-section {
    padding: 50px 0;
    text-align: center;
    color: #fff; /* Ensure text is white */
    margin-top: auto; /* Pushes the hero section to the bottom of the flex container */
    position: relative; /* For z-index to work with overlay */
    z-index: 2; /* Above the overlay, below the navbar */
     align-items: center;       /* Vertically center */
    justify-content: center;   /* Horizontally center (optional) */
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    color: #dfe5ec;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Container for both floating buttons */
.floating-buttons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
}

/* Common button styles */
.floating-buttons a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 12px 10px;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    color: white;
    font-size: 14px;
}

/* Book Now style */
.floating-buttons .book-now {
    background-color: #007bff;
}

.floating-buttons .book-now:hover {
    background-color: #0056b3;
}

/* WhatsApp style */
.floating-buttons .whatsapp {
    background-color: #25D366;
}

.floating-buttons .whatsapp:hover {
    background-color: #128C7E;
}

/* --- Rest of your custom.css (no changes needed for these sections) --- */

/* Card Styles for Island Hopping Itineraries */
.itinerary-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.itinerary-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.itinerary-card .card-body {
    padding: 20px;
}

/* Form Styles */
.booking-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Payment Page Styles */
.payment-section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-section img.qr-code {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 5px;
}

.whatsapp-button {
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 20px;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    color: #fff;
    text-decoration: none;
}

.text-outline {
    text-shadow:
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}


/* Existing header classes should now refer to elements within the new wrapper */
.header .header-content { /* This might need to be adjusted or removed if using .hero-section */
    padding-top: 8rem;
    padding-bottom: 2.125rem;
    text-align: center;
}



.header .text-container { /* This might need to be adjusted or removed if using .hero-section */
    margin-bottom: 3rem;
}

.header h1 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.header .p-large {
    margin-bottom: 2rem;
    color: #dfe5ec;
}

.header .btn-solid-lg {
    margin-right: 0.5rem;
    margin-bottom: 1.25rem;
}

/* The basic-1 and related styles are likely for content sections below the header */
.basic-1 {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
}

.basic-1 .text-container {
    margin-bottom: 3rem;
}

.basic-1 .section-title {
    margin-bottom: 0.5rem;
}

.basic-1 h2 {
    margin-bottom: 1.375rem;
}

.basic-1 .testimonial-author {
    color: #484a46;
}

/* Hover Animation */
.basic-1 .image-container {
    overflow: hidden;
    border-radius: 0.25rem;
}

.basic-1 .image-container img {
    margin: 0;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.basic-1 .image-container:hover img {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

/* INDEX.PHP CSS */
.hero-section {
    background-size: cover;
    background-position: center;
    
}
.partner-logo {
    max-height: 80px;
    opacity: 0.8;
    transition: all 0.3s;
}
.partner-logo:hover {
    opacity: 1;
}
.client-logo {
    max-width: 100px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.client-logo:hover {
    filter: grayscale(0%);
}

.swiper-slide img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

/* SOCIAL MEDIA CSS */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 24px;
  border-radius: 50%;
  color: white;
  margin: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 2.5s ease-in-out infinite;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Brand Colors */
.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.tiktok { background-color: #000000; }
.social-icon.whatsapp { background-color: #25D366; }

/* BANK CSS */
.bank-icon {
    width: 90px;
    height: 50px;
    object-fit: contain;
    background-color: #fff;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
     margin-right: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

.bank-icon:hover {
    transform: scale(1.1);
}

.our-partner h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .partner-logo {
        max-height: 80px;
        object-fit: contain;
        transition: all 0.3s ease;
    }