/* 
   MYTRAVEL DEMAND PRIVATE LIMITED
   Premium DreamsTour Style Sheet (Bootstrap 5 Customizations)
*/

@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');

:root {
    --primary-color: #094571;
    --primary-rgb: 15, 43, 70;
    --accent-orange: #ff5a3c;
    --accent-orange-rgb: 255, 90, 60;
    --accent-cyan: #00a8cc;
    --accent-cyan-rgb: 0, 168, 204;
    --accent-gold: #f59e0b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #094571;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(15, 43, 70, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 43, 70, 0.1);
}

body {
     font-family: "Poppins", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    font-size:15px;
}

h1, h2, h3, h4, h5, h6, .display-font {
     font-family: "Poppins", sans-serif;
    font-weight: 700;
}

/* Custom Text & Gradients */
.text-orange {
    color: var(--accent-orange) !important;
}

.bg-orange {
    background-color: var(--accent-orange) !important;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar{
    padding:15px 0;
}

.navbar-nav .nav-link{
    font-weight:600;
    color:#222;
    padding:12px 18px;
}

.navbar-nav .nav-link:hover {
    color: #ff5a3c;
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #ff5a3c;
}
.dropdown-menu{
    border:0;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dropdown-item{
    padding:10px 18px;
}

/* Desktop Hover */

@media(min-width:992px){

.dropdown:hover>.dropdown-menu{
    display:block;
}

}

/* Mobile */

@media(max-width:991px){

.navbar-collapse{

    background:#fff;

    margin-top:15px;

    border-radius:12px;

    padding:15px;

}

.navbar-nav{

    width:100%;

}

.nav-item{

    width:100%;

}

.nav-link{

    padding:14px 0 !important;

}

.dropdown-menu{

    position:static !important;

    display:none;

    border:0;

    box-shadow:none;

    background:#f8f9fa;

    margin-left:15px;

}

.dropdown-menu.show{

    display:block;

}

}

ul.navbar-nav li {
    margin-right: 30px;
}
@media (max-width:991.98px){

    .dropdown-menu{
        display:none;
        position:static !important;
        float:none;
        width:100%;
        border:none;
        box-shadow:none;
        background:#f8f9fa;
        padding-left:15px;
        margin-top:0;
    }

    .dropdown-menu.show{
        display:block;
    }
}
/* Premium Hero Section with DreamsTour Styled Banner */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 43, 70, 0.7) 0%, rgba(15, 43, 70, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Floating DreamsTour Styled Multi-tab Search Box */
.search-widget-container {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.search-widget-container .nav-pills {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.search-widget-container .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    transition: var(--transition-smooth);
    background: transparent;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.search-widget-container .nav-link:hover {
    color: var(--primary-color);
    background: rgba(15, 43, 70, 0.05);
}

.search-widget-container .nav-link.active {
    background: rgba(255, 90, 60, 0.1) !important;
    color: var(--accent-orange) !important;
}

/* Inline Booking Form Layout */
.inline-booking-form {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
}

.form-item-wrap {
    flex: 1;
    min-width: 180px;
    padding: 12px 20px;
    position: relative;
    border-right: 1px solid var(--border-color);
}

@media (max-width: 991.98px) {
    .inline-booking-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border: none;
        padding: 0;
    }
    .form-item-wrap {
        border-right: none;
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: 12px;
    }
}

.form-item-wrap:last-child {
    border-right: none;
}

.form-item-wrap label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-item-wrap input,
.form-item-wrap select {
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0;
    font-size: 1.05rem;
    width: 100%;
}

.form-item-wrap input:focus,
.form-item-wrap select:focus {
    box-shadow: none;
    outline: none;
}

/* Location swap button */
.location-swap-btn {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--accent-orange);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.location-swap-btn:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 991.98px) {
    .location-swap-btn {
        display: none;
    }
}

/* DreamsTour Styled Buttons */
.btn-premium {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    font-weight: 600;
    font-size: 17px;
    padding: 20px 30px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    background: #e04426;
    border-color: #e04426;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.25);
}

.btn-premium-secondary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.btn-premium-secondary:hover {
    background: #091a2b;
    border-color: #091a2b;
    color: white;
    transform: translateY(-2px);
}

/* DreamsTour Styled Destination Categories */
.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(15, 43, 70, 0.9) 100%);
    z-index: 1;
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    color: white;
}

.destination-info h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card:hover img {
    transform: scale(1.1);
}

/* Tour Cards styling */
.tour-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.tour-card .card-img-top {
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .card-img-top {
    transform: scale(1.1);
}

.tour-card .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-white);
    color: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

/* Features icons styling */
.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255, 90, 60, 0.08);
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 90, 60, 0.2);
}

.glass-card:hover .feature-icon-box {
    background: var(--accent-orange);
    color: white;
    transform: rotateY(180deg);
}

/* Testimonial slider custom styling */
.testimonial-card {
    padding: 40px;
    min-height: 290px;
    border-radius: 24px;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.user-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-orange);
}

/* Footer Premium Design */
.footer-premium {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    border-top: 5px solid var(--accent-orange);
}

.footer-premium h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.25rem;
}

.footer-premium a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    margin-bottom: 14px;
}

.footer-premium a:hover {
    color: var(--accent-orange);
    transform: translateX(6px);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-smooth);
    color: white !important;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 15px rgba(255, 90, 60, 0.3);
}

/* Partners Branding */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition-smooth);
    max-height: 40px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Floating AI Chatbot */
.chatbot-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 90, 60, 0.35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition-smooth);
    border: none;
}

.chatbot-launcher:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 30px rgba(255, 90, 60, 0.5);
}

.chatbot-box {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 380px;
    height: 500px;
    border-radius: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(15, 43, 70, 0.15);
    z-index: 9998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.chatbot-header {
    background: var(--primary-color);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-light);
}

.chat-message {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    max-width: 80%;
    line-height: 1.4;
}

.chat-message.bot {
    background: var(--bg-white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
}

.chat-message.user {
    background: var(--accent-orange);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    box-shadow: 0 4px 10px rgba(255, 90, 60, 0.2);
}

.chatbot-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    background: var(--bg-white);
}

.chat-quick-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 10px;
    background: var(--bg-light);
}

