:root {
    --primary: #5B2DCC;
    --primary-dark: #4a22a8;
    --accent: #FF6B35;
    --accent2: #E91E8C;
    --yellow: #FFD700;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --white: #fff;
    --bg-light: #f8f9ff;
    --card-shadow: 0 4px 20px rgba(91, 45, 204, 0.10);
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

p {
    font-size: 16px;
}

/* ========== NAVBAR ========== */
.navbar-main {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.booking-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 227px;
    top: -23px;
    height: 54px;
    background: white;
    border-radius: 149px 300px 0 0px;
    z-index: -9;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-b {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.brand-ook {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-now {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #E91E8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-trip {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-icon-bag {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-right: 6px;
}

.navbar-main .nav-link {
    /* font-size: 0.88rem;
    font-weight: 500;
    color: #333 !important;
    padding: 1.1rem 0.7rem !important;
    transition: color 0.2s; */
}

.logoimg {
    width: 141px;
}

.navbar-main .nav-link:hover {
    color: var(--primary);
}



.btn-sign-in {
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    padding: 0.45rem 1.3rem !important;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-sign-in:hover {
    background: var(--primary-dark) !important;
    color: #fff !important
}

.nav-support-link {
    font-size: 0.82rem !important;
    color: #555 !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar {
    padding: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
}

/* ========== HERO / BANNER SLIDER ========== */
.hero-section {
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 580px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background: url()
}

.hero-wrap {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* BG Slider */
#heroBgSlider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#heroBgSlider .carousel-inner,
#heroBgSlider .carousel-item {
    height: 100%;
    min-height: 100vh;
}

.hero-bg-slide {
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hbs1 {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
}

.hbs2 {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
}

.hbs3 {
    background-image: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1920&q=80');
}

.hbs4 {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
}

/* overlay */
#heroBgSlider .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 10, 30, .72) 0%, rgba(108, 43, 217, .45) 50%, rgba(233, 30, 140, .35) 100%);
}

/* controls — very low opacity, behind content */
#heroBgSlider .carousel-control-prev,
#heroBgSlider .carousel-control-next {
    z-index: 2;
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    opacity: .35;
    transition: opacity .3s;
    margin: 0 8px;
}

#heroBgSlider .carousel-control-prev:hover,
#heroBgSlider .carousel-control-next:hover {
    opacity: .6;
}

.carousel-control-prev,
.carousel-control-next {
    /* z-index: 9999 !important; */
    pointer-events: auto !important;
}


.priority-text {
    font-family: "Brush Script MT", cursive;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;

    background: linear-gradient(90deg, #00fff9 0%, #ffd874 20%, #ff8ab5 40%, #ff9d7f 60%, #f0ff00 80%, #9bff57 100%);

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.booking-card {
    pointer-events: auto;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 7px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .4);
    transition: var(--tr);
    cursor: pointer;
}

.hero-dots button.active {
    background: #fff;
    transform: scale(1.4);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 7px;
}

.hbs1 {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
}

.hbs2 {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
}

.hbs3 {
    background-image: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1920&q=80');
}

.hbs4 {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .4);
    transition: var(--tr);
    cursor: pointer;
}

.hero-dots button.active {
    background: #fff;
    transform: scale(1.4);
}

/* Hero foreground */
.hero-fg {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 30px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: .3rem 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffd700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-slide-2 {
    background: linear-gradient(135deg,
            #0d1b3e 0%,
            #1a3a7a 30%,
            #2a6abf 60%,
            #4a9fd4 80%,
            #7ed4f0 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg,
            #0a2e0a 0%,
            #1a5c1a 30%,
            #2e8b2e 60%,
            #5abf5a 80%,
            #a8e6a8 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(20, 5, 60, 0.55) 0%,
            rgba(20, 5, 60, 0.2) 60%,
            transparent 100%);
    z-index: 1;
}

/* Decorative hot air balloons SVG */
.hero-balloons {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.balloon {
    position: absolute;
    animation: floatBalloon 6s ease-in-out infinite;
}

.balloon-1 {
    top: 10%;
    right: 25%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 5%;
    right: 5%;
    animation-delay: 1.5s;
}

.balloon-3 {
    top: 55%;
    right: 12%;
    animation-delay: 0.8s;
}

.balloon-4 {
    top: 2%;
    right: 42%;
    animation-delay: 2.2s;
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 48px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}


.hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 23px;
    margin-bottom: 2.5rem;
    width: 42%;
}

/* Slider indicators */
.hero-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.hero-indicators span.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* ========== BOOKING CARD ========== */
.booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    padding: 0 0 26px 0;
    /* overflow: hidden; */
    position: relative;
    z-index: 9;
}

.booking-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    gap: 0;
    margin-top: 4%;
}

.booking-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 1px 16px 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.booking-tab:hover {
    color: var(--primary);
}

.booking-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.booking-tab .tab-icon {
    font-size: 1rem;
}

.state-offer-tab {
    background: linear-gradient(135deg, #FF6B35, #E91E8C) !important;
    color: white !important;
    border-radius: 6px;
    margin-left: 8px;
    padding: 6px 14px !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-top: -13px;
}

.trip-type-radios {
    display: flex;
    gap: 20px;
    padding: 12px 20px 8px;
}

.trip-type-radios label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #333;
}

.trip-type-radios input[type=radio] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* Form fields row */
.booking-form-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    flex-wrap: wrap;
}

.booking-field {
    flex: 1 1 180px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px 14px;
    margin: 4px 4px;
    position: relative;
    min-height: 77px;
}

.booking-field label {
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: none;
}

.booking-field input,
.booking-field select {
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    width: 100%;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    padding: 0;
}

.booking-field select {
    cursor: pointer;
}

.swap-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    flex-shrink: 0;
    align-self: center;
    margin: 4px -2px;
    z-index: 1;
    position: relative;
}

