@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    font-family: "Quicksand", sans-serif;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: black;
}


/* Image Grid */
.main-img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.side-img {
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Card */
.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 390px;
}

.enquiry-btn {
    background: #2f6fed;
    color: #fff;
    border-radius: 30px;
    padding: 10px;
    width: 100%;
    border: none;
}

/* Tabs */
.custom-tabs {
    background: #1e2a55;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 2px;
}

.custom-tabs button {
    margin-left: 5px;
    flex: 1;
    border: none;
    padding: 10px;
    color: #fff;
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-tabs button:hover {
    background-color: rgba(255, 255, 255, 0.418);
}

.custom-tabs button.active {
    background: white;
    color: #1e2a55;
}

.custom-tabs button.active:hover {
    color: #1e2a55;
}

/* Content Box */
.content-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.content-box h5 {
    font-size: 1.3rem;
}

#itinerary ul li {
    margin-bottom: 30px;
}

.content-box ul li h6 {
    font-size: 1.2rem;
    font-weight: 700;
}

.content-box ul li p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(61, 61, 61);
    line-height: 25px;
}

.content-box ul li p span {
    font-size: 1rem;
    font-weight: 700;
    color: black;
}

/* Modal styling */
.modal-content {
    border-radius: 15px;
    padding: 10px;
}

.modal-header {
    border: none;
}

.modal-title {
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.modal-body label{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

input,
textarea {
    border-radius: 10px !important;
    padding: 10px !important;
}

.submit-btn {
    background: #2f6fed;
    color: #fff;
    border-radius: 10px;
    padding: 8px 20px;
}