.chat-hint-btn {
    background: var(--bg-white);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 90, 60, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-hint-btn:hover {
    background: rgba(255, 90, 60, 0.1);
    color: var(--accent-orange);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Section Padding & Title adjustment */
.section-padding {
    padding: 50px 0;
}


.section-title {
    font-size: 2.6rem;
    color: var(--primary-color);
}
.section-title::after {
    background: var(--accent-orange);
}

/* Stats counter */
.stat-box {
    border-right: 1px solid var(--border-color);
}
@media (max-width: 767.98px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.about-section{
    background:#f8fbff;
    overflow:hidden;
}

.about-tag{
    display:inline-block;
    padding:8px 18px;
    background:#fff0eb;
    color:#ff5a3c;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.about-title {
    font-size: 41px;
    font-weight: 700;
    color: #094571;
    line-height: 1.3;
}

.about-text{
    color:#666;
    line-height:1.9;
    font-size:15px;
}

.about-images{
    position:relative;
    padding-right:80px;
}

.about-main-img{
    border-radius:30px;
    width:100%;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.about-small-img{
    width:220px;
    position:absolute;
    right:0;
    bottom:-40px;
    border-radius:25px;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-card{
    position:absolute;
    top:30px;
    left:-30px;
    background:#ff5a3c;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(255,107,74,.35);
}

.experience-card h2{
    font-size:42px;
    font-weight:800;
    margin:0;
}

.feature-box {
    display: flex;
    gap: 9px;
    align-items: center;
    background: #fff;
    padding: 18px 12px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    width:55px;
    height:55px;
     color:#ff5a3c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.feature-box h6 {
    font-size: 16px;
    margin: 0;
    margin-bottom: 8px;
    font-weight: 600;
    color: #094571;
}

.feature-box p{
    margin:0;
    color:#777;
    font-size:14px;
}

.about-btn{
    background:#ff5a3c;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .about-title{
        font-size:34px;
    }

    .about-images{
        padding-right:0;
    }

    .about-small-img{
        display:none;
    }

    .experience-card{
        left:20px;
    }
}

.travel-experience-section{
    background:#ffffff;
}
.text-primary {
    --bs-text-opacity: 1;
    color: #094571!important;
}
.experience-tag{
    background:#fff3ee;
    color:#ff5a3c;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 28px!important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-next, .swiper-button-prev {
    width: 0px!important;}

.experience-title {
    font-size: 40px;
    font-weight: 700;
    color: #094571;
    line-height: 1.3;
}

.experience-text{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.experience-img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.experience-counter{
    background:#f8fbff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.experience-counter:hover{
    transform:translateY(-5px);
}

.experience-counter h3{
    color:#ff5a3c;
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.experience-counter span{
    color:#555;
    font-weight:500;
}

@media(max-width:991px){
    .experience-title{
        font-size:34px;
    }
}

.travel-cta-section{
    padding:100px 0;
}

.travel-cta-wrapper{
    background: linear-gradient(135deg,#0b2545,#133c73);
    padding:40px 50px;
    border-radius:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.travel-cta-wrapper::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.travel-cta-wrapper::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

.cta-tag{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.cta-title{
    font-size:48px;
    font-weight:800;
    margin:auto;
}

.cta-text{
    max-width:700px;
    margin:20px auto;
    color:#d8e4f0;
    line-height:1.8;
}

.cta-btn-primary{
    background:#ff7a00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.cta-btn-primary:hover{
    background:#ff8f1f;
    color:#fff;
}

.cta-btn-outline{
    border:2px solid rgba(255,255,255,0.3);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.cta-btn-outline:hover{
    background:#fff;
    color:#0b2545;
}

@media(max-width:768px){
    .cta-title{
        font-size:32px;
    }

    .cta-buttons .btn{
        display:block;
        width:100%;
        margin:10px 0 !important;
    }



.search-widget-container ul li {
    width: 48%;
}

}
.feature-box {
    align-items: flex-start!important;}

    .feature-box i {
    height: 22px;}

.about-hero-section {
    position: relative;
    padding: 80px 0 80px;
    background: url(../images/about-banner.jpg) center center / cover;
    overflow: hidden;
}

.about-hero-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(12,30,66,.65);
}

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

.about-tag{
    display:inline-block;
    background:#ff5a3c;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:0px;
}

.about-hero-section h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.about-hero-section p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 29px;
    max-width: 700px;
    margin: 0 auto 15px;
}

.about-breadcrumb{
    display:inline-flex;
    gap:12px;
    background:rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    padding:12px 25px;
    border-radius:50px;
}

.about-breadcrumb a,
.about-breadcrumb span{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

@media(max-width:991px){

    .about-hero-section{
        padding:140px 0 90px;
    }

    .about-hero-section h1{
        font-size:38px;
    }

    .about-hero-section p{
        font-size:16px;
        line-height:28px;
    }
}
.py-120 {
    padding: 50px 0;
}

.about-story-section{
    background:#fff;
}

.story-image-wrapper{
    position:relative;
    padding-right:70px;
}

.story-main-image{
    width:100%;
    border-radius:25px;
    display:block;
}

.story-small-image{
    position:absolute;
    width:220px;
    right:0;
    bottom:-40px;
    border-radius:20px;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.experience-badge{
    position:absolute;
    top:40px;
    left:-30px;
    background:#ff5a3c;
    color:#fff;
    width:130px;
    height:130px;
    border-radius:25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:2;
    box-shadow:0 15px 35px rgba(255,107,74,.35);
}

.experience-badge h3{
    font-size:42px;
    font-weight:700;
    margin:0;
}

.experience-badge span{
    font-size:14px;
    text-align:center;
}

.section-tag{
    color:#ff5a3c;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:#094571;
    margin:20px 0 25px;
    line-height:1.2;
}

.section-text {
    color: #666;
    line-height: 30px;
    font-size: 15px;
    margin-bottom: 5px;
}

.story-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.feature-item{
    background:#fff5f2;
    padding:10px 10px;
    border-radius:15px;
    font-weight:500;
    color:#094571;
}

.feature-item i{
    color:#ff5a3c;
    margin-right:10px;
}

@media(max-width:991px){

    .py-120{
        padding:80px 0;
    }

    .story-image-wrapper{
        padding-right:0;
        margin-bottom:60px;
    }

    .story-small-image{
        width:170px;
        right:10px;
        bottom:-20px;
    }

    .experience-badge{
        width:100px;
        height:100px;
        left:10px;
    }

    .section-title{
        font-size:34px;
    }

    .story-features{
        grid-template-columns:1fr;
    }
}

.why-choose-section{
    background:#f8f9fc;
}

.section-desc{
    color:#666;
    max-width:850px;
    margin:20px auto 0;
    line-height:30px;
}

.choose-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    transition: .3s;
    border: 1px solid #f1f1f1;
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.choose-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:20px;
    background:#fff3ef;
    color:#ff5a3c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.choose-card h4{
    color:#094571;
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

.choose-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.travel-stats-section{
    background:#fff;
}

.stat-box{
    text-align:center;
    padding:40px 20px;
    border-radius:25px;
    background:#fff;
    border:1px solid #f1f1f1;
    transition:.3s;
    height:100%;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h2{
    font-size:52px;
    font-weight:700;
    color:#ff5a3c;
    margin-bottom:12px;
}

.stat-box span{
    color:#666;
    font-size:16px;
    font-weight:500;
}

@media(max-width:991px){

    .stat-box{
        padding:30px 15px;
    }

    .stat-box h2{
        font-size:38px;
    }
}

.how-work-section{
    background:#f8f9fc;
}

.process-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    height:100%;
    border:1px solid #f1f1f1;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.process-number {
    width: 35px;
    height: 35px;
    margin: 0 auto 25px;
    background: #ff5a3c;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 700;
}

.process-card h4{
    font-size:24px;
    color:#094571;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.tour-detail-hero{
    position: relative;
    padding: 180px 0 130px;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center center/cover;
}

.tour-detail-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(8,22,48,.65);
}

.tour-detail-hero .container{
    position:relative;
    z-index:2;
}

.tour-breadcrumb{
    margin-bottom:25px;
}

.tour-breadcrumb a,
.tour-breadcrumb span{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    opacity:.9;
    margin:0 5px;
}

.tour-detail-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.tour-detail-hero p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:32px;
    max-width:750px;
    margin:0 auto 35px;
}

.tour-hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.tour-btn-primary{
    background:#ff5a3c;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
}

.tour-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
}

.tour-btn-primary:hover,
.tour-btn-outline:hover{
    color:#fff;
}

@media(max-width:991px){

    .tour-detail-hero{
        padding:130px 0 90px;
    }

    .tour-detail-hero h1{
        font-size:38px;
    }

    .tour-detail-hero p{
        font-size:16px;
        line-height:28px;
    }
}

.tour-about-images{
    position:relative;
    padding-right:50px;
}

.tour-main-img{
    width:100%;
    border-radius:30px;
    display:block;
}

.tour-experience-card{
    position:absolute;
    right:0;
    bottom:40px;
    background:#ff5a3c;
    color:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    min-width:180px;
}

.tour-experience-card h3{
    font-size:42px;
    margin:0;
    font-weight:700;
}

.tour-experience-card span{
    font-size:15px;
}

.tour-section-tag{
    color:#ff5a3c;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.tour-section-title{
    font-size:48px;
    color:#094571;
    font-weight:700;
    margin:20px 0 25px;
    line-height:1.2;
}

.tour-section-text{
    color:#666;
    line-height:30px;
    margin-bottom:18px;
}

.tour-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.tour-feature-item{
    background:#fff5f2;
    padding:18px 20px;
    border-radius:15px;
    font-weight:500;
    color:#094571;
}

.tour-feature-item i{
    color:#ff5a3c;
    margin-right:10px;
}

@media(max-width:991px){

    .py-120{
        padding:80px 0;
    }

    .tour-about-images{
        padding-right:0;
        margin-bottom:50px;
    }

    .tour-experience-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

    .tour-section-title{
        font-size:34px;
    }

    .tour-features{
        grid-template-columns:1fr;
    }
}

.tour-banner{
    position: relative;
    padding: 50px 0 50px;
    background: url('../images/ticket-booking/banner.jpg') center center/cover no-repeat;
}

.tour-banner::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(9, 25, 52, 0.65);
}

.tour-banner .container{
    position: relative;
    z-index: 2;
}

.banner-subtitle {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.tour-banner h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tour-banner p{
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 32px;
    max-width: 700px;
    margin: 0 auto 35px;
}

.tour-btn{
    display: inline-block;
    background: #ff5a3c;
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.tour-btn:hover{
    background: #ff5a35;
    color: #fff;
}

@media(max-width:991px){

    .tour-banner{
        padding: 140px 0 90px;
    }

    .tour-banner h1{
        font-size: 38px;
    }

       .tour-banner p {
        font-size: 16px;
        line-height: 1.3;
    }
}

.tour-about-image{
    position:relative;
}

.tour-about-image img{
    width:100%;
    border-radius:25px;
}

.tour-about-badge{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#ff5a3c;
    color:#fff;
    padding:25px 30px;
    border-radius:20px;
    text-align:center;
}

.tour-about-badge h3{
    font-size:40px;
    margin:0;
    font-weight:700;
}

.section-subtitle{
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}
h2{font-size:37px!important;}
.section-title{
    font-size:37px;
    font-weight:700;
    color:#094571;
    margin:20px 0;
    line-height:1.3;
}

.tour-about-section p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.tour-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.feature-item {
    background: #fff5f2;
    padding: 15px 10px;
    font-size: 15px;
    border-radius: 12px;
    font-weight: 500;
    color: #094571;
}

.feature-item i{
    color:#ff5a3c;
    margin-right:10px;
}
.py-100 {
    padding: 50px 0;
}
@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .tour-about-image{
        margin-bottom:40px;
    }

    .tour-about-badge{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

    .tour-features{
        grid-template-columns:1fr;
    }
}

.internationalTourSlider {
    padding-bottom: 60px;
}
.section-heading {
    max-width: 1130px;
    margin: auto;
    margin-bottom: 60px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#094571;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    line-height:30px;
}

.tour-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.tour-card:hover{
    transform:translateY(-10px);
}

.tour-image{
    position:relative;
}

.tour-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.tour-tag{
    position:absolute;
    top:20px;
    left:20px;
    background:#ff5a3c;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
}

.tour-content{
    padding:30px;
}

.tour-content h4{
    font-size:26px;
    color:#094571;
    margin-bottom:15px;
}

.tour-duration{
    color:#ff5a3c;
    font-weight:600;
    margin-bottom:15px;
}

.tour-content p{
    color:#666;
    line-height:28px;
}

.tour-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;
}

.tour-footer h5{
    color:#094571;
    font-size:28px;
    margin:0;
}

.tour-footer span{
    font-size:14px;
    color:#777;
}

.tour-view-btn{
    background:#094571;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
}

.theme-btn{
    background:#ff5a3c;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
}

.domesticTourSlider{
    padding-bottom: 60px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#d1d1d1;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ff5a3c;
}

.tour-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.tour-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.package-includes{
    background:#f8fafc;
}

.include-card{
    background:#fff;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:all .3s ease;
}

.include-card:hover{
    transform:translateY(-8px);
}

.include-card i{
    font-size:42px;
    color:#ff5a3c;
    margin-bottom:20px;
}

.include-card h5{
    font-size:18px;
    color:#094571;
    margin:0;
    line-height:28px;
    font-weight:600;
}

@media(max-width:767px){
    .include-card{
        padding:25px 15px;
    }

    .include-card i{
        font-size:34px;
    }

    .include-card h5{
        font-size:15px;
        line-height:24px;
    }
}

.why-choose-tour{
    background:#f8fafc;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    height:100%;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:#fff3ef;
    color:#ff5a3c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.why-card h4{
    font-size:24px;
    color:#094571;
    margin-bottom:15px;
    font-weight:600;
}

.why-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

@media(max-width:991px){
    .why-card{
        padding:30px 25px;
    }

    .why-card h4{
        font-size:22px;
    }
}


@media(min-width:768px) and (max-width:991px) {

 .search-widget-container .nav-item {
        width: 48%;
    }

    .search-widget-container .nav-link {
        width: 100% !important;
    }
}
.booking-process{
    background: #fff;
}

.process-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 5px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.process-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.process-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    font-weight: 700;
    color: rgba(255, 107, 74, .15);
}

.process-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #fff3ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i{
    font-size: 32px;
    color: #ff5a3c;
}

.process-card h4 {
    font-size: 20px;
    color: #094571;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #666;
    line-height: 22px;
    margin: 0;
}

@media(max-width:991px){
    .process-card{
        padding: 35px 20px;
    }

    .process-card h4{
        font-size: 20px;
    }
}



.tour-cta-section{
    position:relative;
    padding:50px 0;
    background:url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1920&q=80') center center/cover;
    overflow:hidden;
}

.tour-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #09416b;
}

.tour-cta-section .container{
    position:relative;
    z-index:2;
}

.cta-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}
.text-white-50 {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}
.tour-cta-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tour-cta-section p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:30px;
    max-width:700px;
    margin-bottom:0;
}

.cta-btn-primary {
    display: block;
    background: #ff5a3c;
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 18px;
    transition: .3s;
}

.cta-btn-primary:hover{
    background:#ff5733;
    color:#fff;
}

.cta-btn-outline{
    display:block;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.cta-btn-outline:hover{
    background:#fff;
    color:#094571;
}

@media(max-width:991px){

    .tour-cta-section{
        text-align:center;
        padding:70px 0;
    }

    .tour-cta-section h2{
        font-size:34px;
    }

    .tour-cta-section p{
        margin-bottom:35px;
    }
}


.ticket-banner{
    position:relative;
    padding:180px 0 120px;
    background:url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center center/cover;
}

.ticket-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(10,28,60,.7);
}

.ticket-banner .container{
    position:relative;
    z-index:2;
}


/*=========================================
 Ticket Booking About Section
==========================================*/

.ticket-about-sec {
    padding: 60px 0;
    background: #fff;
}

.ticket-about-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.ticket-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s ease;
}

.ticket-about-image:hover img{
    transform:scale(1.05);
}

.ticket-about-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#ff5a3c;
    margin-bottom:15px;
}