.btn-search-flights {
    background: linear-gradient(135deg, #FF6B35, #E91E8C);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 30px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    margin: 4px;
    min-height: 60px;
    transition: opacity 0.2s;
}


/* ===========================
   Price Protection
=========================== */

.price-protection {

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #fff;
    border: 1px solid #dbe7ff;
    border-radius: 10px;

    padding: 2px 18px;

    background-image:
        linear-gradient(120deg,
            transparent 72%,
            rgba(13, 110, 253, .05) 72%,
            rgba(13, 110, 253, .05) 80%,
            transparent 80%,
            transparent 85%,
            rgba(13, 110, 253, .08) 85%,
            rgba(13, 110, 253, .08) 93%,
            transparent 93%);
}

.price-protection .form-check {
    display: flex;
    align-items: center;
}

.price-protection .form-check-input {
    margin-right: 10px;
}

.price-protection strong {
    color: #000;
}

.price-protection a {
    font-size: 14px;
}

.shield {
    width: 46px;
    height: 46px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.btn-search-flights:hover {
    opacity: 0.9;
}

/* ========== FEATURES STRIP ========== */
.features-strip {
    background: #f6f5fa;
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item h6 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.feature-item p {
    font-size: 0.73rem;
    color: #888;
    margin: 0;
}

/* ========== SECTIONS COMMON ========== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.section-subtitle {
    font-size: 0.82rem;
    color: #333;
}

.btn-view-all {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 5px 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
}

/* ========== TOP OFFERS ========== */
.offers-section {
    background: #fff;
    padding: 40px 0;
}

.offer-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(91, 45, 204, 0.18);
}

.offer-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-orange {
    background: #FF6B35;
    color: white;
}

.badge-green {
    background: #00b860;
    color: white;
}

.badge-blue {
    background: #007bff;
    color: white;
}

.badge-red {
    background: #e91e1e;
    color: white;
}

.offer-card-body {
    padding: 14px;
}

.offer-card-body h6 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a2e;
}

.offer-nights {
    font-size: 0.75rem;
    color: #333333;
    margin-bottom: 8px;
}

.offer-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.offer-price-original {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Offers carousel */
.offers-carousel {
    position: relative;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    font-size: 0.9rem;
    color: #555;
}

/* ========== POPULAR DESTINATIONS ========== */
.destinations-section {
    padding: 40px 0;
    background: white;
}

.dest-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s;
}

.dest-card:hover {
    transform: translateY(-4px);
}

.dest-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.dest-card:hover img {
    transform: scale(1.06);
}

.dest-card-info {
    padding: 10px 12px 12px;
    background: white;
}

.dest-card-info h6 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #1a1a2e;
}

.dest-price {
    font-size: 0.75rem;
    color: #333333;
}

/* ========== MEMBER BENEFITS ========== */
.benefits-section {
    padding: 40px 0;
    background: #f8f9ff;
}

