@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 17px;
    overflow-x: hidden;
}

.h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

.h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.bg-light {
    background-color: #D3F2FF !important;
}

section {
    position: relative;
    padding: 80px 0;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.text-italic {
    font-style: italic;
}

.btn-primary {
    background-color: #C21B22;
    color: #fff;
    padding: 12px 20px;
    border: 1px solid #C21B22;
}

.btn-primary:hover {
    background-color: #1A2B48;
    color: #fff;
    transition: all 0.4s;
}

.btn-outline-light {
    border: 1px solid #000;
    color: #000;
    padding: 12px 20px;
}

.pre_header {
    background-color: #1A2B48;
    color: #fff;
    padding: 8px 0;
}

.pre_header .left_pre_header a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.pre_header .right_box a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: #ccc;
}

.img_logo {
    width: 120px;
}

.navbar-nav li {
    padding: 0 15px;
}

.navbar-nav li a {
    font-size: 17px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.navbar-nav li a:hover {
    color: #5191FA;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #5191FA;
}

.footer {
    padding: 80px 0;
}

.footer_heading {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer_menu {
    padding-left: 0;
}

.footer_menu li {
    list-style: none;
    padding: 5px 0;
}

.footer_menu li a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.footer_menu li a:hover {
    color: #5191FA;
    transition: all 0.4s;
    padding-left: 5px;
}

.contact_info a {
    color: #000;
    text-decoration: none;
}

.contact_info .social_incon a {
    margin-right: 10px;
    background-color: #C21B22;
    padding: 10px;
    border-radius: 50px;

}

.contact_info .social_incon a i {
    height: 20px;
    width: 25px;
    margin: auto;
    color: #fff;
}

.contact_info .social_incon a i::before {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_info .social_incon a:hover {
    transform: scale(1.2);
    transition: all 0.5s;
}

.copyright {
    background-color: #1A2B48;
    color: #fff;
    padding: 8px 0;
}

.copyright a {
    color: #C21B22;
    text-decoration: none;
}

/* home page style start  */
.hero_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.package_title {
    font-size: 25px;
}

.rounded {
    border-radius: 15px !important;
}

.bg_dark {
    background-color: #000;
}

.video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.entertainment_section p {
    color: #fff;
}

.video-wrapper video {
    width: 100%;
    /* height: auto; */
    display: block;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
}

.play-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.top_destination img {
    height: 400px;
    object-fit: cover;
}

.owl-carousel .owl-nav button.owl-next {
    background: #C21B22;
    margin: 5px;
    padding: 12px !important;
    color: #fff;
    font-size: 50px;
    display: inline-flex;
    height: 40px;
    width: 40px;
}

.owl-carousel .owl-nav button.owl-prev {
    background: #C21B22;
    margin: 5px;
    padding: 12px !important;
    color: #fff;
    font-size: 50px;
    display: inline-flex;
    height: 40px;
    width: 40px;
}

.owl-carousel .owl-nav span {
    display: flex;
    height: auto;
    width: 40px;
    align-items: center;
    justify-content: center;
}

.text-gradient {
    background: linear-gradient(90deg, #1A2B48, #C21B22) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(90deg, #1A2B48, #C21B22) !important;
}

.btn-gradient {
    background: linear-gradient(90deg, #1A2B48, #00c6ff);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.text-primary {
    color: #1A2B48 !important;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.membership-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    background: #fff;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    background: #00c6ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.badge.bg-gradient {
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.subscribe_section {
    background-color: #1A2B48;
}

.subscribe-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.subscribe-form input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
    color: #333;
}

.subscribe-form input::placeholder {
    color: #888;
}

.subscribe-form button {
    background-color: #C21B22;
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #C21B22;
}


/* home page style end  */

/* travel page style start  */
.serarch_container {
    background: url('../img/bg-travel.webp') center center no-repeat;
    background-size: cover;
    height: 500px;
}

.search-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
}

/* Tabs */
.search-tabs {
    margin-left: 15px;
    display: flex;
    justify-content: flex-start;
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.search-tabs button {
    border: none;
    margin: 0 10px;
    background: none;
    font-weight: 600;
    font-size: 20px;
    color: #555;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid #555;
    padding: 10px 30px;
    border-radius: 50px;
}

.search-tabs button.active {
    color: #1A2B48;
    background-color: #D3F2FF;
    border-color: #1A2B48;
}

.search-tabs button.active::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #1A2B48;
    border-radius: 50%;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Common inner box */
.search-form {
    background: #D3F2FF;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    display: none;
}

.search-form.active {
    display: block;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 45px;
}

.search-btn {
    background: #1A2B48;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.search-btn:hover {
    background: #1A2B48;
}

.trip-type label {
    margin-right: 20px;
    font-weight: 500;
    cursor: pointer;
}

.trip-type input {
    accent-color: #1A2B48;
}

.fare-type {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.fare-type label {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 20px;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
}

.fare-type input:checked+label {
    border-color: #1A2B48;
    color: #1A2B48;
    background: #fff1f2;
}

.non-stop {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Trip Type Buttons */
.btn-trip {
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 8px 25px;
    margin-right: 4px;
    transition: all 0.2s ease;
}

.btn-trip.active {
    background: #00a8e8;
    color: #fff;
    border-color: #00a8e8;
}

.btn-trip:hover {
    background: #00a8e8;
    color: #fff;
}

/* Cab Form Inputs */


#cabs input::placeholder {
    color: #444;
    opacity: 1;
}

#cabs label {
    color: #222;
}


/* travel page style end  */

/* about us page style start  */
.breadcrumb_section {
    background-color: #1A2B48;
    height: 300px;
    margin: auto;
    display: flex;
    align-items: center;
}

.breadcrumb_section a {
    color: #00a8e8;
    text-decoration: none;
}

/* about us page style end  */

/* package details page style start  */
.package_details_images {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.icon i {
    font-size: 40px;
    margin-right: 20px;
}

.points p {
    text-transform: capitalize;
}

.counter-btn {
    width: 30px;
    /* height: 30px; */
    font-size: 18px;
    padding: 0;
    text-align: center;
}

.error-msg {
    color: red;
    font-size: 12px;
}
.booking_card .h2{
    font-size: 30px;
    text-align: center;
}
.guest_input{
    width: 65% !important;
}
.description_tabs .tab-pane{
    padding: 30px;
    border-radius: 12px;
}
.description_tabs .nav-tabs{
    background-color: #1A2B48;
    padding: 10px;
}
.description_tabs .nav-tabs button{
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
}
.description_tabs h4{
    text-transform: uppercase;
}
.bg-primary{
    background-color: #1A2B48 !important;
}

/* package details page style end  */