.ticket-about-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
    line-height:1.3;
    margin-bottom:25px;
}

.ticket-about-content p{
    font-size:16px;
    color:#666;
    line-height:30px;
    margin-bottom:18px;
}

.ticket-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 38px;
    background:#ff5a3c;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
    margin-top:10px;
}

.ticket-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .ticket-about-sec{
        padding:80px 0;
    }

    .ticket-about-image{
        margin-bottom:20px;
    }

    .ticket-about-image img{
        height:420px;
    }

    .ticket-about-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ticket-about-sec{
        padding:60px 0;
    }

    .ticket-about-title{
        font-size:28px;
    }

    .ticket-about-image img{
        height:300px;
    }

    .ticket-about-content p{
        font-size:15px;
        line-height:28px;
    }

    .ticket-about-btn{
        width:100%;
    }

}

/*=========================================
 Ticket Services Section
==========================================*/

.ticket-services-sec{
    padding:100px 0;
    background:#f8fafc;
}

.ticket-services-heading{
    max-width:800px;
    margin:0 auto 60px;
}

.ticket-services-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.ticket-services-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
    margin-bottom:20px;
}

.ticket-services-heading p{
    color:#666;
    line-height:30px;
}

.ticket-service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
        text-align: center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.ticket-service-card:hover{
    transform:translateY(-8px);
}

