.privacy-section {
    background: #f9fbfd;
}

.privacy-section h5 {
    margin-top: 20px;
    font-weight: 600;
}

.privacy-section p,
.privacy-section li {
    color: #555;
    line-height: 1.7;
}

.terms-section {
    background: #f9fbfd;
}

.terms-section h5 {
    margin-top: 20px;
    font-weight: 600;
}

.terms-section p {
    color: #555;
    line-height: 1.7;
}

.footer-disclaimer {
    font-size: 12px;
    color: #bbb;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.logo-img {
    height: 65px;
    /* isko increase karo */
    width: auto;
    /* IMPORTANT */
    max-width: 100%;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
    }
}

.navbar {
    padding: 12px 0;
}

.logo-img {
    height: 75px;
    /* thoda aur bold */
}

/* ===== AUTOCOMPLETE WRAPPER ===== */
.autocomplete-wrapper,
.autocomplete-wrapper2 {
    position: relative;
    width: 100%;
}

/* FULL HERO SECTION */
.search-section {
    background: linear-gradient(to right, rgba(14, 77, 146, 0.8), rgba(0, 191, 166, 0.8)),
        url('img/LANDING-PAGE-DESIGN-BANNER.webp') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* REMOVE OLD HERO HEIGHT ISSUE */
.hero {
    background: none;
    height: auto;
    padding: 0;
}

/* FORM FIX */
.search-section .bg-white {
    border-radius: 20px;
    padding: 30px;
}

/* MOBILE SPACING */
@media(max-width:991px) {
    .search-section {
        padding: 60px 0;
        min-height: auto;
    }
}

/* ===== RESULT BOX ===== */
.autocomplete-results,
.autocomplete-results2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 6px;
}

/* ===== SINGLE ROW ===== */
.autocomplete-result,
.autocomplete-result2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-result:hover,
.autocomplete-result2:hover {
    background: #f5f7fb;
}

/* ===== LEFT CONTENT ===== */
.autocomplete-result div:first-child,
.autocomplete-result2 div:first-child {
    font-size: 14px;
    color: #111;
}

.autocomplete-result b,
.autocomplete-result2 b {
    font-weight: 600;
    color: #0e4d92;
}

/* ===== LOCATION TEXT ===== */
.autocomplete-location {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

#frmSubmit .icons_search {
    position: relative;
    /* top: 128%; */
    left: 5px;
    transform: translateY(139%);
    z-index: 2;
    opacity: 0.7;
}

.scale-up {
    transform: scale(1.08);
    transition: transform 0.5s ease;
    z-index: 2;
}

.owl-carousel .card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* HERO FIX */
.hero {
    padding: 90px 0 60px;
}

/* SEARCH BOX COMPACT */
.search-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    /* 🔥 smaller */
    margin: auto;
}

/* INPUT SIZE FIX */
.form-control,
.form-select {
    height: 44px;
    border-radius: 8px;
    font-size: 14px;
}

/* LABEL FIX */
.form-floating label {
    font-size: 13px;
}

/* BUTTON MODERN */
.search-box button {
    width: 100%;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(to right, #FF6B00, #ff8c42);
    border: none;
}

.search-box button:hover {
    background: linear-gradient(to right, #e65a00, #ff7a1a);
}

/* ROW GAP TIGHT */
.row.g-2 {
    --bs-gutter-x: 8px;
}

/* BADGE CLEAN */
.badge-custom {
    font-size: 11px;
    padding: 5px 12px;
}

/* TEXT SPACING */
.hero h1 {
    font-size: 32px;
}

.hero p {
    font-size: 14px;
}

/* MOBILE FIX */
@media(max-width:768px) {
    .search-box {
        padding: 15px;
    }

    .hero h1 {
        font-size: 24px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
/* Nav Links */
.navbar .nav-link {
    color: #1a1a1a;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover Effect (Luxury underline) */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Hover Text Color */
.navbar .nav-link:hover {
    color: #0E4D92;
}

/* Active Link */
.navbar .nav-link.active {
    color: #0E4D92;
    font-weight: 600;
}

/* Toggler Fix */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/* Navbar Background */
.navbar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 12px 0;
}

.navbar-brand,
.nav-link {
    color: #000 !important;
    font-weight: 500;
}

/* HERO */
.hero {
    position: relative;
    /* background: url('https://images.unsplash.com/photo-1504196606672-aef5c9cefc92') no-repeat center center/cover; */
    padding: 120px 0 80px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(14, 77, 146, 0.8));
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* FIXED BADGE */
.badge-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
}

.form-control,
.form-select {
    height: 48px;
    border-radius: 10px;
}

/* BUTTON FIX */
.search-btn {
    width: auto !important;
    padding: 0 30px;
    height: 50px;
    background: #FF6B00;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}

.search-btn:hover {
    background: #e65a00;
}

.search-btn-wrapper {
    text-align: center;
}

/* ICON INPUT */
.icon-input {
    position: relative;
}

.icon-input i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #0E4D92;
}

.icon-input input {
    padding-left: 35px;
}

/* FEATURES */
.features span {
    font-size: 13px;
}

#suggestions1 {

    position: absolute;
    background: white;
    width: 300px;
    max-height: 200px;
    overflow-y: auto;
}

#suggestions1 div {
    padding: 8px;
    cursor: pointer;
}

#suggestions1 div:hover {
    background: #eee;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


#suggestions {

    position: absolute;
    background: white;
    width: 300px;
    max-height: 200px;
    overflow-y: auto;
}