.member-card {
    background: linear-gradient(135deg, #5B2DCC 0%, #E91E8C 100%);
    border-radius: 16px;
    padding: 35px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
}

.member-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.member-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.member-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.member-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.member-benefit-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.92;
}

.member-benefit-list li i {
    font-size: 1rem;
    color: #a0ff88;
}

.btn-join {
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s;
}

.btn-join:hover {
    transform: scale(1.04);
}

.member-img {
    position: absolute;
    bottom: 0;
    right: -10px;
    height: 200px;
    object-fit: contain;
}

/* ========== APP DOWNLOAD ========== */
.app-card {
    background: #d9cbfa;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.app-store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #222;
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.app-store-btn:hover {
    background: #444;
    color: white;
}

.app-store-btn i {
    font-size: 1.4rem;
}

.app-store-btn .store-text small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
}

.app-store-btn .store-text span {
    font-size: 0.82rem;
    font-weight: 600;
}

.app-mockup-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.app-mockup {
    width: 140px;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: white;
    padding: 28px 0;
    border-top: 1px solid #eee;
}

.newsletter-email {
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    padding: 10px 18px;
    font-size: 0.88rem;
    outline: none;
    width: 280px;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    border-right: none;
}

.btn-subscribe {
    background: linear-gradient(135deg, #FF6B35, #E91E8C);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

/* ========== FOOTER ========== */
footer {
    background: white;
    border-top: 1px solid #eee;
    padding: 40px 0 20px;
}

.footer-logo-text {
    font-size: 0.8rem;
    color: #434141;
    margin: 12px 0 16px;
    line-height: 1.6;
    max-width: 220px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 6px;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-col h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: #434141;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: 30px;
}

.footer-copy {
    font-size: 0.78rem;
    color: #999;
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.pay-icon {
    background: #f4f4f4;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #444;
    border: 1px solid #ddd;
}

.pay-icon.visa {
    color: #1a1f71;
}

.pay-icon.mc {
    color: #eb001b;
}

.pay-icon.rupay {
    color: #098434;
}

.pay-icon.upi {
    color: #097939;
}

/* ========== HOVER OVERLAY on nav tabs ========== */


.girlimg {
    width: 60%;
    margin-left: 28%;
}

/**************About us****************/
.innerhero {
    background: url(../img/innerbannerbg.webp) center top no-repeat;
    position: relative;
    height: 180px;
}

.overlayinner {
    position: absolute;
    background: #5a16b8;
    background: linear-gradient(90deg, rgba(90, 22, 184, 1) 0%, rgba(217, 26, 26, 0.56) 80%);
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.innertextarea {
    padding: 25px 0 0;
}

.booksection {
    background: #5a16b8;
    background: linear-gradient(90deg, rgba(90, 22, 184, 1) 0%, rgba(217, 26, 26, 0.56) 100%);
}

/***************Press************/
.bgaward {
    background: #e7d9ff;
}

.press-hero {
    background:
        linear-gradient(130deg, #022b58, #005cb8);
    color: white;
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
}

.press-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .15);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
}

.hero-sub {
    max-width: 620px;
    opacity: .9;
}

.hero-stats {
    margin-top: -38px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.stat-box i {
    font-size: 32px;
    background: -webkit-linear-gradient(#882cbe, #f33812);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box h3 {
    margin-top: 15px;
    font-weight: 700;
}

/* Featured */

.featured-news {
    padding: 90px 0;
}

.featured-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.featured-img {
    height: 100%;
    object-fit: cover;
}

/* News */

.news-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card img {
    height: 220px;
    object-fit: cover;
}

/* Downloads */

.download-box {
    background: linear-gradient(135deg, #802bca, #ea3720);
    color: white;
    padding: 50px;
    border-radius: 25px;
}

/* Awards */

.award {
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.award i {
    font-size: 42px;
    color: #ffc107;
}

/*********************Visa*******************/
.visaText {
    text-align: center;
    color: #5b2dcc;
    font-weight: 600;
}

.visabtnarea {
    text-align: center;
}

.bcard::before {
    content: "";
    position: absolute;
    left: 0;
    right: 667px;
    top: -23px;
    height: 54px;
    background: white;
    border-radius: 149px 300px 0 0px;
    z-index: -9;
}

/***************State Offer*************/
#state-offers {
    margin-top: 25px;
}

.state-offers-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f3ff;
    border-radius: 18px;
    padding: 12px;
    overflow-x: auto;
    white-space: nowrap;
}

.state-offers-wrapper::-webkit-scrollbar {
    display: none;
}

/* Left Banner */
.offer-banner {
    min-width: 210px;
    height: 110px;
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff5b3c, #7b2cff);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-banner h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-banner p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    text-wrap: auto;
}

/* Offer Cards */
.offer-card {
    min-width: 210px;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
    transition: .3s;
}

.offer-card:hover {
    transform: translateY(-4px);
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-content img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.offer-card h6 {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 17px;
}

.offer-card small {
    display: block;
    color: #555;
    font-size: 13px;
}

.offer-code {
    margin-top: 8px;
    color: #3b3bdc;
    font-weight: 700;
    font-size: 12px;
}

/* View All */
.view-all-offers {
    min-width: 90px;
    text-align: center;
    text-decoration: none;
    color: #3b3bdc;
    font-weight: 600;
    font-size: 14px;
}

.view-all-offers i {
    display: block;
    font-size: 24px;
    margin-top: 6px;
}

/************************AgentLogin*************/
.left-side h1 {
    font-size: 52px;
    font-weight: 700;
    margin-top: 30px;
}

.left-side p {
    /* font-size: 18px; */
    opacity: .9;
    margin-top: 20px;
    line-height: 24px;
    color: #1a1a2e;
}

.feature {
    display: flex;
    align-items: center;
    margin-top: 13px;

    background: #6e25b0;
    border-radius: 25px;
}

.feature i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

/* Login Card */

.login-card {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 18px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);

}

.login-title {

    font-weight: 700;

}

.login-card small {

    color: #666;

}

.fcontrol {

    height: 40px;
    border-radius: 12px;

}

.input-group-text {

    border-radius: 12px 0 0 12px;
    background: #fff;
    width: 55px;
    justify-content: center;

}

.fcontrol:focus {

    box-shadow: none;
    border-color: #0d6efd;

}

.smallesttext {
    font-size: 15px;
}

.btn-login {

    min-height: 46px !important;
    border-radius: 12px;

    border: none;
    font-size: 18px;
    font-weight: 600;

}

.login-section {
    padding: 2% 0;
}

.btn-login:hover {

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 136, 0, .35);
    color: #fff !important;

}

.travel-icons {

    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;

}

.travel-icons div {

    text-align: center;

}

.travel-icons i {

    font-size: 28px;
    color: #0d6efd;

}

.travel-icons span {

    display: block;
    font-size: 13px;
    margin-top: 5px;

}

.footer-text {

    font-size: 14px;
    color: #777;

}

.left-side {
    color: #fff;
    padding: 60px;
}

/*********Career*******/
#jobs {
    background: #5f14e0;
}

.cbody1 {
    background: #fff;
    border-radius: 10px;
}

/****************Affiliate Progrma*********/
.bgblue {
    background: #5b2dcc;
}

.bluecolor {
    color: #5b2dcc;
}

.affiliate-section {
    background: #f7f9ff;
}

.offer-card .feature-card {

    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: .3s;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.feature-card:hover {

    transform: translateY(-8px);

}

.feature-card i {

    font-size: 42px;
    /* color: #0d6efd; */
    margin-bottom: 20px;
    background: -webkit-linear-gradient(#882cbe, #f33812);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.step-box {

    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.step-box i {

    font-size: 40px;
    color: #6f42c1;
    margin: 20px 0;

}

.step-number {

    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;

}

.commission-card {

    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;

}

.commission-card:hover {

    transform: translateY(-10px);

}

.commission-card.active {
    background: linear-gradient(135deg, #802bca, #ea3720);
    color: white;

}

.commission-card i {

    font-size: 48px;
    margin-bottom: 20px;

}

.commission-card h2 {

    font-weight: 700;
    color: #932dab;

}

.commission-card.active h2 {

    color: #ffd54f;

}

.affiliate-form {

    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

}

.form-control {

    height: 52px;
    border-radius: 12px;

}

textarea.form-control {

    height: auto;

}

.btnnormal {
    min-height: 50px;
    font-size: 16px;
}

/****************Hotel Programs*********/
.hotel-partners {
    background: #f7f9ff;
}

.partner-card,
.step-card,
.partner-form {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
    height: 100%;
}

.partner-card:hover,
.step-card:hover {
    transform: translateY(-8px);
}

.partner-card {
    text-align: center;
}

.partner-card i {
    font-size: 48px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card i {
    font-size: 42px;
    color: #6f42c1;
    margin: 20px 0;
}

.step-no {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stats-box {
    background: linear-gradient(135deg, #802bca, #f66257);
    color: #fff;
    border-radius: 25px;
    padding: 50px 20px;
}

.stats-box h2 {
    font-size: 40px;
    font-weight: 700;
}

.partner-form {
    padding: 50px;
}

.partner-form .form-control,
.partner-form .form-select {
    height: 52px;
    border-radius: 12px;
}

.partner-form textarea {
    height: auto !important;
}

.btn-warning {
    background: linear-gradient(90deg, #ff7b00, #ffb300);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.btn-warning:hover {
    transform: translateY(-2px);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: #fff;
}

.subheading {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 17px;
}

/******************Travel Guide************/
.travel-guide {
    background: #f7f9ff;
}

.guide-category {

    background: #fff;
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

}

.guide-category:hover {

    transform: translateY(-8px);

}

.guide-category i {

    font-size: 42px;
    background: -webkit-linear-gradient(#882cbe, #f33812);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;

}

.destination-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;

}

.destination-card:hover {

    transform: translateY(-8px);

}

.destination-card img {

    height: 230px;
    width: 100%;
    object-fit: cover;

}

.destination-content {

    padding: 25px;

}

.tip-card {

    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    height: 100%;

}

.tip-card i {

    font-size: 42px;
    color: #6f42c1;
    margin-bottom: 20px;

}

.why-booknow {

    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.why-booknow ul {

    list-style: none;
    padding: 0;

}

.why-booknow li {

    padding: 10px 0;
    font-size: 17px;

}

.guide-box {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    padding: 40px;
    border-radius: 20px;

}

.guide-box h2 {

    font-size: 40px;
    font-weight: 700;

}

.travel-cta {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    padding: 60px;
    border-radius: 25px;
    color: white;

}

.btn-warning {

    background: linear-gradient(90deg, #ff7b00, #ffb300);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
}

.btnexplore {
    background: linear-gradient(135deg, #FF6B35, #E91E8C);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 5px 23px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    margin: 4px;
    /* min-height: 60px; */
    transition: opacity 0.2s;
}

.btnexplore:hover {
    color: #fff;
}

/****************Technical Support*************/
.support-page {
    background: #f5f8ff;
    min-height: 100vh;
}



/*=========================
 SEARCH BOX
==========================*/

.input-group-lg {
    box-shadow: 0 15px 35px rgba(13, 110, 253, .08);
    border-radius: 60px;
    overflow: hidden;
}

.input-group-text {
    background: #fff;
    border: none;
    padding-left: 25px;
}

.input-group .form-control {
    border: none;
    height: 60px;
    font-size: 16px;
}

.input-group .form-control:focus {
    box-shadow: none;
}

/*
.input-group .btn {
    border-radius: 0;
    padding: 0 30px;
    background: linear-gradient(45deg, #ff7b00, #ffb100);
    border: none;
    font-weight: 600;
} */

/*=========================
 QUICK BOX
==========================*/

.quick-box {

    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2ff;

}

.quick-box::before {

    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);

}

.quick-box:hover {

    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, .12);

}

.quick-box i {

    font-size: 45px;
    margin-bottom: 18px;
    display: block;
    font-size: 45px;
    margin-bottom: 18px;
    display: block;
    /* color: #0d6efd; */
    background: -webkit-linear-gradient(#882cbe, #f33812);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btnoutline {
    color: #5b2dcc;
    border: 1px solid #5b2dcc;
    padding: 5px 10px !important;
}

.btnoutline:hover {
    background: linear-gradient(135deg, #FF6B35, #E91E8C) !important;
    border: none;
}

.quick-box .btn {

    border-radius: 30px;
    padding: 8px 22px;

}

/*=========================
 ISSUE CARDS
==========================*/

.issue-card {

    background: #fff;
    padding: 28px;
    border-radius: 18px;
    transition: .35s;
    height: 100%;
    border: 1px solid #edf2ff;

}

.issue-card:hover {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
    transform: translateY(-8px);

}

.issue-card:hover a {

    color: #fff;

}

.issue-card:hover i {

    background: rgba(255, 255, 255, .18);
    color: #fff;

}

.issue-card i {

    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 15px;
    background: #edf4ff;
    color: #6016e0;
    margin-bottom: 20px;

}

.issue-card h5 {

    font-weight: 700;

}

.issue-card p {

    font-size: 14px;
    margin-bottom: 15px;

}

.issue-card a {

    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;

}

/*=========================
 FORM
==========================*/

.card {

    border: none !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);

}

.card-body {

    padding: 35px;

}



textarea.form-control {

    height: auto;

}



/*=========================
 STATUS
==========================*/

.card h5 {

    font-weight: 700;
    color: #143a66;

}

.card p {

    margin-bottom: 14px;

}

.text-success {

    font-weight: 600;

}

.text-warning {

    font-weight: 600;

}

/*=========================
 CONTACT BOX
==========================*/

.card:last-child {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;

}

.card:last-child h5 {

    color: #fff;

}

.card:last-child i {

    font-size: 18px;
    margin-right: 8px;
    color: #FFD43B !important;

}

.card:last-child hr {

    border-color: rgba(255, 255, 255, .25);

}

/***************Cancellation********/
.search-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.search-card .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dbe4f3;
}

.search-card .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.search-card .btn-warning {
    background: linear-gradient(45deg, #ff7b00, #ffb300);
    border: none;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
}

.search-card .btn-warning:hover {
    transform: translateY(-2px);
}

/*========================
Service Cards
========================*/

.service-card {

    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    transition: .35s;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.service-card:hover {

    transform: translateY(-8px);
    border-color: #0d6efd;

}

.service-card.active {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;

}

.service-card i {

    font-size: 42px;
    margin-bottom: 15px;
    display: block;

}

/*========================
Booking Box
========================*/

.booking-box {

    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.booking-box h4 {

    font-weight: 700;

}

.booking-box .btn-danger {

    border-radius: 10px;
    padding: 10px 24px;

}

/*========================
Reason Cards
========================*/

.reason-card {

    background: #fff;
    display: block;
    text-align: center;
    border-radius: 18px;
    padding: 30px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
    border: 2px solid transparent;
    height: 100%;

}

.reason-card:hover {

    border-color: #0d6efd;
    transform: translateY(-6px);

}

.reason-card input {

    display: none;

}

.reason-card i {

    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;

}

.reason-card h5 {

    margin: 0;

}

/*========================
Refund Cards
========================*/

.refund-card,
.timeline-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .06);

}

.refund-card h4,
.timeline-card h4 {

    font-weight: 700;
    margin-bottom: 20px;

}

/*========================
Timeline
========================*/

.timeline {

    list-style: none;
    padding: 0;
    margin: 0;

}

.timeline li {

    position: relative;
    padding-left: 35px;
    padding-bottom: 28px;
    font-weight: 500;

}

.timeline li:last-child {

    padding-bottom: 0;

}

.timeline li::before {

    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0d6efd;

}

.timeline li::after {

    content: '';
    position: absolute;
    left: 7px;
    top: 22px;
    width: 2px;
    height: 34px;
    background: #d0d8ea;

}

.timeline li:last-child::after {

    display: none;

}

/*========================
Help Section
========================*/

.help-box {

    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
    border-radius: 25px;
    padding: 45px;

}

.help-box h3 {

    font-weight: 700;

}

.help-box .btn {

    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 600;

}

.help-box .btn-warning {

    background: #ffb300;
    border: none;
    color: #fff;

}

/*========================
Animations
========================*/

.service-card,
.reason-card,
.search-card,
.booking-box,
.refund-card,
.timeline-card {

    transition: .35s;

}

.search-card:hover,
.booking-box:hover,
.refund-card:hover,
.timeline-card:hover {

    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .10);

}

/****************Privacy*************/
.iconprivacy {
    color: #5f14e0;
}

/*********contact section*****/
.contactsection li {
    font-size: 14px;
    font-weight: 600;
}

.contactsection li a {
    font-size: 14px;
    font-weight: 600;
}

.normalfootertext {
    font-size: 0.82rem;
    color: #434141;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400 !important;
    ;
}

/****************blog***********/
.blog-section {
    overflow: hidden;
}

/*==========================
Heading
==========================*/

.blog-section h1 {
    color: #0d3b66;
    font-weight: 700;
}

.blog-section p {}

.badge {
    font-weight: 500;
    letter-spacing: .5px;
}


.btn-outline-primary {

    border-radius: 30px;

}

.btn-outline-primary:hover {

    background: #0d6efd;

}

/*==========================
Featured Blog
==========================*/

.featured-blog {

    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.featured-blog img {

    border-radius: 20px;
    transition: .4s;

}

.featured-blog:hover img {

    transform: scale(1.03);

}

.featured-blog h2 {

    color: #0d3b66;
    font-weight: 700;

}



/*==========================
Blog Cards
==========================*/
.btnnormal2 {
    font-size: 16px;
    min-height: auto;
    padding: 9px 14px;
}

.blog-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;

}

.blog-card:hover {

    transform: translateY(-10px);

}

.blog-card img {

    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;

}

.blog-card:hover img {

    transform: scale(1.08);

}

.blog-content {

    padding: 25px;

}

.blog-content h5 {

    font-weight: 700;
    margin: 15px 0;


}

.blog-content p {


    font-size: 15px;
    margin-bottom: 20px;

}

.blog-content a {

    color: #932dab;
    text-decoration: none;
    font-weight: 600;

}

.blog-content a:hover {

    color: #ff7b00;

}

/*==========================
Newsletter
==========================*/

.newsletter {

    margin-top: 70px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
    border-radius: 25px;
    padding: 50px;

}

.newsletter h3 {

    font-weight: 700;

}

.newsletter p {

    color: #eef2ff;

}

.newsletter .form-control {
    height: 50px;
    border: none;
    border-radius: 10px 0 0 10px;

}

.newsletter .btn {
    margin: 0;
}

.newsletter .btn:hover {

    background: #ff9800;

}

/*==========================
Hover Effects
==========================*/

.featured-blog,
.blog-card,
.newsletter {

    transition: .4s;

}

.featured-blog:hover,
.newsletter:hover {

    box-shadow: 0 20px 45px rgba(13, 110, 253, .18);

}

.section-title2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

/***************mybookings************/
.section_cardbooking {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 24px;
    margin-bottom: 28px
}

.gradbook {
    background: linear-gradient(90deg, #5b2eff, #ff6a3d);
    color: #fff
}

.statbook {
    border-radius: 18px;
    color: #1a1a2e;
    padding: 7px 15px;
}

.btn-grad {
    background: linear-gradient(90deg, #5b2eff, #ff6a3d);
    border: none;
    color: #fff
}

.badge_gradbook {
    background: linear-gradient(90deg, #5b2eff, #ff6a3d)
}

.routebook {
    height: 4px;
    background: linear-gradient(90deg, #5b2eff, #ff6a3d);
    border-radius: 10px;
    margin: 18px 0
}

.nav-pills .nav-link {
    border-radius: 30px;
    padding: 10px 22px;
    color: #555;
    font-weight: 600;
    margin-left: 8px;
    transition: .3s;
}

.nav-pills .nav-link.active {
    background: linear-gradient(90deg, #5B2EFF, #FF6A3D);
    color: #fff;
}

.nav-pills .nav-link:hover {
    background: #f3f4f6;
}

.boxbookingitem {
    border: 1px solid #5f14e0;
    box-shadow: 2px 2px 2px #5f14e0;
    background: #e7e7e7;
}

.boxbookingitem h2 {
    color: #5f14e0;
    font-weight: 700;
}

.innerhero2 {
    height: 131px;
}

/******************Modal***************/
.modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.left-side2 {
    background: url("../img/loginbg.webp") center center/cover;
    min-height: 517px;
    position: relative;
    color: #fff;
}

.left-side2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(61 51 116 / 73%)
}

.left-content {
    position: relative;
    z-index: 2;
    padding: 50px 45px;
}

.left-content h2 {
    font-weight: 700;
    margin-bottom: 50px;
}

.featurenew {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.featurenew i {
    font-size: 30px;
    width: 40px;
}

.featurenew h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.right-side2 {
    padding: 35px;
    background: #fff;
}

/* Tabs */

.login-tabs {
    background: #f2f2f2;
    border-radius: 40px;
    padding: 6px;
}

.login-tabs .nav-link {
    border-radius: 40px;
    color: #555;
    font-weight: 600;
    padding: 7px;
}

.login-tabs .nav-link.active {
    background: #5b2dcc;
    color: #fff;
}

.form-label {
    font-weight: 600;
}

.form-control,
.form-select {
    height: 42px;
    border-radius: 10px;
}

.input-group .fcontrol2 {
    height: 36px;
}


.divider {
    display: flex;
    align-items: center;
    margin: 7px 0;

}

.fcontrol2 {
    padding: 6px 10px;
}

.btnpopup {
    min-height: 45px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    padding: 0 12px;
    color: #777;
    font-size: 14px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #444;
    transition: .3s;
}

.social-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.footer-text2 {
    font-size: 13px;
    color: #666;
}

.footer-text2 a {
    text-decoration: none;
}

.modal-dialog {
    max-width: 980px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {

    .bcard::before {
        right: 266px;
    }

    .booking-card::before {
        right: 27px;
        top: -7px;
    }

    .state-offer-tab {
        margin-top: 3px;
    }


    .login-card {

        margin: 25px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title-italic {
        font-size: 2.4rem;
    }

    .hero-slider {
        height: 480px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .booking-form-row {
        gap: 4px;
    }

    .member-img {
        height: 140px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 820px;
    }

    .hero-slider {
        height: 420px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-title-italic {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero-balloons {
        width: 100%;
        opacity: 0.5;
    }

    .booking-field {
        flex: 1 1 100%;
    }

    .btn-search-flights {
        width: calc(100% - 8px);
    }

    .swap-btn {
        display: none;
    }

    .member-img {
        display: none;
    }

    .features-strip .col {
        min-width: 50%;
        margin-bottom: 12px;
    }

    .dest-card img {
        height: 110px;
    }

    .newsletter-email {
        width: 200px;
    }
}

@media (max-width: 575px) {
    .hero-subtitle {
        width: 100%;
    }


    .overlayinner h1 {
        font-size: 27px;
    }

    .overlayinner p {
        font-size: 18px;
    }

    .innerhero {
        height: 150px;
    }

    .innerhero2 {
        height: 80px;
    }

    .card .text-muted {
        color: #fff !important;
    }

    .login-card {
        margin: 0;
    }

    .affiliate-form {
        padding: 16px;
    }

    .partner-form {
        padding: 16px;
    }

    .guide-box h2 {
        font-size: 22px;
    }

    .guide-box {
        padding: 8px;
    }

    .help-box {
        padding: 13px;
    }

    .help-box.btn {
        padding: 8px 7px;
    }

    .hero-stats {
        margin-top: 0;
    }

    .left-side {
        padding: 25px;
    }

    .footer-col ul li {
        margin-bottom: 0;
    }

    .navbar-main {
        padding-bottom: 15px !important;
    }

    .footer-col ul li a {
        font-size: 10px;
    }

    .offer-card {
        padding: 0;
    }

    .contactsection li {
        font-size: 11px;
    }

    .offer-card {
        min-width: 0;
        width: 100%;
    }

    .booking-card {
        padding: 20px 0 20px 0;
    }

    .section-title {
        font-size: 25px;
    }

    .hero-section {
        min-height: 888px;
    }

    .herovisa {
        min-height: 600px;
    }

    .hero-slider {
        height: 360px;
    }

    .hero-title {
        font-size: 43px;
    }

    .hero-title-italic {
        font-size: 50px;
    }

    .booking-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0;
    }

    .booking-tab {
        flex-shrink: 0;
    }
}

/* ova (hover) effect for category tab */
.booking-tab:hover .tab-icon,
.booking-tab.active .tab-icon {
    color: var(--primary);
}

/* Placeholder colors */
::placeholder {
    color: #bbb;
}

/* Offer section image placeholders with gradient */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.goa-bg {
    background: linear-gradient(135deg, #00b4db, #0083b0, #00c853);
}

.delhi-bg {
    background: linear-gradient(135deg, #f5a623, #d4ac0d, #c8860a);
}

.himachal-bg {
    background: linear-gradient(135deg, #74b9ff, #a29bfe, #dfe6e9);
}

.andaman-bg {
    background: linear-gradient(135deg, #00cec9, #55efc4, #0984e3);
}

.dubai-bg {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e, #e17055);
}

.bali-bg {
    background: linear-gradient(135deg, #55efc4, #00b894, #6c5ce7);
}

.thailand-bg {
    background: linear-gradient(135deg, #74b9ff, #0984e3, #00cec9);
}

.singapore-bg {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7, #fd79a8);
}

.maldives-bg {
    background: linear-gradient(135deg, #00cec9, #55efc4, #81ecec);
}

/* Emoji inside placeholder */
.img-placeholder span {
    font-size: 2.4rem;
}