.ticket-service-icon{
    width:70px;
    height:70px;
    background:#fff3ef;
    color:#ff5a3c;
        margin: 0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.ticket-service-card h4{
    font-size:22px;
    color:#094571;
    margin-bottom:15px;
}

.ticket-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.ticket-services-note{
    text-align:center;
    margin-top:50px;
}

.ticket-services-note p {
    font-size: 17px;
    font-weight: 500;
    color: #094571;
    margin: 0;
}

@media(max-width:991px){

    .ticket-services-sec{
        padding:80px 0;
    }

    .ticket-services-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ticket-services-sec{
        padding:60px 0;
    }

    .ticket-services-title{
        font-size:28px;
    }

    .ticket-service-card{
        padding:25px;
    }

}
section {
    padding: 60px !important;
}
/*=========================================
 Ticket Booking Process
==========================================*/
h1 {
    font-size: 40px !important;
}
.ticket-booking-process-sec{
    padding:100px 0;
    background:#f8fafc;
}

.ticket-booking-process-heading {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.ticket-booking-process-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.ticket-booking-process-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.ticket-booking-process-heading p{
    color:#666;
}

.ticket-process-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.ticket-process-card:hover{
    transform:translateY(-8px);
}

.ticket-process-number{
    position:absolute;
    right:25px;
    top:20px;
    font-size:40px;
    font-weight:700;
    color:#eef2f7;
}

.ticket-process-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: #fff3ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ticket-process-icon i{
    font-size:28px;
    color:#ff5a3c;
}

.ticket-process-card h4{
    color:#094571;
    margin-bottom:15px;
    font-size:22px;
}

.ticket-process-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.ticket-process-note{
    max-width:900px;
    margin:50px auto 0;
    text-align:center;
}

.ticket-process-note p{
    font-size:17px;
    color:#094571;
    line-height:1.3;
    margin:0;
    font-weight:500;
}

@media(max-width:991px){

    .ticket-booking-process-sec{
        padding:80px 0;
    }

    .ticket-booking-process-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ticket-booking-process-sec{
        padding:60px 0;
    }

    .ticket-booking-process-title{
        font-size:28px;
    }

    .ticket-process-card{
        padding:25px;
    }

    .ticket-process-number{
        font-size:32px;
    }

}

/*=========================================
 Ticket Pricing Section
==========================================*/

.ticket-pricing-sec{
    padding:100px 0;
    background:#fff;
}

.ticket-pricing-heading{
    max-width:750px;
    margin:0 auto 60px;
}

.ticket-pricing-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.ticket-pricing-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
}

.ticket-pricing-content p{
    color:#666;
    line-height:25px;
    margin-bottom:20px;
}

.ticket-offer-box{
    background:#fff8f5;
    border:1px solid #ffe1d8;
    border-radius:20px;
    padding:40px;
}

.ticket-offer-box h4{
    font-size:26px;
    color:#094571;
    margin-bottom:25px;
}

.ticket-offer-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.ticket-offer-box li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#555;
    margin-bottom:18px;
    line-height: 22px;
}

.ticket-offer-box li:last-child{
    margin-bottom:0;
}

.ticket-offer-box i{
    color:#ff5a3c;
    margin-top:4px;
    font-size:18px;
}

@media(max-width:991px){

    .ticket-pricing-sec{
        padding:80px 0;
    }

    .ticket-pricing-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ticket-pricing-sec{
        padding:60px 0;
    }

    .ticket-pricing-title{
        font-size:28px;
    }

    .ticket-offer-box{
        padding:25px;
    }

}


/*=========================================
 Why Choose MYTRAVEL DEMAND
==========================================*/

.ticket-why-sec{
    padding:100px 0;
    background:#fff;
}

.ticket-why-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.ticket-why-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.ticket-why-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
}

.ticket-why-card{
    display:flex;
    align-items:flex-start;
    gap:25px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
    border:1px solid #edf1f7;
    transition:.3s;
}

.ticket-why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.ticket-why-icon{
    width:75px;
    min-width:75px;
    height:75px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ticket-why-icon i{
    color:#ff5a3c;
    font-size:30px;
}

.ticket-why-content h4{
    color:#094571;
    font-size:24px;
    margin-bottom:15px;
}

.ticket-why-content p{
    color:#666;
    line-height:30px;
    margin:0;
}

@media(max-width:991px){

    .ticket-why-sec{
        padding:80px 0;
    }

    .ticket-why-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .ticket-why-sec{
        padding:60px 0;
    }

    .ticket-why-title{
        font-size:28px;
    }

    .ticket-why-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .ticket-why-icon{
        margin:0 auto;
    }

}

/*=========================================
 Hotel Hero Banner
==========================================*/

.hotel-banner-sec{
    position: relative;
    padding: 220px 0 140px;
    background: url("../images/hotel/banner.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.hotel-banner-sec::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19,39,79,.72);
}

.hotel-banner-sec .container{
    position: relative;
    z-index: 2;
}

.hotel-banner-subtitle{
    display: inline-block;
    color: #ff5a3c;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hotel-banner-title{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hotel-banner-text{
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 32px;
    max-width: 760px;
    margin: 0 auto 35px;
}

.hotel-banner-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    background: #ff5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
}

.hotel-banner-btn:hover{
    background: #fff;
    color: #094571;
}

@media(max-width:991px){

    .hotel-banner-sec{
        padding: 180px 0 100px;
    }

    .hotel-banner-title{
        font-size: 46px;
    }

}

@media(max-width:767px){

    .hotel-banner-sec{
        padding: 150px 0 80px;
    }

    .hotel-banner-title{
        font-size: 34px;
    }

    .hotel-banner-text{
        font-size: 16px;
        line-height: 28px;
    }

    .hotel-banner-btn{
        width: 100%;
    }

}

/*=========================================
 Hotel About Section
==========================================*/

.hotel-about-sec{
    padding:100px 0;
    background:#fff;
}

.hotel-about-image{
    overflow:hidden;
    border-radius:24px;
}

.hotel-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s;
}

.hotel-about-image:hover img{
    transform:scale(1.05);
}

.hotel-about-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hotel-about-title{
    font-size:44px;
    font-weight:700;
    line-height:1.3;
    color:#094571;
    margin-bottom:25px;
}

.hotel-about-content p{
    color:#666;
    font-size:16px;
    line-height:30px;
    margin-bottom:20px;
}

.hotel-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    background:#ff5a3c;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hotel-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .hotel-about-sec{
        padding:80px 0;
    }

    .hotel-about-image{
        margin-bottom:30px;
    }

    .hotel-about-image img{
        height:420px;
    }

    .hotel-about-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .hotel-about-sec{
        padding:60px 0;
    }

    .hotel-about-title{
        font-size:28px;
    }

    .hotel-about-image img{
        height:300px;
    }

    .hotel-about-content p{
        line-height:28px;
    }

    .hotel-about-btn{
        width:100%;
    }

}

/*=========================================
 Hotel Services Section
==========================================*/

.hotel-services-sec{
    padding:100px 0;
    background:#f8fafc;
}

.hotel-services-heading {
    max-width: 900px;
    margin: 0 auto 60px;
}

.hotel-services-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hotel-services-title{
    font-size:44px;
    font-weight:700;
    color:#094571;
    margin-bottom:20px;
}

.hotel-services-heading p{
    color:#666;
    line-height:30px;
}

.hotel-service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
    border:1px solid #edf1f7;
    transition:.35s;
    text-align:center;
}

.hotel-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.hotel-service-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hotel-service-icon i{
    color:#ff5a3c;
    font-size:34px;
}

.hotel-service-card h4{
    color:#094571;
    font-size:24px;
    margin-bottom:15px;
}

.hotel-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.hotel-services-note{
    margin-top:50px;
    text-align:center;
}