#suggestions div {
    padding: 8px;
    cursor: pointer;
}

#suggestions div:hover {
    background: #eee;
}

.call-deals-section {
    padding: 70px 0;
    background: linear-gradient(to right, #f8fbff, #eef7ff);
}

/* HEADING */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0E4D92;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
}

/* CARD */
.call-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.call-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* LEFT IMAGE */
.call-img img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
}

/* CONTENT */
.call-content {
    flex: 1;
}

.call-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.call-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

/* BUTTON */
.call-now-btn {
    display: inline-block;
    background: linear-gradient(to right, #FF6B00, #ff8c42);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.call-now-btn:hover {
    background: linear-gradient(to right, #e65a00, #ff7a1a);
}

/* Section */
.why-choose-new {
    padding: 70px 0;
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
}

/* Heading */
.section-head .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-head p {
    opacity: 0.9;
}

/* Feature Cards */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

/* Icon */
.feature-box .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* CTA BOX */
.cta-box {
    margin-top: 50px;
    background: #fff;
    color: #000;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cta-box h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Call Button */
.cta-call {
    background: #ff9800;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-call:hover {
    background: #e68900;
}

.popular-destinations-white {
    background: #ffffff;
    padding: 60px 0;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0E4D92;
}

.section-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

/* GRID: FIX 5 PER ROW */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* CARD */
.dest-card {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid #eee;
}

.dest-card h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.dest-card span {
    font-size: 12px;
    color: #888;
}

/* HOVER EFFECT */
.dest-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #00BFA6;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 576px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #312e81);
    position: relative;
    overflow: hidden;
}

/* Background blur circles */
.support-section::before,
.support-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.support-section::before {
    top: -100px;
    left: -100px;
    background: #ffffff;
}

.support-section::after {
    bottom: -100px;
    right: -100px;
    background: #67e8f9;
}

/* Heading */
.support-heading p {
    color: #bfdbfe;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.support-heading h2 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

.support-heading span {
    color: #dbeafe;
    font-size: 14px;
}

/* Cards */
.support-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    height: 100%;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Icon */
.support-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.support-icon i {
    font-size: 20px;
    color: #2563eb;
}

/* Text */
.support-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.support-card small {
    color: #bfdbfe;
    display: block;
    margin-bottom: 10px;
}

.support-card a,
.support-card span {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.support-card a:hover {
    color: #bfdbfe;
}

/* Bottom bar */
.support-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
}

.support-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-brand img {
    width: 40px;
}

.support-brand h6 {
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.support-brand p {
    color: #bfdbfe;
    font-size: 12px;
    margin: 0;
}

/* Features */
.support-features span {
    color: #dbeafe;
    font-size: 13px;
    margin-right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .support-heading h2 {
        font-size: 24px;
    }

    .support-section {
        padding: 60px 0;
    }
}

.fly-footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
}

.footer-logo h5 {
    font-weight: 700;
    font-size: 20px;
}

.footer-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5f5;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-box span {
    font-size: 18px;
}

.contact-box small {
    color: #9ca3af;
    display: block;
    font-size: 12px;
}

.contact-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 15px;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 13px;
}


/*------------------About US Sectiom--------------------*/
.about-hero {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
    padding: 80px 0;
}

.about-section {
    padding: 60px 0;
}

.why-section {
    background: #f8fafc;
    padding: 60px 0;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-5px);
}

.mission-section {
    padding: 60px 0;
}

.mission-box {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
}

.experience-section {
    padding: 60px 0;
    background: #0f172a;
    color: #fff;
}

.exp-box h3 {
    font-size: 28px;
    font-weight: bold;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
}


/*------------Contat US------------*/
.contact-hero {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
    padding: 80px 0;
}

.contact-title {
    font-weight: 700;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card i {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0E4D92;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Bottom border style (tumhari preference 💯) */
.custom-input {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #00BFA6;
}

.contact-btn {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
}

.contact-btn:hover {
    opacity: 0.9;
}

.contact-section {
    padding: 70px 0;
    background: #f8fafc;
}

.contact-title {
    font-weight: 700;
    font-size: 32px;
    color: #0f172a;
}

.contact-subtitle {
    color: #64748b;
    font-size: 15px;
}

/* Contact Info Cards */
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 18px;
    color: #0ea5e9;
    background: #e0f2fe;
    padding: 12px;
    border-radius: 50%;
}

.contact-card h6 {
    margin: 0;
    font-weight: 600;
}

.contact-card p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Form */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Bottom Border Inputs (your preference) */
.custom-input {
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    padding: 10px 5px;
    font-size: 14px;
    transition: 0.3s;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #0ea5e9;
}

/* Button */
.contact-btn {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    border: none;
    padding: 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}