/* Logo strip */
.logo-strip {
    background: transparent;
    font-size: 14px;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.logo-strip a {
    color: #ffca2c;
    text-decoration: none;
}

.logo-strip a:hover {
    text-decoration: underline;
}

.logo img {
    height: 130px;
}

/* Hero section */
.hero-section {
    position: relative;
    height: 55vh;
    background: url(../images/hero.jpg) center / cover no-repeat;
    color: #fff;
}

.hero-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-section .content {
    position: relative;
    z-index: 1;
}

/* Tour cards */
/* Tour card styling */
.tour-card {
border: 1px solid #ddd;
border-radius: 6px;
overflow: hidden;
background: #fff;
transition: 0.3s;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
}

/* Optional: Set a minimum or fixed height */
.tour-card {
min-height: 100%;
}

/* Hover effect */
.tour-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-card .card-body {
    padding: 15px;
}

.tour-card h5 {
font-size: 17px;
margin-bottom: 10px;
color: #233565;
font-weight: 700;
}

/* Enquiry button */
.enquire-btn {
    background: #233565;
    color: #fff;
    border: none;
    padding: 7px 15px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
}

.enquire-btn:hover {
    background: #ffca2c;
    color: #000;
}

/* Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.popup h4 {
    margin-bottom: 15px;
}

.popup .close-btn {
    position: absolute;
    top: 18px;
    right: 30px;
    font-size: 20px;
    cursor: pointer;
        color: #fff;
}

/* Form rows */
.form-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.form-row .form-group {
    flex: 1;
}

/* Footer strip */
.footer-strip {
    background: #233565;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
    }

    .hero-section {
        height: 70vh;
    }
    .contact-info.d-flex.gap-4 {
    display: block !important;
}
}

.row.g-4 {
margin-bottom: 25px;
}

.card-body i {
color: #038b00;
}
.card-body p {
margin-bottom: 8px;
}
h2.text-center.my-4 {
    text-transform: uppercase;
    font-weight: 700;
    color: #21325f;
}
label {
    display: inline-block;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 2px;
}
.popup h4 {
    margin-bottom: 5px;
    text-align: center;
    background-color: #21325f;
    padding: 5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
}
div#ui-datepicker-div {
    position: absolute !important;
}

input#from_date {
    width: 100%;
}
/* .gap-4 {
    gap: 0.5rem !important;
} */

@media (max-width: 768px) {
    .logo img {
        height: 130px;
    }
}

button.btn.btn-warning {
    width: 100%;
}