.hotel-services-note p {
    color: #094571;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

@media(max-width:991px){

    .hotel-services-sec{
        padding:80px 0;
    }

    .hotel-services-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .hotel-services-sec{
        padding:60px 0;
    }

    .hotel-services-title{
        font-size:28px;
    }

    .hotel-service-card{
        padding:25px;
    }

}

.hotel-booking-steps-sec{
    padding:100px 0;
    background:#fff;
}

.hotel-booking-steps-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.hotel-booking-steps-subtitle{
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hotel-booking-steps-title{
    font-size:42px;
    color:#094571;
    margin:15px 0;
    font-weight:700;
}

.hotel-booking-steps-heading p{
    color:#666;
}

.hotel-step-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    border:1px solid #ececec;
    border-radius:16px;
    height:100%;
    transition:.3s;
}

.hotel-step-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.hotel-step-number{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#ff5a3c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.hotel-step-item h5{
    color:#094571;
    margin-bottom:8px;
    font-size:20px;
}

.hotel-step-item p{
    color:#666;
    margin:0;
    line-height:28px;
}

.hotel-step-note {
    max-width: 1150px;
    margin: 50px auto 0;
    text-align: center;
}

.hotel-step-note p {
    color: #094571;
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
}

@media(max-width:991px){
    .hotel-booking-steps-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .hotel-booking-steps-sec{
        padding:70px 0;
    }

    .hotel-booking-steps-title{
        font-size:28px;
    }

    .hotel-step-item{
        padding:20px;
    }
}

/*=========================================
 Why Choose Hotel Booking
==========================================*/

.hotel-why-sec{
    padding:100px 0;
    background:#f8fafc;
}

.hotel-why-head{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.hotel-why-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hotel-why-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
}

.hotel-why-card{
    display:flex;
    gap:25px;
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #ececec;
    height:100%;
    transition:.3s;
}

.hotel-why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.hotel-why-icon{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hotel-why-icon i{
    color:#ff5a3c;
    font-size:28px;
}

.hotel-why-content h4{
    font-size:24px;
    color:#094571;
    margin-bottom:12px;
}

.hotel-why-content p{
    margin:0;
    color:#666;
    line-height:30px;
}

@media(max-width:991px){

    .hotel-why-sec{
        padding:80px 0;
    }

    .hotel-why-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .hotel-why-sec{
        padding:60px 0;
    }

    .hotel-why-title{
        font-size:28px;
    }

    .hotel-why-card{
        flex-direction:column;
        text-align:center;
    }

    .hotel-why-icon{
        margin:0 auto;
    }

}

/*=========================================
 Transport Hero Banner
==========================================*/

.transport-banner-sec{
    position:relative;
    padding:220px 0 140px;
    background:url("../images/transport/banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.transport-banner-sec::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(19,39,79,.72);
}

.transport-banner-sec .container{
    position:relative;
    z-index:2;
}

.transport-banner-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.transport-banner-title{
    color:#fff;
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.transport-banner-text{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:32px;
    max-width:760px;
    margin:0 auto 35px;
}

.transport-banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.transport-banner-btn:hover{
    background:#fff;
    color:#094571;
}

@media(max-width:991px){

    .transport-banner-sec{
        padding:180px 0 100px;
    }

    .transport-banner-title{
        font-size:46px;
    }

}

@media(max-width:767px){

    .transport-banner-sec{
        padding:150px 0 80px;
    }

    .transport-banner-title{
        font-size:34px;
    }

    .transport-banner-text{
        font-size:16px;
        line-height:28px;
    }

    .transport-banner-btn{
        width:100%;
    }

}

/*=========================================
 Transport About Section
==========================================*/

.transport-about-sec{
    padding:100px 0;
    background:#fff;
}

.transport-about-image{
    overflow:hidden;
    border-radius:24px;
}

.transport-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s;
}

.transport-about-image:hover img{
    transform:scale(1.05);
}

.transport-about-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.transport-about-title{
    font-size:44px;
    font-weight:700;
    line-height:1.3;
    color:#094571;
    margin-bottom:25px;
}

.transport-about-content p{
    color:#666;
    font-size:16px;
    line-height:30px;
    margin-bottom:20px;
}

.transport-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.transport-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .transport-about-sec{
        padding:80px 0;
    }

    .transport-about-image{
        margin-bottom:30px;
    }

    .transport-about-image img{
        height:420px;
    }

    .transport-about-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .transport-about-sec{
        padding:60px 0;
    }

    .transport-about-title{
        font-size:28px;
    }

    .transport-about-image img{
        height:300px;
    }

    .transport-about-content p{
        line-height:28px;
    }

    .transport-about-btn{
        width:100%;
    }

}

/*=========================================
 Transport Services
==========================================*/

.transport-services-sec{
    padding:100px 0;
    background:#f8fafc;
}

.transport-services-head {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.transport-services-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.transport-services-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.transport-services-head p{
    color:#666;
    line-height:30px;
}

.transport-service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.transport-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.transport-service-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.transport-service-icon i{
    color:#ff5a3c;
    font-size:30px;
}

.transport-service-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.transport-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.transport-services-note{
    max-width:900px;
    margin:50px auto 0;
    text-align:center;
}

.transport-services-note p {
    font-size: 17px;
    color: #094571;
    font-weight: 500;
    margin: 0;
}

@media(max-width:991px){

    .transport-services-sec{
        padding:80px 0;
    }

    .transport-services-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .transport-services-sec{
        padding:60px 0;
    }

    .transport-services-title{
        font-size:28px;
    }

    .transport-service-card{
        padding:25px;
    }

}


/*=========================================
Transport Booking Process
==========================================*/

.transport-process-sec{
    padding:100px 0;
    background:#f8fafc;
}

.transport-process-head {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.transport-process-subtitle{
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.transport-process-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin:15px 0;
}

.transport-process-head p{
    color:#666;
}

.transport-process-card{
    position:relative;
    background:#fff;
    border-radius:16px;
    padding:60px 25px 30px;
    text-align:center;
    height:100%;
    border:1px solid #ececec;
    transition:.3s;
}

.transport-process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.transport-process-no{
    position:absolute;
    top:-25px;
    left:50%;
    transform:translateX(-50%);
    width:50px;
    height:50px;
    border-radius:50%;
    background:#ff5a3c;
    color:#fff;
    font-size:20px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #f8fafc;
}

.transport-process-card h5{
    color:#094571;
    margin-bottom:15px;
    font-size:20px;
}

.transport-process-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.transport-process-note{
    max-width:850px;
    margin:60px auto 0;
    text-align:center;
}

.transport-process-note p {
    color: #094571;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
}

@media(max-width:991px){

    .transport-process-sec{
        padding:80px 0;
    }

    .transport-process-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .transport-process-sec{
        padding:60px 0;
    }

    .transport-process-title{
        font-size:28px;
    }

    .transport-process-card{
        margin-top:30px;
    }

}

/*=========================================
Popular Transport Options
==========================================*/

.transport-options-sec{
    padding:100px 0;
    background:#fff;
}

.transport-options-head {
    max-width: 800px;
    margin: 0 auto 60px;
}

.transport-options-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.transport-options-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.transport-options-head p{
    color:#666;
    line-height:30px;
}

.transport-option-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    border-radius: 16px;
    padding: 25px 30px;
    transition: .3s;
    height: 100%;
}

.transport-option-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.transport-option-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.transport-option-icon i{
    font-size:26px;
    color:#ff5a3c;
}

.transport-option-content h4 {
    font-size: 20px;
    color: #094571;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

@media(max-width:991px){

    .transport-options-sec{
        padding:80px 0;
    }

    .transport-options-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .transport-options-sec{
        padding:60px 0;
    }

    .transport-options-title{
        font-size:28px;
    }

    .transport-option-box{
        padding:20px;
        gap:15px;
    }

    .transport-option-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .transport-option-icon i{
        font-size:22px;
    }

    .transport-option-content h4{
        font-size:18px;
    }

}


/*=========================================
 Why Choose Transport
==========================================*/

.transport-why-sec{
    padding:100px 0;
    background:#f8fafc;
}

.transport-why-head{
    max-width:800px;
    margin:0 auto 60px;
}

.transport-why-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.transport-why-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
}

.transport-why-card{
    display:flex;
    gap:22px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.transport-why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.transport-why-icon{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.transport-why-icon i{
    color:#ff5a3c;
    font-size:28px;
}

.transport-why-content h4{
    color:#094571;
    font-size:24px;
    margin-bottom:12px;
}

.transport-why-content p{
    color:#666;
    line-height:30px;
    margin:0;
}

@media(max-width:991px){

    .transport-why-sec{
        padding:80px 0;
    }

    .transport-why-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .transport-why-sec{
        padding:60px 0;
    }

    .transport-why-title{
        font-size:28px;
    }

    .transport-why-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .transport-why-icon{
        margin:0 auto;
    }

}

/*=========================================
Support Hero Banner
==========================================*/

.support-banner-sec{
    position:relative;
    padding:220px 0 140px;
    background:url("../images/travel/banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.support-banner-sec::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(19,39,79,.75);
}

.support-banner-sec .container{
    position:relative;
    z-index:2;
}

.support-banner-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.support-banner-title{
    color:#fff;
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.support-banner-text{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:32px;
    max-width:760px;
    margin:0 auto 35px;
}

.support-banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.support-banner-btn:hover{
    background:#fff;
    color:#094571;
}

@media(max-width:991px){

    .support-banner-sec{
        padding:180px 0 100px;
    }

    .support-banner-title{
        font-size:46px;
    }

}

@media(max-width:767px){

    .support-banner-sec{
        padding:150px 0 80px;
    }

    .support-banner-title{
        font-size:34px;
    }

    .support-banner-text{
        font-size:16px;
        line-height:28px;
    }

    .support-banner-btn{
        width:100%;
    }

}


/*=========================================
Travel Support About
==========================================*/

.support-about-sec{
    padding:100px 0;
    background:#fff;
}

.support-about-image{
    border-radius:20px;
    overflow:hidden;
}

.support-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:.5s;
}

.support-about-image:hover img{
    transform:scale(1.05);
}

.support-about-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.support-about-title{
    font-size:42px;
    color:#094571;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

.support-about-content p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.support-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.support-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .support-about-sec{
        padding:80px 0;
    }

    .support-about-title{
        font-size:27px!important;
    }
h2 {
    font-size: 25px !important;
}

    h1 {
        font-size: 29px !important;
    }

    h4 {
        font-size: 18px !important;
    }

.support-situation-card {
    gap: 10px!important;
    padding: 25px 10px!important;
}









    .support-about-image img{
        height:420px;
    }

}

@media(max-width:767px){

    .support-about-sec{
        padding:60px 0;
    }

    .support-about-title{
        font-size:28px;
    }

    .support-about-image img{
        height:300px;
    }

    .support-about-btn{
        width:100%;
    }

}

/*=========================================
Travel Support Services
==========================================*/

.support-services-sec{
    padding:100px 0;
    background:#f8fafc;
}

.support-services-head {
    max-width: 900px;
    margin: 0 auto 60px;
}

.support-services-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.support-services-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}
p {
    font-size: 16px;
}
.support-services-head p{
    color:#666;
    line-height:30px;
}

.support-service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.support-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.support-service-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-service-icon i{
    font-size:30px;
    color:#ff5a3c;
}

.support-service-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.support-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.support-services-note {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}
ul.dropdown-menu li {
    margin-right: 0px !important;
}
.support-services-note p {
    color: #094571;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

@media(max-width:991px){

    .support-services-sec{
        padding:80px 0;
    }

    .support-services-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .support-services-sec{
        padding:60px 0;
    }

    .support-services-title{
        font-size:28px;
    }

    .support-service-card{
        padding:25px;
    }

}

/*=========================================
How to Get Help
==========================================*/

.support-process-sec{
    padding:100px 0;
    background:#fff;
}

.support-process-head {
    max-width: 850px;
    margin: 0 auto 60px;
}

.support-process-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.support-process-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.support-process-head p{
    color:#666;
    line-height:30px;
}

.support-process-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.support-process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.support-process-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ff5a3c;
    color:#fff;
    margin:0 auto 20px;
    font-size:20px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-process-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.support-process-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.support-process-note{
    margin-top:60px;
    background:#fff6f3;
    border-left:5px solid #ff5a3c;
    border-radius:12px;
    padding:25px 30px;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.support-process-note i{
    color:#ff5a3c;
    font-size:24px;
    margin-top:4px;
}

.support-process-note p{
    margin:0;
    color:#555;
    line-height:30px;
}

@media(max-width:991px){

    .support-process-sec{
        padding:80px 0;
    }

    .support-process-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .support-process-sec{
        padding:60px 0;
    }

    .support-process-title{
        font-size:28px;
    }

    .support-process-note{
        flex-direction:column;
        text-align:center;
    }

    .support-process-note i{
        margin:auto;
    }

}

/*=========================================
Why Choose Travel Support
==========================================*/

.support-why-sec{
    padding:100px 0;
    background:#f8fafc;
}

.support-why-head{
    max-width:780px;
    margin:0 auto 60px;
}

.support-why-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.support-why-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
}

.support-why-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.support-why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.support-why-icon{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-why-icon i{
    font-size:28px;
    color:#ff5a3c;
}

.support-why-content h4{
    font-size:24px;
    color:#094571;
    margin-bottom:12px;
}

.support-why-content p{
    margin:0;
    color:#666;
    line-height:30px;
}

@media(max-width:991px){

    .support-why-sec{
        padding:80px 0;
    }

    .support-why-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .support-why-sec{
        padding:60px 0;
    }

    .support-why-title{
        font-size:28px;
    }

    .support-why-card{
        flex-direction:column;
        text-align:center;
    }

    .support-why-icon{
        margin:0 auto;
    }

}

/*=========================================
Common Situations
==========================================*/

.support-situation-sec{
    padding:100px 0;
    background:#fff;
}

.support-situation-head{
    max-width:720px;
    margin:0 auto 60px;
}

.support-situation-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.support-situation-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.support-situation-head p{
    color:#666;
    line-height:30px;
}

.support-situation-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:25px;
    height:100%;
    transition:.3s;
}

.support-situation-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.support-situation-icon{
    width:65px;
    min-width:65px;
    height:65px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-situation-icon i{
    color:#ff5a3c;
    font-size:26px;
}

.support-situation-card h4{
    font-size:20px;
    color:#094571;
    margin:0;
    line-height:1.5;
}

@media(max-width:991px){

    .support-situation-sec{
        padding:80px 0;
    }

    .support-situation-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .support-situation-sec{
        padding:60px 0;
    }

    .support-situation-title{
        font-size:28px;
    }

    .support-situation-card{
        padding:20px;
        gap:15px;
    }

    .support-situation-icon{
        width:55px;
        min-width:55px;
        height:55px;
    }

    .support-situation-icon i{
        font-size:22px;
    }

    .support-situation-card h4{
        font-size:18px;
    }

}

/*=========================================
Refund & Cancellation
==========================================*/

.support-refund-sec{
    padding:100px 0;
    background:#f8fafc;
}

.support-refund-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.support-refund-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:25px;
}

.support-refund-content p{
    color:#666;
    line-height:30px;
    margin-bottom:18px;
}

.support-refund-process{
    background:#fff;
    border-radius:20px;
    padding:40px;
    border:1px solid #ececec;
}

.support-refund-step{
    display:flex;
    gap:20px;
    position:relative;
    padding-bottom:30px;
}

.support-refund-step:last-child{
    padding-bottom:0;
}

.support-refund-step:not(:last-child)::before{
    content:"";
    position:absolute;
    left:20px;
    top:45px;
    width:2px;
    height:calc(100% - 10px);
    background:#e5e5e5;
}

.support-refund-step span{
    width:42px;
    min-width:42px;
    height:42px;
    border-radius:50%;
    background:#ff5a3c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    position:relative;
    z-index:2;
}

.support-refund-step h5{
    color:#094571;
    margin-bottom:8px;
    font-size:20px;
}

.support-refund-step p{
    margin:0;
    color:#666;
    line-height:28px;
}

@media(max-width:991px){

    .support-refund-sec{
        padding:80px 0;
    }

    .support-refund-title{
        font-size:34px;
    }

    .support-refund-process{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .support-refund-sec{
        padding:60px 0;
    }

    .support-refund-title{
        font-size:28px;
    }

    .support-refund-process{
        padding:25px;
    }

    .support-refund-step{
        gap:15px;
    }

}

/*=========================================
Logistic Banner
==========================================*/

.logistic-banner-sec{
    position:relative;
    padding:220px 0 140px;
    background:url("../images/logistic/banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.logistic-banner-sec::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(19,39,79,.75);
}

.logistic-banner-sec .container{
    position:relative;
    z-index:2;
}

.logistic-banner-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.logistic-banner-title{
    color:#fff;
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}

.logistic-banner-text{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:32px;
    max-width:760px;
    margin:0 auto 35px;
}

.logistic-banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.logistic-banner-btn:hover{
    background:#fff;
    color:#094571;
}

@media(max-width:991px){

    .logistic-banner-sec{
        padding:180px 0 100px;
    }

    .logistic-banner-title{
        font-size:46px;
    }

}

@media(max-width:767px){

    .logistic-banner-sec{
        padding:150px 0 80px;
    }

    .logistic-banner-title{
        font-size:34px;
    }

    .logistic-banner-text{
        font-size:16px;
        line-height:28px;
    }

    .logistic-banner-btn{
        width:100%;
    }
    h2 {
        font-size: 21px !important;
        line-height: 1.3 !important;
    }

}

/*=========================================
 Logistic About
==========================================*/

.logistic-about-sec{
    padding:100px 0;
    background:#fff;
}

.logistic-about-image{
    overflow:hidden;
    border-radius:20px;
}

.logistic-about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
}

.logistic-about-image:hover img{
    transform:scale(1.05);
}

.logistic-about-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.logistic-about-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    line-height:1.3;
    margin-bottom:25px;
}

.logistic-about-content p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.logistic-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.logistic-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .logistic-about-sec{
        padding:80px 0;
    }

    .logistic-about-title{
        font-size:34px;
    }

    .logistic-about-image img{
        height:420px;
    }

}

@media(max-width:767px){

    .logistic-about-sec{
        padding:60px 0;
    }

    .logistic-about-title{
        font-size:28px;
    }

    .logistic-about-image img{
        height:300px;
    }

    .logistic-about-btn{
        width:100%;
    }

}

/*=========================================
Logistic Services
==========================================*/

.logistic-service-sec{
    padding:100px 0;
    background:#f8fafc;
}

.logistic-service-head {
    max-width: 850px;
    margin: 0 auto 60px;
}

.logistic-service-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.logistic-service-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.logistic-service-head p{
    color:#666;
    line-height:30px;
}

.logistic-service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.logistic-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.logistic-service-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logistic-service-icon i{
    color:#ff5a3c;
    font-size:30px;
}

.logistic-service-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.logistic-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.logistic-service-note{
    max-width:850px;
    margin:50px auto 0;
    text-align:center;
}

.logistic-service-note p {
    color: #094571;
    font-size: 17px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
}

@media(max-width:991px){

    .logistic-service-sec{
        padding:80px 0;
    }

    .logistic-service-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .logistic-service-sec{
        padding:60px 0;
    }

    .logistic-service-title{
        font-size:28px;
    }

    .logistic-service-card{
        padding:25px;
    }

}


/*=========================================
How to Book Courier
==========================================*/

.logistic-process-sec{
    padding:100px 0;
    background:#fff;
}

.logistic-process-head {
    max-width: 930px;
    margin: 0 auto 60px;
}

.logistic-process-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.logistic-process-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.logistic-process-head p{
    color:#666;
    line-height:30px;
}

.logistic-process-card{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.logistic-process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.logistic-process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:34px;
    font-weight:700;
    color:#f2f2f2;
}

.logistic-process-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    margin:0 auto 25px;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logistic-process-icon i{
    font-size:28px;
    color:#ff5a3c;
}

.logistic-process-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.logistic-process-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.logistic-process-note{
    margin-top:60px;
    background:#fff7f3;
    border-left:5px solid #ff5a3c;
    border-radius:15px;
    padding:25px 30px;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.logistic-process-note i{
    color:#ff5a3c;
    font-size:24px;
    margin-top:3px;
}

.logistic-process-note p{
    margin:0;
    color:#555;
    line-height:30px;
}

@media(max-width:991px){

    .logistic-process-sec{
        padding:80px 0;
    }

    .logistic-process-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .logistic-process-sec{
        padding:60px 0;
    }

    .logistic-process-title{
        font-size:28px;
    }

    .logistic-process-card{
        padding:30px 20px;
    }

    .logistic-process-note{
        flex-direction:column;
        text-align:center;
    }

    .logistic-process-note i{
        margin:auto;
    }

}
.card.glass-card.contact-form-travel {
    padding: 40px !important;
}

.card.glass-card.contact-form-travel input {
    height: 50px;
}
.card.glass-card.contact-form-travel select {
    height: 50px;
}

.card.glass-card.contact-form-travel label {
    font-size: 16px;
    font-weight: 500 !important;
    margin-top: 8px;
}
/*=========================================
Pricing & Offers
==========================================*/

.logistic-pricing-sec{
    padding:100px 0;
    background:#f8fafc;
}

.logistic-pricing-head {
    max-width: 860px;
    margin: 0 auto 60px;
}

.logistic-pricing-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.logistic-pricing-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.logistic-pricing-head p{
    color:#666;
    line-height:30px;
}

.logistic-pricing-content h4{
    color:#094571;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.logistic-pricing-content p{
    color:#666;
    line-height:30px;
    margin-bottom:18px;
}

.logistic-offer-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:25px;
    transition:.3s;
    height:100%;
}

.logistic-offer-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.logistic-offer-icon{
    width:65px;
    min-width:65px;
    height:65px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logistic-offer-icon i{
    color:#ff5a3c;
    font-size:26px;
}

.logistic-offer-card h5{
    color:#094571;
    font-size:22px;
    margin-bottom:8px;
}

.logistic-offer-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

@media(max-width:991px){

    .logistic-pricing-sec{
        padding:80px 0;
    }

    .logistic-pricing-title{
        font-size:34px;
    }

    .logistic-pricing-content{
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .logistic-pricing-sec{
        padding:60px 0;
    }

    .logistic-pricing-title{
        font-size:28px;
    }

    .logistic-offer-card{
        padding:20px;
        gap:15px;
    }

    .logistic-offer-icon{
        width:55px;
        min-width:55px;
        height:55px;
    }

    .logistic-offer-icon i{
        font-size:22px;
    }

}

/*=========================================
Common Shipment Types
==========================================*/

.logistic-shipment-sec{
    padding:100px 0;
    background:#fff;
}

.logistic-shipment-head{
    max-width:750px;
    margin:0 auto 60px;
}

.logistic-shipment-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.logistic-shipment-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.logistic-shipment-head p{
    color:#666;
    line-height:30px;
}

.logistic-shipment-card{
    height:100%;
    text-align:center;
    padding:35px 30px;
    border:1px solid #ececec;
    border-radius:18px;
    background:#fff;
    transition:.35s;
}

.logistic-shipment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.logistic-shipment-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logistic-shipment-icon i{
    color:#ff5a3c;
    font-size:30px;
}

.logistic-shipment-card h4{
    color:#094571;
    font-size:22px;
    margin-bottom:15px;
}

.logistic-shipment-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

@media(max-width:991px){

    .logistic-shipment-sec{
        padding:80px 0;
    }

    .logistic-shipment-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .logistic-shipment-sec{
        padding:60px 0;
    }

    .logistic-shipment-title{
        font-size:28px;
    }

    .logistic-shipment-card{
        padding:25px;
    }

}

/*=========================================
Why Choose Logistics
==========================================*/

.logistic-why-sec{
    padding:100px 0;
    background:#f8fafc;
}

.logistic-why-head{
    max-width:760px;
    margin:0 auto 60px;
}

.logistic-why-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.logistic-why-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
}

.logistic-why-card{
    display:flex;
    align-items:flex-start;
    gap:22px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:30px;
    height:100%;
    transition:.35s;
}
.accordion-button:not(.collapsed) {
    color: #ff5a3c;
    background-color: #fff;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.logistic-why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.logistic-why-icon{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#fff3ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logistic-why-icon i{
    font-size:28px;
    color:#ff5a3c;
}

.logistic-why-content h4{
    font-size:24px;
    color:#094571;
    margin-bottom:12px;
}

.logistic-why-content p{
    color:#666;
    line-height:30px;
    margin:0;
}

@media(max-width:991px){

    .logistic-why-sec{
        padding:80px 0;
    }

    .logistic-why-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .logistic-why-sec{
        padding:60px 0;
    }

    .logistic-why-title{
        font-size:28px;
    }

    .logistic-why-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .logistic-why-icon{
        margin:0 auto;
    }

}

/*=========================================
Career Banner
==========================================*/

.career-banner-sec{
    position:relative;
    padding:220px 0 150px;
    background:url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80") center center/cover no-repeat;
    overflow:hidden;
}

.career-banner-sec::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(19,39,79,.88),rgba(19,39,79,.65));
}

.career-banner-sec .container{
    position:relative;
    z-index:2;
}

.career-banner-subtitle{
    display:inline-block;
    padding:8px 20px;
    background:rgba(255,255,255,.12);
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.career-banner-title{
    color:#fff;
    font-size:64px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:25px;
}

.career-banner-text{
    color:rgba(255,255,255,.92);
    font-size:19px;
    line-height:34px;
    max-width:760px;
    margin:0 auto 0px;
}

.career-banner-btns{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.career-banner-btn,
.career-banner-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.career-banner-btn{
    background:#ff5a3c;
    color:#fff;
}

.career-banner-btn:hover{
    background:#fff;
    color:#094571;
}

.career-banner-btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.career-banner-btn-outline:hover{
    background:#fff;
    color:#094571;
}

@media(max-width:991px){

    .career-banner-sec{
        padding:180px 0 110px;
    }

    .career-banner-title{
        font-size:48px;
    }

}

@media(max-width:767px){

    .career-banner-sec{
        padding:150px 0 80px;
    }

    .career-banner-title{
        font-size:34px;
    }

    .career-banner-text{
        font-size:16px;
        line-height:30px;
    }

    .career-banner-btn,
    .career-banner-btn-outline{
        width:100%;
    }

}


/*=========================================
Why Join MYTRAVEL DEMAND
==========================================*/

.career-about-sec{
    padding:100px 0;
    background:#fff;
}

.career-about-image{
    position:relative;
}

.career-about-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:20px;
}

.career-about-exp{
    position:absolute;
    right:30px;
    bottom:30px;
    background:#ff5a3c;
    color:#fff;
    padding:25px 35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.career-about-exp h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
}

.career-about-exp span{
    font-size:15px;
}

.career-about-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.career-about-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    line-height:1.3;
    margin-bottom:20px;
}

.career-about-content p{
    color:#666;
    line-height:30px;
    margin-bottom:30px;
}

.career-about-list{
    margin-bottom:35px;
}

.career-about-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-size:17px;
    color:#094571;
    font-weight:500;
}

.career-about-item i{
    color:#ff5a3c;
    font-size:20px;
}

.career-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    background:#ff5a3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.career-about-btn:hover{
    background:#094571;
    color:#fff;
}

@media(max-width:991px){

    .career-about-sec{
        padding:80px 0;
    }

    .career-about-title{
        font-size:34px;
    }

    .career-about-image img{
        height:450px;
    }

}

@media(max-width:767px){

    .career-about-sec{
        padding:60px 0;
    }

    .career-about-title{
        font-size:28px;
    }

    .career-about-image img{
        height:320px;
    }

    .career-about-exp{
        position:static;
        margin-top:20px;
        width:220px;
    }

    .career-about-btn{
        width:100%;
    }

}

/*=========================================
Life At MYTRAVEL DEMAND
==========================================*/

.career-life-sec{
    padding:100px 0;
    background:#f8fafc;
}

.career-life-head {
    max-width: 850px;
    margin: 0 auto 60px;
}

.career-life-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.career-life-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:18px;
}

.career-life-head p{
    color:#666;
    line-height:30px;
}

.career-life-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:320px;
    cursor:pointer;
}

.career-life-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.career-life-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(19,39,79,.92),rgba(19,39,79,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:#fff;
    transition:.35s;
}

.career-life-card:hover img{
    transform:scale(1.08);
}

.career-life-card:hover .career-life-overlay{
    background:linear-gradient(to top,rgba(255,107,74,.90),rgba(19,39,79,.20));
}

.career-life-overlay h4{
    font-size:24px;
    margin-bottom:10px;
    font-weight:600;
}

.career-life-overlay p{
    margin:0;
    line-height:28px;
    color:rgba(255,255,255,.9);
}

@media(max-width:991px){

    .career-life-sec{
        padding:80px 0;
    }

    .career-life-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .career-life-sec{
        padding:60px 0;
    }

    .career-life-title{
        font-size:28px;
    }

    .career-life-card{
        height:260px;
    }

    .career-life-overlay{
        padding:20px;
    }

    .career-life-overlay h4{
        font-size:20px;
    }

}

/*=========================================
Current Open Positions
==========================================*/

.career-job-sec{
    padding:100px 0;
    background:#fff;
}

.career-job-head{
    max-width:760px;
    margin:0 auto 60px;
}

.career-job-subtitle{
    display:inline-block;
    color:#ff5a3c;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.career-job-title{
    font-size:42px;
    font-weight:700;
    color:#094571;
    margin-bottom:15px;
}

.career-job-head p{
    color:#666;
    line-height:30px;
}

.career-job-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 35px 20px;
    height: 100%;
    transition: .35s;
}

.career-job-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.career-job-type{
    display:inline-block;
    padding:7px 18px;
    background:#fff3ef;
    color:#ff5a3c;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.career-job-card h3{
    font-size:20px;
    color:#094571;
    margin-bottom:25px;
}

.career-job-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.career-job-card ul li{
    margin-bottom:14px;
    color:#666;
    font-size:16px;
}

.career-job-card ul li i{
    width:22px;
    color:#ff5a3c;
    margin-right:10px;
}

.career-job-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    background: #ff5a3c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.career-job-btn:hover {
    background: #e04426;
    border-color: #e04426;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.25);
}
   .search-widget-container .nav-link {
        padding: 14px 30px !important;
    }
@media(max-width:991px){

    .career-job-sec{
        padding:80px 0;
    }

    .career-job-title{
        font-size:34px;
    }

}

@media(max-width:767px){

    .career-job-sec{
        padding:60px 0;
    }

    .career-job-title{
        font-size:28px;
    }

    .career-job-card{
        padding:25px;
    }


section {
    padding: 40px 15px !important;
}

    h1 {
        font-size: 27px !important;
    }


    b  
h5 {
    font-size: 18px;
}
p {
    font-size: 15px !important;
}

.destination-info {
    padding: 10px;}

    .destination-card {
    height: 220px;}

    .dropdown-menu {
        padding-left: 0px;
    }

    .search-widget-container .nav-link {
    padding: 14px 20px !important;
}

}

/*=====================================
Travel Popup
======================================*/

.travel-popup{

    border:0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.travel-popup-header {
    background: linear-gradient(135deg, #00385e, #00385e);
    color: #fff;
    padding: 35px;
    position: relative;
}

.travel-popup-tag{

    display:inline-block;
    background:#ff5a3c;
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;

}

.travel-popup-header h3{

    font-size:34px;
    font-weight:700;
    margin-bottom:10px;

}

.travel-popup-header p{

    margin:0;
    color:rgba(255,255,255,.85);

}

.travel-popup-header .btn-close{

    position:absolute;
    top:25px;
    right:25px;

}

.travel-popup-body{

    padding:35px;
    background:#fff;

}

.travel-popup .form-control,
.travel-popup .form-select{

    height:56px;
    border-radius:14px;
    border:1px solid #ececec;

}

.travel-popup textarea.form-control{

    height:auto;

}

.travel-popup .form-control:focus,
.travel-popup .form-select:focus{

    border-color:#ff5a3c;
    box-shadow:0 0 0 .15rem rgba(255,107,74,.15);

}

.travel-popup-footer{

    padding:0 35px 35px;
    background:#fff;

}

.travel-popup-btn{

    width:100%;
    height:58px;
    border:none;
    border-radius:50px;
    background:#ff5a3c;
    color:#fff;
    font-size:17px;
    font-weight:600;

    transition:.3s;




}

.travel-popup-btn:hover{

    background:#094571;

}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1450px!important;
    }
}

ul.dropdown-menu li {
    margin-right: 0px!important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #ff5a3c;
}