/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* ====================
   TOP BAR STYLING
   ==================== */
.top-bar {
  background-color: #052a4a; /* Image me match hone wala dark navy blue */
  color: #ffffff;
  font-size: 13px;
}

.top-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.top-link:hover {
  color: #d1e3f8;
}

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.follow-text {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}

/* Social Media Circles */
.social-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.social-circle:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.bg-fb { background-color: #1877f2; }
.bg-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bg-yt { background-color: #ff0000; }
.bg-li { background-color: #0077b5; }

.currency-btn {
  font-size: 13px;
  font-weight: 500;
}

/* ====================
   NAVBAR & LOGO STYLING
   ==================== */
.navbar {
  border-bottom: 1px solid #f0f0f0;
}

/* Logo Text Colors */
.c-cyan { color: #00a8cc; }
.c-orange { color: #ff5722; }
.c-navy { color: #0e3b68; }

.brand-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 11px;
  color: #555555;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.1px;
}

/* Navigation Links */
.navbar-nav .nav-link {
  color: #1c2e3d !important;
  font-weight: 600;
  font-size: 14px;
  padding-left: 14px !important;
  padding-right: 14px !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
}

/* Blue underline bar under 'Home' / Active link */
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: #0d6efd;
  border-radius: 2px;
}

/* ====================
   CTA BUTTON STYLING
   ==================== */
.btn-whatsapp-cta {
  background-color: #009645; /* Image matching WhatsApp Green */
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-whatsapp-cta:hover {
  background-color: #007a38;
  color: #ffffff;
}

/* ====================
   RESPONSIVE ADJUSTMENTS
   ==================== */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link.active::after {
    display: none;
  }
  
  .navbar-nav .nav-link {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .btn-whatsapp-cta {
    width: 100%;
    justify-content: center;
  }
}





/* Color Variables */
:root {
  --footer-bg: #03182b;        /* Image matching dark navy background */
  --footer-bottom-bg: #021221; /* Slightly darker bottom bar */
  --text-orange: #ff5722;
}

.site-footer {
  background-color: var(--footer-bg);
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.c-orange {
  color: var(--text-orange);
}

.footer-desc {
  max-width: 280px;
  line-height: 1.5;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

/* Links Styling */
.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Social Media Buttons */
.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.bg-fb { background-color: #1877f2; }
.bg-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bg-yt { background-color: #ff0000; }
.bg-li { background-color: #0077b5; }

/* Contact List */
.contact-info i {
  width: 18px;
  color: rgba(255, 255, 255, 0.85);
}

/* Footer Bottom Bar */
.footer-bottom {
  background-color: var(--footer-bottom-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-links a:hover {
  text-decoration: underline !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* =====================================================
   TRAVEL HERO SECTION
===================================================== */

.travel-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* =====================================================
   HERO SLIDER
===================================================== */

.travel-hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.travel-slide {
    position: relative;

    width: 100%;
    height: 100vh;

    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start;

    padding-top: 100px;
}


/* =====================================================
   WHITE OVERLAY
===================================================== */

.travel-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.90) 38%,
        rgba(255, 255, 255, 0.45) 70%,
        rgba(255, 255, 255, 0.15) 100%
    );

    z-index: 1;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.travel-content {
    position: relative;
    z-index: 2;
}


.travel-subtitle {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #6c757d;
}


/* =====================================================
   HERO TITLE
===================================================== */

.travel-title {
    margin: 0 0 18px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 54px;
    font-weight: 800;

    line-height: 1.08;

    color: #0d1b2a;
}


.travel-title span {
    font-family: 'Caveat', cursive;

    font-size: 72px;
    font-weight: 600;

    color: #ff5200;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.travel-description {
    max-width: 540px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #555;
}


/* =====================================================
   SEARCH WRAPPER
===================================================== */

.travel-search-wrapper {
    position: relative;
    z-index: 10;

    width: 100%;

    margin-top: 250px;
}


/* =====================================================
   SEARCH CARD
===================================================== */

.travel-search-card {
    width: 100%;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   SEARCH GRID
===================================================== */

.travel-search-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        0.9fr
        0.8fr
        auto;

    align-items: center;

    gap: 8px;
}


/* =====================================================
   SEARCH ITEM
===================================================== */

.travel-search-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 8px 12px;
}


.travel-border {
    border-right: 1px solid #e2e8f0;
}


/* =====================================================
   ICONS
===================================================== */

.travel-icon {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}


.destination-icon {
    color: #00a859;
}


.date-icon {
    color: #0088ff;
}


.traveller-icon {
    color: #0088ff;
}


/* =====================================================
   INPUT AREA
===================================================== */

.travel-input-area {
    width: 100%;
    min-width: 0;
}


.travel-input-area label {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
    font-weight: 700;

    color: #0f172a;
}


.travel-input-area input,
.travel-input-area select {
    width: 100%;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    color: #64748b;
}


.travel-input-area input::placeholder {
    color: #94a3b8;
}


.travel-input-area select {
    cursor: pointer;
}


/* =====================================================
   SEARCH BUTTON
===================================================== */

.travel-button-area {
    min-width: 165px;
}


.travel-button-area button {
    width: 100%;

    padding: 11px 18px;

    border: none;
    border-radius: 8px;

    background: #00a859;

    color: #ffffff;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition: all 0.3s ease;
}


.travel-button-area button:hover {
    background: #008e4b;

    transform: translateY(-1px);
}


.travel-button-area button i {
    margin-right: 7px;
}


/* =====================================================
   POPULAR SEARCHES
===================================================== */

.popular-travel-searches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 12px;
}


.popular-travel-searches > span {
    margin-right: 5px;

    font-size: 13px;
    font-weight: 700;

    color: #64748b;
}


.popular-travel-searches a {
    padding: 5px 12px;

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.85);

    color: #334155;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    backdrop-filter: blur(5px);

    transition: all 0.3s ease;
}


.popular-travel-searches a:hover {
    background: #00a859;

    border-color: #00a859;

    color: #ffffff;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {

    .travel-title {
        font-size: 48px;
    }

    .travel-title span {
        font-size: 64px;
    }

    .travel-search-wrapper {
        margin-top: 270px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .travel-hero {
        min-height: auto;
    }


    .travel-slide {
        min-height: 700px;
        height: auto;

        padding-top: 80px;

        background-position: center;
    }


    .travel-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.82) 60%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }


    .travel-title {
        font-size: 45px;
    }


    .travel-title span {
        font-size: 60px;
    }


    .travel-search-wrapper {
        margin-top: 260px;
        padding-bottom: 40px;
    }


    .travel-search-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }


    .travel-border {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }


    .travel-search-item {
        padding: 12px;
    }


    .travel-button-area {
        min-width: 100%;
        margin-top: 5px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .travel-slide {
        min-height: 720px;

        padding-top: 60px;

        background-position: center;
    }


    .travel-subtitle {
        font-size: 10px;

        letter-spacing: 1.3px;
    }


    .travel-title {
        font-size: 36px;

        line-height: 1.12;
    }


    .travel-title span {
        font-size: 52px;
    }


    .travel-description {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }


    .travel-search-wrapper {
        margin-top: 230px;
    }


    .travel-search-card {
        padding: 6px;

        border-radius: 12px;
    }


    .travel-search-item {
        padding: 10px 8px;
    }


    .travel-icon {
        font-size: 19px;
    }


    .travel-input-area label {
        font-size: 11px;
    }


    .travel-input-area input,
    .travel-input-area select {
        font-size: 12px;
    }


    .popular-travel-searches {
        gap: 6px;
    }


    .popular-travel-searches > span {
        width: 100%;

        margin-bottom: 2px;
    }


    .popular-travel-searches a {
        font-size: 11px;

        padding: 4px 9px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .travel-slide {
        min-height: 760px;
    }


    .travel-title {
        font-size: 32px;
    }


    .travel-title span {
        font-size: 46px;
    }


    .travel-search-wrapper {
        margin-top: 250px;
    }


    .travel-button-area button {
        padding: 10px;

        font-size: 12px;
    }

}



/* calneder css */





/* Travel Date Calendar */

.travel-date-box {
    cursor: pointer;
}

.travel-date-input {
    cursor: pointer;
}

.travel-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}

.travel-date-input:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* =====================================================
   TRAVEL BENEFITS SECTION
===================================================== */

.travel-benefits-section {
    width: 100%;

    padding: 22px 30px;

    background: #ffffff;

    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}


/* =====================================================
   BENEFIT ITEM
===================================================== */

.travel-benefit-item {
    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 65px;
}


/* =====================================================
   BLUE CIRCLE ICON
===================================================== */

.travel-benefit-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0875c9;

    color: #ffffff;

    font-size: 24px;

    transition: all 0.3s ease;
}


/* Icon Hover */

.travel-benefit-item:hover .travel-benefit-icon {
    background: #005da8;

    transform: translateY(-2px);
}


/* =====================================================
   CONTENT
===================================================== */

.travel-benefit-content {
    min-width: 0;
}


.travel-benefit-content h5 {
    margin: 0 0 3px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.3;

    color: #172033;
}


.travel-benefit-content p {
    margin: 0;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.4;

    color: #39465a;
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .travel-benefits-section {
        padding-left: 70px;
        padding-right: 70px;
    }

    .travel-benefit-item {
        gap: 17px;
    }

}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {

    .travel-benefits-section {
        padding: 22px 30px;
    }

    .travel-benefit-item {
        gap: 13px;
    }

    .travel-benefit-icon {
        width: 54px;
        height: 54px;

        min-width: 54px;

        font-size: 22px;
    }

    .travel-benefit-content h5 {
        font-size: 15px;
    }

    .travel-benefit-content p {
        font-size: 13px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .travel-benefits-section {
        padding: 25px 25px;
    }

    .travel-benefit-item {
        min-height: 65px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .travel-benefits-section {
        padding: 25px 20px;
    }


    .travel-benefit-item {
        justify-content: flex-start;

        padding: 5px 0;
    }


    .travel-benefit-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;

        font-size: 22px;
    }


    .travel-benefit-content h5 {
        font-size: 15px;
    }


    .travel-benefit-content p {
        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .travel-benefits-section {
        padding: 20px 15px;
    }


    .travel-benefit-item {
        gap: 12px;
    }


    .travel-benefit-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 20px;
    }


    .travel-benefit-content h5 {
        font-size: 14px;
    }


    .travel-benefit-content p {
        font-size: 12px;
    }

}
/* =========================================================
   TOP DESTINATION SECTION
========================================================= */

.top-destination-section {

    width: 100%;

    padding: 30px 0 40px;

    background: #ffffff;

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.destination-title-row {

    width: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 18px;

    padding: 0 4.2%;

}


.destination-label {

    display: block;

    margin-bottom: 4px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #1268b5;

}


.destination-title {

    margin: 0;

    font-size: 36px;

    font-weight: 800;

    line-height: 1.2;

    color: #10243e;

}


.destination-title span {

    color: #1268c4;

}


/* =========================================================
   VIEW ALL DESTINATIONS
========================================================= */

.view-all-destination {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 5px;

    font-size: 15px;

    font-weight: 700;

    color: #1268b5;

    text-decoration: none;

    white-space: nowrap;

}


.view-all-destination span {

    font-size: 24px;

    line-height: 1;

    transition: transform 0.3s ease;

}


.view-all-destination:hover {

    color: #0b5596;

}


.view-all-destination:hover span {

    transform: translateX(5px);

}


/* =========================================================
   SLIDER
========================================================= */

.destination-slider {

    position: relative;

    width: 100%;

}


/* =========================================================
   TRACK WRAPPER
========================================================= */

.destination-track-wrapper {

    width: 100%;

    overflow: hidden;

    padding: 0 4.2%;

}


/* =========================================================
   TRACK
========================================================= */

.destination-track {

    width: 100%;

    display: flex;

    gap: 15px;

    transition: all 0.4s ease;

}


/* =========================================================
   DESTINATION ITEM
========================================================= */

.destination-item {

    flex: 0 0 calc(
        (100% - 75px) / 6
    );

    min-width: 0;

}


/* =========================================================
   DESTINATION CARD
========================================================= */

.destination-card {

    position: relative;

    width: 100%;

    height: 220px;

    overflow: hidden;

    border-radius: 9px;

    cursor: pointer;

    background: #eeeeee;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.destination-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);

}


/* =========================================================
   IMAGE
========================================================= */

.destination-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.destination-card:hover img {

    transform: scale(1.07);

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.destination-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 65%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.30),
        transparent
    );

    pointer-events: none;

}


/* =========================================================
   CONTENT
========================================================= */

.destination-content {

    position: absolute;

    left: 16px;

    right: 10px;

    bottom: 13px;

    z-index: 2;

    color: #ffffff;

}


.destination-content h3 {

    margin: 0 0 3px;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.2;

    color: #ffffff;

}


.destination-content p {

    margin: 0;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.3;

    color: #ffffff;

}


/* =========================================================
   LEFT / RIGHT BUTTON
========================================================= */

.destination-btn {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 38px;

    height: 38px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #1268c4;

    font-size: 17px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.20);

    cursor: pointer;

    transform: translateY(-50%);

    transition: all 0.3s ease;

}


.destination-btn:hover {

    background: #1268c4;

    color: #ffffff;

}


.destination-prev {

    left: 18px;

}


.destination-next {

    right: 18px;

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .destination-title {

        font-size: 36px;

    }


    .destination-card {

        height: 220px;

    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .destination-title {

        font-size: 31px;

    }


    .destination-item {

        flex: 0 0 calc(
            (100% - 45px) / 4
        );

    }


    .destination-card {

        height: 210px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .destination-title-row {

        padding: 0 30px;

    }


    .destination-track-wrapper {

        padding: 0 30px;

    }


    .destination-item {

        flex: 0 0 calc(
            (100% - 30px) / 3
        );

    }


    .destination-title {

        font-size: 28px;

    }


    .destination-card {

        height: 205px;

    }


    .destination-prev {

        left: 10px;

    }


    .destination-next {

        right: 10px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .top-destination-section {

        padding: 25px 0 35px;

    }


    .destination-title-row {

        display: block;

        padding: 0 20px;

        margin-bottom: 16px;

    }


    .destination-label {

        font-size: 11px;

    }


    .destination-title {

        font-size: 24px;

    }


    .view-all-destination {

        margin-top: 10px;

        font-size: 13px;

    }


    .destination-track-wrapper {

        padding: 0 20px;

    }


    .destination-track {

        gap: 12px;

    }


    .destination-item {

        flex: 0 0 calc(
            (100% - 12px) / 2
        );

    }


    .destination-card {

        height: 210px;

    }


    .destination-content {

        left: 13px;

        bottom: 12px;

    }


    .destination-content h3 {

        font-size: 19px;

    }


    .destination-content p {

        font-size: 11px;

    }


    .destination-btn {

        width: 32px;

        height: 32px;

        font-size: 14px;

    }


    .destination-prev {

        left: 4px;

    }


    .destination-next {

        right: 4px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .destination-title {

        font-size: 21px;

    }


    .destination-item {

        flex: 0 0 100%;

    }


    .destination-card {

        height: 225px;

    }


    .destination-content h3 {

        font-size: 20px;

    }


    .destination-content p {

        font-size: 12px;

    }

}
/* =====================================================
   POPULAR HOLIDAY PACKAGES SECTION
===================================================== */

.holiday-packages-section {

    width: 100%;

    padding: 35px 0 40px;

    background: #ffffff;

}


/* =====================================================
   SECTION HEADER
===================================================== */

.holiday-packages-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 18px;

    padding: 0 0.5%;

}


/* =====================================================
   SMALL LABEL
===================================================== */

.holiday-packages-label {

    display: block;

    margin-bottom: 5px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #1268b5;

}


/* =====================================================
   MAIN HEADING
===================================================== */

.holiday-packages-title h2 {

    margin: 0;

    font-size: 36px;

    font-weight: 800;

    line-height: 1.2;

    color: #10243e;

}


.holiday-packages-title h2 span {

    color: #1268c4;

}


/* =====================================================
   VIEW ALL PACKAGES
===================================================== */

.view-all-packages {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 5px;

    font-size: 14px;

    font-weight: 700;

    color: #1268b5;

    text-decoration: none;

    white-space: nowrap;

}


.view-all-packages i {

    font-size: 16px;

    transition: transform 0.3s ease;

}


.view-all-packages:hover {

    color: #0b5596;

}


.view-all-packages:hover i {

    transform: translateX(5px);

}


/* =====================================================
   PACKAGE CARD
===================================================== */

.holiday-package-card {

    width: 100%;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e7edf3;

    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(16, 36, 62, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.holiday-package-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(16, 36, 62, 0.14);

}


/* =====================================================
   PACKAGE IMAGE
===================================================== */

.package-image {

    position: relative;

    width: 100%;

    height: 155px;

    overflow: hidden;

}


.package-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.holiday-package-card:hover
.package-image img {

    transform: scale(1.06);

}


/* =====================================================
   PACKAGE BADGE
===================================================== */

.package-badge {

    position: absolute;

    top: 10px;

    left: 10px;

    padding: 5px 11px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;

}


/* Red Badges */

.package-badge.bestseller,
.package-badge.popular,
.package-badge.special {

    background: #f0442e;

}


/* Green Trending */

.package-badge.trending {

    background: #008c25;

}


/* =====================================================
   PACKAGE CONTENT
===================================================== */

.package-content {

    padding: 10px 12px 12px;

}


/* =====================================================
   PACKAGE TITLE
===================================================== */

.package-content h3 {

    margin: 0 0 5px;

    font-size: 15px;

    font-weight: 800;

    line-height: 1.3;

    color: #172a43;

}


/* =====================================================
   DURATION
===================================================== */

.package-duration {

    margin: 0 0 9px;

    font-size: 13px;

    font-weight: 500;

    color: #33465d;

}


/* =====================================================
   FEATURES
===================================================== */

.package-features {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 5px;

    margin-bottom: 9px;

}


.package-features span {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    font-size: 11px;

    font-weight: 500;

    color: #657487;

    white-space: nowrap;

}


.package-features i {

    font-size: 11px;

    color: #667789;

}


/* =====================================================
   PRICE
===================================================== */

.package-price {

    display: flex;

    align-items: baseline;

    gap: 2px;

    margin-bottom: 9px;

    color: #1268c4;

}


.package-price .rupee {

    font-size: 18px;

    font-weight: 800;

}


.package-price strong {

    font-size: 21px;

    font-weight: 800;

    line-height: 1;

}


.package-price .per-person {

    margin-left: 2px;

    font-size: 11px;

    font-weight: 600;

    color: #172a43;

}


/* =====================================================
   VIEW DETAILS BUTTON
===================================================== */

.package-view-btn {

    width: 100%;

    min-height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 7px 10px;

    border-radius: 6px;

    background: #086bc5;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


.package-view-btn:hover {

    background: #0759a5;

    color: #ffffff;

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .package-image {

        height: 155px;

    }


    .package-content h3 {

        font-size: 15px;

    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .holiday-packages-title h2 {

        font-size: 31px;

    }


    .package-image {

        height: 160px;

    }


    .package-content {

        padding: 10px;

    }


    .package-features span {

        font-size: 10px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .holiday-packages-section {

        padding: 30px 0 35px;

    }


    .holiday-packages-header {

        padding: 0 1%;

    }


    .holiday-packages-title h2 {

        font-size: 28px;

    }


    .holiday-packages-label {

        font-size: 12px;

    }


    .package-image {

        height: 170px;

    }


    .package-content h3 {

        font-size: 15px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .holiday-packages-section {

        padding: 25px 0 30px;

    }


    .holiday-packages-header {

        display: block;

        margin-bottom: 16px;

        padding: 0;

    }


    .holiday-packages-label {

        font-size: 11px;

    }


    .holiday-packages-title h2 {

        font-size: 24px;

    }


    .view-all-packages {

        margin-top: 10px;

        font-size: 13px;

    }


    .package-image {

        height: 190px;

    }


    .package-content {

        padding: 12px;

    }


    .package-content h3 {

        font-size: 16px;

    }


    .package-duration {

        font-size: 13px;

    }


    .package-features span {

        font-size: 11px;

    }


    .package-price strong {

        font-size: 22px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .holiday-packages-title h2 {

        font-size: 21px;

    }


    .package-image {

        height: 200px;

    }


    .package-content h3 {

        font-size: 15px;

    }


    .package-features span {

        font-size: 10px;

    }

}
/* map section  */
/* =====================================================
   WHY TRAVEL WITH US SECTION
===================================================== */

.why-travel-section {

    width: 100%;

    position: relative;

    padding: 40px 0 35px;

    background: #ffffff;

    overflow: hidden;

}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.why-travel-wrapper {

    position: relative;

    width: 100%;

    min-height: 230px;

    display: flex;

    align-items: flex-start;

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.why-travel-content {

    position: relative;

    z-index: 3;

    width: 70%;

}


/* =====================================================
   HEADING
===================================================== */

.why-travel-heading {

    padding-left: 4.5%;

    margin-bottom: 28px;

}


.why-travel-heading span {

    display: block;

    margin-bottom: 5px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #1268b5;

}


.why-travel-heading h2 {

    margin: 0;

    font-size: 36px;

    font-weight: 800;

    line-height: 1.15;

    color: #10243e;

}


.why-travel-heading h2 strong {

    color: #1268c4;

    font-weight: 800;

}


/* =====================================================
   FEATURES ROW
===================================================== */

.why-travel-features {

    margin: 0;

    padding-left: 4.5%;

    padding-right: 0;

}


/* =====================================================
   FEATURE
===================================================== */

.why-feature {

    width: 100%;

    text-align: center;

    padding: 0 5px;

}


/* =====================================================
   ICON
===================================================== */

.why-feature-icon {

    width: 54px;

    height: 54px;

    margin: 0 auto 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0875d1;

    font-size: 29px;

}


.why-feature-icon i {

    font-size: 29px;

}


/* =====================================================
   FEATURE TITLE
===================================================== */

.why-feature h3 {

    margin: 0;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.35;

    color: #182b43;

}


/* =====================================================
   RIGHT DECORATION
===================================================== */

.why-travel-decoration {

    position: absolute;

    top: -20px;

    right: 0;

    width: 35%;

    height: 270px;

    z-index: 1;

}


/* =====================================================
   WORLD MAP
===================================================== */

.why-world-map {

    position: absolute;

    top: 0;

    left: -10%;

    width: 90%;

    height: 190px;

    object-fit: contain;

    object-position: center;

    opacity: 0.32;

}


/* =====================================================
   PAPER PLANE
===================================================== */

.why-plane {

    position: absolute;

    top: 25px;

    right: 30%;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0783c9;

    transform: rotate(-18deg);

}


.why-plane i {

    font-size: 42px;

}


/* =====================================================
   DOTTED FLIGHT PATH
===================================================== */

.why-flight-path {

    position: absolute;

    top: 60px;

    right: 15%;

    width: 170px;

    height: 105px;

    border-top: 2px dashed #7ca8d2;

    border-right: 2px dashed #7ca8d2;

    border-radius: 50%;

    transform: rotate(15deg);

    opacity: 0.8;

}


/* =====================================================
   MESSAGE
===================================================== */

.why-travel-message {

    position: absolute;

    right: 3%;

    top: 75px;

    width: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    transform: rotate(-7deg);

    color: #26364b;

}


/* First line */

.why-travel-message span {

    display: block;

    font-family: cursive;

    font-size: 22px;

    line-height: 1.05;

}


/* Moments */

.why-travel-message strong {

    display: block;

    margin: 2px 0;

    font-family: cursive;

    font-size: 28px;

    font-weight: 700;

    line-height: 1;

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .why-travel-heading h2 {

        font-size: 36px;

    }


    .why-feature h3 {

        font-size: 14px;

    }


    .why-travel-decoration {

        width: 36%;

    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .why-travel-content {

        width: 73%;

    }


    .why-travel-decoration {

        width: 30%;

    }


    .why-travel-heading h2 {

        font-size: 31px;

    }


    .why-feature h3 {

        font-size: 12px;

    }


    .why-feature-icon i {

        font-size: 26px;

    }


    .why-travel-message {

        right: 0;

        width: 115px;

    }


    .why-travel-message span {

        font-size: 18px;

    }


    .why-travel-message strong {

        font-size: 23px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .why-travel-section {

        padding: 35px 0;

    }


    .why-travel-wrapper {

        display: block;

        min-height: auto;

    }


    .why-travel-content {

        width: 100%;

    }


    .why-travel-heading {

        padding-left: 20px;

        margin-bottom: 25px;

    }


    .why-travel-heading h2 {

        font-size: 29px;

    }


    .why-travel-features {

        padding: 0 15px;

    }


    .why-feature {

        margin-bottom: 25px;

    }


    /* Hide decoration on tablet */

    .why-travel-decoration {

        display: none;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .why-travel-section {

        padding: 30px 0 20px;

    }


    .why-travel-heading {

        padding: 0 20px;

        text-align: left;

    }


    .why-travel-heading span {

        font-size: 11px;

    }


    .why-travel-heading h2 {

        font-size: 24px;

    }


    .why-travel-features {

        padding: 0 12px;

    }


    .why-feature {

        margin-bottom: 28px;

    }


    .why-feature-icon {

        width: 48px;

        height: 48px;

        margin-bottom: 8px;

    }


    .why-feature-icon i {

        font-size: 25px;

    }


    .why-feature h3 {

        font-size: 12px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .why-travel-heading h2 {

        font-size: 21px;

    }


    .why-travel-features {

        padding: 0 8px;

    }


    .why-feature {

        padding: 0 2px;

    }


    .why-feature-icon i {

        font-size: 23px;

    }


    .why-feature h3 {

        font-size: 11px;

    }

}
/* review */
/* =====================================================
   HAPPY TRAVELERS SECTION
===================================================== */

.happy-travelers-section {

    width: 100%;

    padding: 35px 0 40px;

    background: #ffffff;

}


/* =====================================================
   SECTION HEADER
===================================================== */

.happy-travelers-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 12px;

    padding: 0 0.5%;

}


/* =====================================================
   SMALL LABEL
===================================================== */

.happy-travelers-label {

    display: block;

    margin-bottom: 4px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #1268b5;

}


/* =====================================================
   MAIN HEADING
===================================================== */

.happy-travelers-title h2 {

    margin: 0;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;

    color: #10243e;

}


.happy-travelers-title h2 span {

    color: #1268c4;

}


/* =====================================================
   VIEW MORE REVIEWS
===================================================== */

.view-more-reviews {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 3px;

    font-size: 13px;

    font-weight: 700;

    color: #1268b5;

    text-decoration: none;

    white-space: nowrap;

}


.view-more-reviews i {

    font-size: 15px;

    transition: transform 0.3s ease;

}


.view-more-reviews:hover {

    color: #0759a5;

}


.view-more-reviews:hover i {

    transform: translateX(5px);

}


/* =====================================================
   REVIEW CARD
===================================================== */

.traveler-review-card {

    width: 100%;

    min-height: 100px;

    padding: 10px 15px;

    background: #ffffff;

    border: 1px solid #e6edf3;

    border-radius: 8px;

    box-shadow:
        0 2px 8px rgba(16, 36, 62, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.traveler-review-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(16, 36, 62, 0.12);

}


/* =====================================================
   REVIEW TOP
===================================================== */

.traveler-review-top {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 5px;

}


/* =====================================================
   USER IMAGE
===================================================== */

.traveler-photo {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #eeeeee;

}


/* =====================================================
   USER INFO
===================================================== */

.traveler-info {

    min-width: 0;

}


.traveler-info h3 {

    margin: 0 0 2px;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;

    color: #16283f;

}


/* =====================================================
   STARS
===================================================== */

.traveler-stars {

    font-size: 15px;

    line-height: 1;

    letter-spacing: 1px;

    color: #ffb300;

}


/* =====================================================
   REVIEW TEXT
===================================================== */

.traveler-review-text {

    margin: 0;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.45;

    color: #526174;

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .happy-travelers-title h2 {

        font-size: 30px;

    }


    .traveler-review-card {

        padding: 10px 15px;

    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .happy-travelers-title h2 {

        font-size: 28px;

    }


    .traveler-review-text {

        font-size: 10.5px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .happy-travelers-section {

        padding: 30px 0 35px;

    }


    .happy-travelers-header {

        padding: 0 1%;

    }


    .happy-travelers-label {

        font-size: 12px;

    }


    .happy-travelers-title h2 {

        font-size: 26px;

    }


    .traveler-review-card {

        min-height: 105px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .happy-travelers-section {

        padding: 25px 0 30px;

    }


    .happy-travelers-header {

        display: block;

        margin-bottom: 15px;

        padding: 0;

    }


    .happy-travelers-label {

        font-size: 11px;

    }


    .happy-travelers-title h2 {

        font-size: 23px;

    }


    .view-more-reviews {

        margin-top: 9px;

        font-size: 12px;

    }


    .traveler-review-card {

        min-height: auto;

        padding: 12px;

    }


    .traveler-photo {

        width: 45px;

        height: 45px;

        flex-basis: 45px;

    }


    .traveler-info h3 {

        font-size: 13px;

    }


    .traveler-stars {

        font-size: 14px;

    }


    .traveler-review-text {

        font-size: 12px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .happy-travelers-title h2 {

        font-size: 21px;

    }


    .traveler-review-card {

        padding: 11px;

    }


    .traveler-review-text {

        font-size: 11px;

    }

}

/* turn travel */
/* =====================================================
   TRAVEL CTA BANNER - CORRECT SIZE
===================================================== */

.travel-cta-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.travel-cta-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.travel-cta-banner {
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 9%;
}


/* ================= BACKGROUND IMAGE ================= */

.travel-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


/* ================= OVERLAY ================= */

.travel-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(0, 91, 145, 0.55),
        rgba(0, 126, 178, 0.20),
        rgba(0, 126, 178, 0.05)
    );
}


/* ================= CONTENT ================= */

.travel-cta-content {
    position: relative;
    z-index: 3;
    width: 70%;
}

.travel-cta-content h2 {
    margin: 0 0 5px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.travel-cta-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}


/* ================= BUTTON ================= */

.travel-cta-button {
    position: relative;
    z-index: 3;
    margin-left: auto;
}

.plan-holiday-btn {
    width: 235px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 18px;

    background: #ffffff;
    color: #172a43;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.plan-holiday-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.plan-holiday-btn:hover {
    color: #1268c4;
    transform: translateY(-2px);
}

.plan-holiday-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .travel-cta-banner {
        height: 110px;
        padding-left: 7.5%;
        padding-right: 9.5%;
    }

    .travel-cta-content h2 {
        font-size: 30px;
    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .travel-cta-banner {
        height: 105px;
        padding-left: 6%;
        padding-right: 6%;
    }

    .travel-cta-content h2 {
        font-size: 27px;
    }

    .travel-cta-content p {
        font-size: 14px;
    }

    .plan-holiday-btn {
        width: 215px;
        height: 44px;
        font-size: 13px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .travel-cta-banner {
        height: 115px;
        padding: 0 5%;
    }

    .travel-cta-content {
        width: 65%;
    }

    .travel-cta-content h2 {
        font-size: 24px;
    }

    .travel-cta-content p {
        font-size: 13px;
    }

    .plan-holiday-btn {
        width: 190px;
        height: 42px;
        font-size: 12px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .travel-cta-banner {
        height: 190px;

        padding: 25px 20px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .travel-cta-bg {
        object-position: center;
    }

    .travel-cta-content {
        width: 100%;
        margin-bottom: 15px;
    }

    .travel-cta-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .travel-cta-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .travel-cta-button {
        margin-left: 0;
    }

    .plan-holiday-btn {
        width: 200px;
        height: 42px;
        border-radius: 8px;
        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .travel-cta-banner {
        height: 200px;
        padding: 22px 18px;
    }

    .travel-cta-content h2 {
        font-size: 20px;
    }

    .travel-cta-content p {
        font-size: 11px;
    }

    .plan-holiday-btn {
        width: 190px;
        height: 40px;
    }

}
  /* slider */
  /* =====================================================
   DESTINATION SLIDER
===================================================== */

.destination-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.destination-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.destination-track {
    display: flex;
    width: max-content;
    transition: transform 0.6s ease-in-out;
}

.destination-item {
    flex: 0 0 calc(16.666666% - 12px);
    width: calc(16.666666% - 12px);
    margin-right: 14px;
}


/* Desktop */

@media (max-width: 1199px) {

    .destination-item {
        flex: 0 0 calc(25% - 12px);
        width: calc(25% - 12px);
    }

}


/* Tablet */

@media (max-width: 991px) {

    .destination-item {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
        margin-right: 12px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .destination-item {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
    }

}


/* Card */

.destination-card {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}


/* Image */

.destination-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Overlay */

.destination-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        transparent
    );
}


/* Content */

.destination-content {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    color: #ffffff;
}

.destination-content h3 {
    margin: 0 0 3px;
    font-size: 23px;
    font-weight: 800;
}

.destination-content p {
    margin: 0;
    font-size: 14px;
}


/* Buttons */

.destination-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #1268c4;

    font-size: 22px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);

    cursor: pointer;
}

.destination-prev {
    left: 8px;
}

.destination-next {
    right: 8px;
}

.destination-btn:hover {
    background: #1268c4;
    color: #ffffff;
}


/* Mobile */

@media (max-width: 575px) {

    .destination-card {
        height: 250px;
    }

    .destination-content h3 {
        font-size: 22px;
    }

    .destination-content p {
        font-size: 13px;
    }

    .destination-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

}
/* about us hero section  */
/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 375px;

    background-image: url("assets/image/about-hero\ 2.jxr");

    /* IMAGE KO FULL WIDTH + FULL HEIGHT */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* DARK OVERLAY */

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 25, 45, 0.35) 0%,
        rgba(0, 35, 55, 0.15) 45%,
        rgba(0, 35, 55, 0) 75%
    );

    z-index: 1;
}


/* CONTENT */

.about-hero .container-fluid {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    align-items: center;

    padding-left: 4.5%;
}


/* TEXT AREA */

.about-hero-content {
    max-width: 700px;
}


/* ABOUT US */

.about-label {
    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 16px;
}


/* HEADING */

.about-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 56px;
    font-weight: 800;

    line-height: 1.08;
}


/* MEMORIES */

.about-hero h1 span {
    color: #ff7600;

    font-family: "Caveat", cursive;

    font-size: 76px;
    font-weight: 600;

    margin-left: 5px;
}


/* DESCRIPTION */

.about-hero p {
    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.6;

    margin: 18px 0 0;
}


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .about-hero {
        height: 350px;
    }

    .about-hero h1 {
        font-size: 43px;
    }

    .about-hero h1 span {
        font-size: 58px;
    }

    .about-hero p {
        font-size: 12px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .about-hero {
        height: 430px;

        background-size: cover;
        background-position: 65% center;
    }

    .about-hero .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }

    .about-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero h1 span {
        font-size: 50px;
    }

    .about-hero p {
        font-size: 12px;
    }

    .about-hero p br {
        display: none;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .about-hero {
        height: 400px;
    }

    .about-hero h1 {
        font-size: 29px;
    }

    .about-hero h1 span {
        font-size: 44px;
    }

}

/* second section about us  */

/* =====================================================
   WHO WE ARE SECTION
===================================================== */

.who-we-are-section {
    width: 100%;
    padding: 55px 4.5%;
    background: #ffffff;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.who-content {
    padding-right: 45px;
}


/* SECTION LABEL */

.who-label {
    color: #0867b8;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


/* TITLE */

.who-title {
    margin: 0 0 18px;

    color: #10243b;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.15;
}


/* BLUE TITLE PART */

.who-title span {
    color: #0867c7;
}


/* PARAGRAPH */

.who-content p {
    color: #596879;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.65;

    margin-bottom: 16px;

    max-width: 650px;
}


/* =====================================================
   BUTTON
===================================================== */

.who-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 4px;

    padding: 12px 28px;

    background: #0874c9;

    color: #ffffff;

    text-decoration: none;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;
    font-weight: 700;

    border-radius: 7px;

    transition: all 0.3s ease;
}


.who-btn span {
    font-size: 20px;

    line-height: 1;
}


.who-btn:hover {
    background: #005ca8;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.who-right-side {
    display: flex;

    align-items: stretch;

    gap: 12px;

    width: 100%;
}


/* =====================================================
   MAIN IMAGE
===================================================== */

.who-image-box {
    flex: 1;

    min-width: 0;

    height: 360px;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}


.who-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}


.who-image-box:hover img {
    transform: scale(1.03);
}


/* =====================================================
   STATS BOX
===================================================== */

.who-stats {
    width: 265px;

    padding: 15px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* =====================================================
   SINGLE STAT
===================================================== */

.who-stat {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 75px;
}


/* =====================================================
   ICON
===================================================== */

.who-stat-icon {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 25px;
}


/* ICON COLORS */

.who-stat-icon.orange {
    background: #f47716;
}

.who-stat-icon.blue {
    background: #086dcc;
}

.who-stat-icon.green {
    background: #08a85c;
}

.who-stat-icon.yellow {
    background: #f5b914;
}


/* =====================================================
   STAT TEXT
===================================================== */

.who-stat-content {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.who-stat-content strong {
    color: #10243b;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.2;
}


.who-stat-content span {
    color: #536171;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.3;
}


/* =====================================================
   LARGE SCREEN
===================================================== */

@media (max-width: 1200px) {

    .who-we-are-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .who-content {
        padding-right: 20px;
    }

    .who-title {
        font-size: 34px;
    }

    .who-image-box {
        height: 340px;
    }

    .who-stats {
        width: 235px;
    }

    .who-stat-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 22px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .who-we-are-section {
        padding: 45px 5%;
    }


    .who-content {
        padding-right: 0;
        margin-bottom: 15px;
    }


    .who-title {
        font-size: 35px;
    }


    .who-content p {
        max-width: 100%;
    }


    .who-right-side {
        gap: 15px;
    }


    .who-image-box {
        height: 350px;
    }


    .who-stats {
        width: 240px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .who-we-are-section {
        padding: 40px 20px;
    }


    .who-label {
        font-size: 12px;
        letter-spacing: 1.8px;
    }


    .who-title {
        font-size: 30px;
    }


    .who-content p {
        font-size: 13px;
    }


    /* IMAGE + STATS STACK */

    .who-right-side {
        flex-direction: column;

        gap: 15px;
    }


    .who-image-box {
        width: 100%;

        height: 330px;
    }


    .who-stats {
        width: 100%;

        padding: 12px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }


    .who-stat {
        min-height: 70px;

        gap: 10px;
    }


    .who-stat-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 19px;
    }


    .who-stat-content strong {
        font-size: 17px;
    }


    .who-stat-content span {
        font-size: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .who-we-are-section {
        padding: 35px 15px;
    }


    .who-title {
        font-size: 27px;
    }


    .who-image-box {
        height: 280px;
    }


    .who-stats {
        grid-template-columns: 1fr;
    }


    .who-stat {
        padding: 5px 8px;
    }


    .who-btn {
        width: 100%;
    }

}

/* handpick about us 4 */
/* =====================================================
   TRAVEL BENEFITS SECTION
===================================================== */

.travel-benefits {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #f3faff;
}


/* =====================================================
   BENEFIT BOX - DESKTOP
===================================================== */

.benefit-box {
    width: 100%;
    height: 190px;

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px 15px;
}


/* =====================================================
   VERTICAL DIVIDER
===================================================== */

.benefit-box::after {
    content: "";

    position: absolute;

    top: 25px;
    right: 0;

    width: 1px;
    height: 140px;

    background: #dcebf4;
}


/* Remove last desktop divider */

.col-lg-3:last-child .benefit-box::after {
    display: none;
}


/* =====================================================
   ICON
===================================================== */

.benefit-icon {
    width: 100%;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: #086bc7;

    font-size: 45px;

    line-height: 1;
}


/* =====================================================
   TITLE
===================================================== */

.benefit-box h3 {
    margin: 0;

    color: #14273b;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.benefit-box p {
    margin: 5px 0 0;

    color: #657487;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.45;
}


/* =====================================================
   LARGE DESKTOP
   1200px - 1399px
===================================================== */

@media (max-width: 1399px) {

    .benefit-box {
        height: 180px;
    }

    .benefit-box::after {
        height: 135px;
        top: 22px;
    }

    .benefit-icon {
        font-size: 43px;
    }

    .benefit-box h3 {
        font-size: 16px;
    }

    .benefit-box p {
        font-size: 12px;
    }

}


/* =====================================================
   TABLET
   992px - 1199px
===================================================== */

@media (max-width: 1199px) {

    .benefit-box {
        height: 170px;

        padding: 15px 10px;
    }

    .benefit-icon {
        height: 45px;

        font-size: 40px;

        margin-bottom: 7px;
    }

    .benefit-box h3 {
        font-size: 15px;
    }

    .benefit-box p {
        font-size: 11.5px;
    }

}


/* =====================================================
   SMALL TABLET
   768px - 991px

   2 COLUMNS
===================================================== */

@media (max-width: 991px) {

    .benefit-box {
        height: 165px;
    }


    /* Vertical divider between column 1 & 2 */

    .col-md-6:nth-child(odd) .benefit-box::after {
        display: block;
    }

    .col-md-6:nth-child(even) .benefit-box::after {
        display: none;
    }


    /* Horizontal line */

    .col-md-6:nth-child(1) .benefit-box,
    .col-md-6:nth-child(2) .benefit-box {
        border-bottom: 1px solid #dcebf4;
    }


    .benefit-icon {
        font-size: 39px;
    }

}


/* =====================================================
   MOBILE
   BELOW 768px

   1 COLUMN
===================================================== */

@media (max-width: 767px) {

    .travel-benefits {
        background: #f3faff;
    }


    .benefit-box {
        height: auto;

        min-height: 145px;

        padding: 20px 15px;

        border-bottom: 1px solid #dcebf4;
    }


    /* Mobile mein vertical line nahi */

    .benefit-box::after {
        display: none !important;
    }


    /* Last item */

    .col-12:last-child .benefit-box {
        border-bottom: none;
    }


    .benefit-icon {
        height: 43px;

        font-size: 38px;

        margin-bottom: 8px;
    }


    .benefit-box h3 {
        font-size: 15px;
    }


    .benefit-box p {
        font-size: 12px;

        line-height: 1.5;
    }

}


/* =====================================================
   SMALL MOBILE
   BELOW 576px
===================================================== */

@media (max-width: 575px) {

    .benefit-box {
        min-height: 135px;

        padding: 18px 12px;
    }


    .benefit-icon {
        height: 40px;

        font-size: 35px;

        margin-bottom: 7px;
    }


    .benefit-box h3 {
        font-size: 14px;

        line-height: 1.3;
    }


    .benefit-box p {
        font-size: 11px;

        margin-top: 4px;
    }


    .desktop-break {
        display: none;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
   BELOW 400px
===================================================== */

@media (max-width: 400px) {

    .benefit-box {
        min-height: 125px;

        padding: 15px 10px;
    }


    .benefit-icon {
        font-size: 32px;

        height: 37px;
    }


    .benefit-box h3 {
        font-size: 13px;
    }


    .benefit-box p {
        font-size: 10.5px;
    }

}

/* our purpose  */
/* =====================================================
   MISSION, VISION & VALUES SECTION
===================================================== */

.purpose-section {
    width: 100%;
    background: #ffffff;

    padding: 30px 5.2% 34px;

    margin: 0;
}


/* =====================================================
   SECTION HEADER
===================================================== */

.purpose-header {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 25px;
}


/* =====================================================
   SMALL LABEL
===================================================== */

.purpose-label {
    display: block;

    margin-bottom: 5px;

    color: #0868be;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1.2;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.purpose-title {
    margin: 0;

    color: #13263b;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 39px;

    font-weight: 800;

    line-height: 1.15;
}

.purpose-title span {
    color: #0868c5;
}


/* =====================================================
   HEADER DESCRIPTION
===================================================== */

.purpose-description {
    max-width: 540px;

    padding-bottom: 3px;

    color: #4f5d6d;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.55;

    text-align: left;
}


/* =====================================================
   CARDS ROW
===================================================== */

.purpose-cards-row {
    margin-top: 0;
}


/* =====================================================
   PURPOSE CARD
===================================================== */

.purpose-card {
    width: 100%;

    min-height: 185px;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    padding: 29px 30px;

    background: #ffffff;

    border: 1px solid #edf1f5;

    border-radius: 13px;

    box-shadow: 0 3px 12px rgba(20, 45, 75, 0.08);

    transition: all 0.3s ease;
}


/* =====================================================
   CARD HOVER
===================================================== */

.purpose-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 7px 20px rgba(20, 45, 75, 0.12);
}


/* =====================================================
   ICON AREA
===================================================== */

.purpose-icon {
    flex: 0 0 82px;

    width: 82px;
    height: 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    font-size: 63px;

    line-height: 1;

    margin-top: 0;
}


/* =====================================================
   MISSION ICON
===================================================== */

.mission-icon {
    color: #0868c5;
}


/* =====================================================
   VISION ICON
===================================================== */

.vision-icon {
    color: #00a66a;
}


/* =====================================================
   VALUES ICON
===================================================== */

.values-icon {
    color: #0868c5;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.purpose-content {
    flex: 1;

    padding-top: 3px;
}


/* =====================================================
   CARD TITLE
===================================================== */

.purpose-content h3 {
    margin: 0 0 12px;

    color: #172a40;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.2;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.purpose-content p {
    margin: 0;

    color: #536172;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.65;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (max-width: 1399px) {

    .purpose-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .purpose-title {
        font-size: 36px;
    }

    .purpose-description {
        max-width: 500px;
        font-size: 14px;
    }

    .purpose-card {
        gap: 20px;
        padding: 27px 25px;
    }

    .purpose-icon {
        flex-basis: 75px;

        width: 75px;
        height: 75px;

        font-size: 57px;
    }

    .purpose-content h3 {
        font-size: 20px;
    }

    .purpose-content p {
        font-size: 13px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {

    .purpose-section {
        padding: 28px 4% 32px;
    }

    .purpose-header {
        gap: 25px;
    }

    .purpose-label {
        font-size: 14px;
    }

    .purpose-title {
        font-size: 32px;
    }

    .purpose-description {
        max-width: 430px;
        font-size: 13px;
    }

    .purpose-card {
        min-height: 180px;

        gap: 17px;

        padding: 24px 20px;
    }

    .purpose-icon {
        flex-basis: 65px;

        width: 65px;
        height: 65px;

        font-size: 50px;
    }

    .purpose-content h3 {
        font-size: 18px;

        margin-bottom: 9px;
    }

    .purpose-content p {
        font-size: 12px;

        line-height: 1.55;
    }

}


/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 991px) {

    .purpose-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 22px;
    }

    .purpose-description {
        max-width: 700px;
    }

    .purpose-desktop-break {
        display: none;
    }

    .purpose-card {
        min-height: 175px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .purpose-section {
        padding: 25px 18px 30px;
    }

    .purpose-header {
        margin-bottom: 20px;
    }

    .purpose-label {
        font-size: 13px;

        letter-spacing: 1px;
    }

    .purpose-title {
        font-size: 27px;

        line-height: 1.2;
    }

    .purpose-description {
        font-size: 12px;

        line-height: 1.55;
    }

    .purpose-cards-row {
        --bs-gutter-y: 15px;
    }

    .purpose-card {
        min-height: auto;

        padding: 22px 20px;

        gap: 18px;

        border-radius: 11px;
    }

    .purpose-icon {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        font-size: 45px;
    }

    .purpose-content {
        padding-top: 1px;
    }

    .purpose-content h3 {
        font-size: 18px;

        margin-bottom: 7px;
    }

    .purpose-content p {
        font-size: 12px;

        line-height: 1.55;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .purpose-section {
        padding: 23px 14px 27px;
    }

    .purpose-title {
        font-size: 24px;
    }

    .purpose-description {
        font-size: 11.5px;
    }

    .purpose-card {
        padding: 20px 16px;

        gap: 15px;
    }

    .purpose-icon {
        flex: 0 0 50px;

        width: 50px;
        height: 50px;

        font-size: 39px;
    }

    .purpose-content h3 {
        font-size: 16px;
    }

    .purpose-content p {
        font-size: 11px;

        line-height: 1.5;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .purpose-title {
        font-size: 22px;
    }

    .purpose-card {
        padding: 18px 13px;

        gap: 12px;
    }

    .purpose-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 34px;
    }

    .purpose-content h3 {
        font-size: 15px;
    }

    .purpose-content p {
        font-size: 10.5px;
    }

}



/* why choose */

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-choose-section {
    width: 100%;
    background: #ffffff;

    margin: 0;
    padding: 20px 0;
}


/* =====================================================
   MAIN ROW

   Screenshot ratio:
   LEFT  ≈ 37%
   RIGHT ≈ 63%
===================================================== */

.why-choose-row {
    width: 100%;

    display: flex;
    align-items: stretch;

    min-height: 265px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.why-choose-content {
    width: 37.5%;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 10px 25px 10px 5%;

    box-sizing: border-box;
}


/* =====================================================
   LABEL
===================================================== */

.why-choose-label {
    display: block;

    margin-bottom: 4px;

    color: #086bc1;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.2;
}


/* =====================================================
   TITLE
===================================================== */

.why-choose-title {
    margin: 0 0 7px;

    color: #12263b;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 28px;

    font-weight: 800;

    line-height: 1.15;
}

.why-choose-title span {
    color: #086bc5;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.why-choose-description {
    margin: 0 0 12px;

    color: #596675;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.45;
}


/* =====================================================
   CHECK LIST
===================================================== */

.why-choose-list {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


/* =====================================================
   LIST ITEM
===================================================== */

.why-choose-list li {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #34465a;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 11.5px;

    font-weight: 500;

    line-height: 1.3;
}


/* =====================================================
   BLUE CHECK CIRCLE
===================================================== */

.why-check {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0870c9;

    color: #ffffff;

    font-size: 10px;

    line-height: 1;
}


/* =====================================================
   RIGHT IMAGE
===================================================== */

.why-choose-image {
    width: 62.5%;

    height: 265px;

    overflow: hidden;

    border-radius: 8px 0 0 8px;
}


/* =====================================================
   IMAGE

   IMPORTANT:
   Screenshot jaisi large image ke liye
   width 100% + height 100%
===================================================== */

.why-choose-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .why-choose-row {
        min-height: 280px;
    }

    .why-choose-image {
        height: 280px;
    }

    .why-choose-title {
        font-size: 30px;
    }

    .why-choose-list li {
        font-size: 12px;
    }

}


/* =====================================================
   DESKTOP
   1200px - 1399px
===================================================== */

@media (max-width: 1399px) {

    .why-choose-content {
        padding-left: 5%;
        padding-right: 25px;
    }

    .why-choose-title {
        font-size: 27px;
    }

    .why-choose-description {
        font-size: 11.5px;
    }

    .why-choose-list li {
        font-size: 11px;
    }

}


/* =====================================================
   TABLET
   992px - 1199px
===================================================== */

@media (max-width: 1199px) {

    .why-choose-row {
        min-height: 250px;
    }

    .why-choose-content {
        width: 38%;

        padding-left: 4%;
        padding-right: 18px;
    }

    .why-choose-image {
        width: 62%;

        height: 250px;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-label {
        font-size: 11px;
    }

    .why-choose-description {
        font-size: 10.5px;

        margin-bottom: 9px;
    }

    .why-choose-list {
        gap: 5px;
    }

    .why-choose-list li {
        font-size: 10px;
    }

    .why-check {
        flex-basis: 20px;

        width: 20px;
        height: 20px;

        font-size: 9px;
    }

}


/* =====================================================
   SMALL TABLET
   768px - 991px
===================================================== */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 20px 15px;
    }

    .why-choose-row {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }

    .why-choose-content {
        width: 100%;

        padding: 25px 10px;
    }

    .why-choose-image {
        width: 100%;

        height: 320px;

        border-radius: 8px;
    }

    .why-choose-image img {
        height: 320px;
    }

    .why-choose-title {
        font-size: 27px;
    }

    .why-choose-description {
        font-size: 12px;
    }

    .why-choose-list li {
        font-size: 12px;
    }

}


/* =====================================================
   MOBILE
   BELOW 768px
===================================================== */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 18px 12px;
    }

    .why-choose-content {
        padding: 20px 5px 22px;
    }

    .why-choose-label {
        font-size: 11px;
    }

    .why-choose-title {
        font-size: 24px;

        margin-bottom: 8px;
    }

    .why-choose-description {
        font-size: 11.5px;

        margin-bottom: 13px;
    }

    .desktop-only {
        display: none;
    }

    .why-choose-list {
        gap: 8px;
    }

    .why-choose-list li {
        font-size: 11.5px;

        gap: 8px;
    }

    .why-check {
        flex-basis: 22px;

        width: 22px;
        height: 22px;
    }

    .why-choose-image {
        width: 100%;

        height: 280px;

        border-radius: 8px;
    }

    .why-choose-image img {
        width: 100%;
        height: 280px;

        object-fit: cover;
    }

}


/* =====================================================
   SMALL MOBILE
   BELOW 576px
===================================================== */

@media (max-width: 575px) {

    .why-choose-section {
        padding: 15px 10px;
    }

    .why-choose-content {
        padding: 18px 5px 20px;
    }

    .why-choose-title {
        font-size: 22px;
    }

    .why-choose-description {
        font-size: 11px;
    }

    .why-choose-list {
        gap: 7px;
    }

    .why-choose-list li {
        font-size: 10.5px;

        line-height: 1.4;
    }

    .why-check {
        flex-basis: 21px;

        width: 21px;
        height: 21px;

        font-size: 9px;
    }

    .why-choose-image {
        height: 245px;
    }

    .why-choose-image img {
        height: 245px;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
   BELOW 400px
===================================================== */

@media (max-width: 400px) {

    .why-choose-title {
        font-size: 20px;
    }

    .why-choose-description {
        font-size: 10.5px;
    }

    .why-choose-list li {
        font-size: 10px;
    }

    .why-choose-image {
        height: 215px;
    }

    .why-choose-image img {
        height: 215px;
    }

}

/* people section about us  */

/* =====================================================
   MEET OUR TEAM SECTION
===================================================== */

.meet-team-section {
    width: 100%;
    background: #ffffff;
    padding: 35px 4.8%;
    overflow: hidden;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.meet-team-section .row {
    width: 100%;
    margin: 0;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.meet-team-content {
    padding-left: 1px;
    padding-right: 20px;
}


/* =====================================================
   SMALL BLUE LABEL
===================================================== */

.meet-team-label {
    display: block;

    margin-bottom: 7px;

    color: #086bc5;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.1px;

    line-height: 1.2;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.meet-team-title {
    margin: 0 0 13px;

    color: #10263d;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 35px;

    font-weight: 800;

    line-height: 1.15;
}

.meet-team-title span {
    color: #086bc5;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.meet-team-description {
    max-width: 520px;

    margin: 0 0 25px;

    color: #566474;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
   OUR TEAM BUTTON
===================================================== */

.meet-team-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 190px;

    padding: 13px 22px;

    background: #0871ce;

    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.meet-team-btn:hover {
    background: #075ca8;

    color: #ffffff;

    transform: translateY(-2px);
}

.meet-team-btn i {
    font-size: 13px;
}


/* =====================================================
   CENTER TEAM IMAGE
===================================================== */

.meet-team-image {
    width: 100%;

    height: 340px;

    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.meet-team-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.4s ease;
}

.meet-team-image:hover img {
    transform: scale(1.02);
}


/* =====================================================
   RIGHT BLUE CTA CARD
===================================================== */

.meet-team-cta {
    position: relative;

    width: 100%;

    min-height: 340px;

    padding: 32px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #073b67;

    border-radius: 10px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =====================================================
   SMALL PLANE
===================================================== */

.cta-plane {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1;
}

.cta-plane i {
    transform: rotate(-15deg);
}


/* =====================================================
   CTA HEADING
===================================================== */

.meet-team-cta h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 26px;

    font-weight: 800;

    line-height: 1.15;
}


/* =====================================================
   CTA DESCRIPTION
===================================================== */

.meet-team-cta p {
    max-width: 310px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.88);

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.cta-contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    align-self: flex-start;

    gap: 12px;

    min-width: 165px;

    padding: 13px 20px;

    background: #ffffff;

    color: #12263b;

    border-radius: 8px;

    text-decoration: none;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.cta-contact-btn:hover {
    background: #f1f5f9;

    color: #12263b;

    transform: translateY(-2px);
}

.cta-contact-btn i {
    color: #086bc5;

    font-size: 12px;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .meet-team-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .meet-team-image,
    .meet-team-cta {
        height: 340px;
        min-height: 340px;
    }

    .meet-team-title {
        font-size: 36px;
    }

}


/* =====================================================
   DESKTOP
===================================================== */

@media (max-width: 1399px) {

    .meet-team-section {
        padding-left: 4.5%;
        padding-right: 4.5%;
    }

    .meet-team-title {
        font-size: 32px;
    }

    .meet-team-description {
        font-size: 13px;
    }

    .meet-team-image,
    .meet-team-cta {
        height: 320px;
        min-height: 320px;
    }

    .meet-team-cta {
        padding: 28px 24px;
    }

    .meet-team-cta h3 {
        font-size: 23px;
    }

}


/* =====================================================
   TABLET
   992px - 1199px
===================================================== */

@media (max-width: 1199px) {

    .meet-team-section {
        padding: 30px 3.5%;
    }

    .meet-team-label {
        font-size: 11px;
    }

    .meet-team-title {
        font-size: 28px;
    }

    .meet-team-description {
        font-size: 12px;
    }

    .meet-team-image,
    .meet-team-cta {
        height: 290px;
        min-height: 290px;
    }

    .meet-team-cta {
        padding: 24px 20px;
    }

    .meet-team-cta h3 {
        font-size: 20px;
    }

    .meet-team-cta p {
        font-size: 11px;
    }

}


/* =====================================================
   SMALL TABLET
   BELOW 992px
===================================================== */

@media (max-width: 991px) {

    .meet-team-section {
        padding: 35px 25px;
    }

    .meet-team-content {
        text-align: left;

        padding: 0;
    }

    .meet-team-title {
        font-size: 31px;
    }

    .meet-team-description {
        max-width: 650px;

        font-size: 13px;
    }

    .meet-team-image {
        width: 100%;

        height: 330px;
    }

    .meet-team-cta {
        width: 100%;

        height: 330px;
        min-height: 330px;

        padding: 30px;
    }

}


/* =====================================================
   MOBILE
   BELOW 768px
===================================================== */

@media (max-width: 767px) {

    .meet-team-section {
        padding: 30px 15px;
    }

    .meet-team-content {
        padding-bottom: 5px;
    }

    .meet-team-label {
        font-size: 10px;

        letter-spacing: 0.9px;
    }

    .meet-team-title {
        font-size: 27px;

        margin-bottom: 10px;
    }

    .meet-team-description {
        font-size: 12px;

        line-height: 1.6;

        margin-bottom: 18px;
    }

    .meet-team-btn {
        min-width: 165px;

        padding: 12px 18px;

        font-size: 12px;
    }


    /* IMAGE */

    .meet-team-image {
        height: 300px;

        border-radius: 8px;
    }


    /* CTA */

    .meet-team-cta {
        min-height: 300px;

        height: auto;

        padding: 28px 25px;

        border-radius: 8px;
    }

    .meet-team-cta h3 {
        font-size: 23px;
    }

    .meet-team-cta p {
        font-size: 11.5px;

        max-width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
   BELOW 576px
===================================================== */

@media (max-width: 575px) {

    .meet-team-section {
        padding: 25px 12px;
    }

    .meet-team-title {
        font-size: 24px;
    }

    .meet-team-description {
        font-size: 11px;
    }

    .meet-team-btn {
        min-width: 150px;

        padding: 11px 16px;

        font-size: 11px;
    }

    .meet-team-image {
        height: 250px;
    }

    .meet-team-cta {
        min-height: 270px;

        padding: 25px 20px;
    }

    .cta-plane {
        font-size: 22px;
    }

    .meet-team-cta h3 {
        font-size: 21px;
    }

    .meet-team-cta p {
        font-size: 10.5px;

        line-height: 1.5;
    }

    .cta-contact-btn {
        min-width: 145px;

        padding: 11px 16px;

        font-size: 11px;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
   BELOW 400px
===================================================== */

@media (max-width: 400px) {

    .meet-team-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .meet-team-title {
        font-size: 22px;
    }

    .meet-team-image {
        height: 220px;
    }

    .meet-team-cta {
        min-height: 250px;

        padding: 22px 18px;
    }

    .meet-team-cta h3 {
        font-size: 19px;
    }

}

/* review about us  */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8fafc;
}

.testimonials-section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.sub-title {
  color: #1a56db;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.main-title {
  font-size: 32px;
  color: #111827;
  font-weight: 800;
}

.main-title span {
  color: #1d4ed8;
}

.view-more {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.view-more:hover {
  color: #1e3a8a;
}

/* Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Styling */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.user-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.rating {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-title {
    font-size: 26px;
  }
}


/* contact-us hero  */

/* ================= CONTACT SECTION ================= */

.contact-holiday-section {
    position: relative;
    min-height: 500px;
    background-image: url("../images/contact-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 27, 30, 0.92) 0%,
        rgba(4, 27, 30, 0.70) 40%,
        rgba(4, 27, 30, 0.10) 100%
    );
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: 65px 80px;
}

.contact-label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 7px;
    margin-bottom: 15px;
}

.contact-content h2 {
    color: white;
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-content h2 span {
    color: #ff7200;
    font-family: cursive;
    font-weight: 500;
}

.contact-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 35px;
}

.contact-options {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.contact-text h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-text p {
    color: white;
    font-size: 16px;
    margin: 0;
}


/* RIGHT SIDE */

.travel-message {
    position: absolute;
    right: 80px;
    top: 110px;
    color: white;
    text-align: center;
}

.travel-message p {
    font-family: cursive;
    font-size: 30px;
    line-height: 1.3;
}

.travel-message span {
    font-size: 45px;
    display: block;
    margin-top: 15px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .contact-content h2 {
        font-size: 50px;
    }

    .travel-message {
        display: none;
    }

}


@media (max-width: 768px) {

    .contact-container {
        padding: 60px 25px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-options {
        flex-direction: column;
        gap: 20px;
    }

}


/* contact us second section  */

/* =====================================================
   CONTACT SECTION START
===================================================== */

.contact-section {
    background: #ffffff;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}


/* =========================
   LEFT FORM BOX
========================= */

.contact-form-box {
    background: #f4f9ff;
    padding: 35px 25px;
    border-radius: 18px;
}


/* =========================
   HEADINGS
========================= */

.contact-small-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #245895;
    margin-bottom: 8px;
}


.contact-heading h2,
.details-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1c2c3f;
    margin-bottom: 8px;
}


.contact-heading h2 span,
.details-heading h2 span {
    color: #245895;
}


.contact-heading p,
.details-heading p {
    font-size: 16px;
    color: #596579;
    margin-bottom: 22px;
    line-height: 1.6;
}


/* =========================
   INPUT BOX
========================= */

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}


.input-group-custom > i:first-child {
    position: absolute;
    left: 17px;
    z-index: 2;
    font-size: 20px;
    color: #5f6b7a;
}


.input-group-custom .form-control {
    height: 55px;
    padding-left: 48px;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    color: #4b5563;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}


.input-group-custom .form-control:focus {
    border-color: #245895;
    box-shadow: 0 0 0 0.2rem rgba(36, 88, 149, 0.12);
}


.calendar-icon {
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #5f6b7a;
}


/* =========================
   MESSAGE BOX
========================= */

.message-box textarea {
    resize: none;
    padding: 17px;
    border-radius: 8px;
    border: 1px solid #e1e6ed;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}


.message-box textarea:focus {
    border-color: #245895;
    box-shadow: 0 0 0 0.2rem rgba(36, 88, 149, 0.12);
}


/* =========================
   SEND BUTTON
========================= */

.contact-submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 7px;
    background: #15549a;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}


.contact-submit-btn i {
    margin-right: 10px;
    font-size: 18px;
}


.contact-submit-btn:hover {
    background: #0d4179;
    transform: translateY(-2px);
}


/* =========================
   RIGHT SIDE
========================= */

.contact-details-wrapper {
    padding: 10px 0 0 0;
}


.details-heading {
    margin-bottom: 10px;
}


/* =========================
   CONTACT INFO CARD
========================= */

.contact-info-card {
    min-height: 130px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}


.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =========================
   CONTACT ICON
========================= */

.contact-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.contact-icon i {
    font-size: 25px;
    color: #ffffff;
}


/* Blue */

.call-icon,
.email-icon {
    background: #15549a;
}


/* Green */

.whatsapp-icon {
    background: #138c55;
}


/* Red */

.location-icon {
    background: #e52d2d;
}


/* =========================
   CONTACT CONTENT
========================= */

.contact-info-content {
    min-width: 0;
}


.contact-info-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 5px;
}


.contact-info-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #245895;
    margin-bottom: 6px;
    word-break: break-word;
}


.contact-info-content p {
    font-size: 13px;
    color: #667085;
    margin-bottom: 0;
    line-height: 1.7;
}


.contact-info-content .address-text {
    font-size: 14px;
    color: #465161;
    margin-bottom: 5px;
}


/* =====================================================
   LARGE LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .contact-heading h2,
    .details-heading h2 {
        font-size: 34px;
    }


    .contact-info-card {
        padding: 15px;
        gap: 12px;
    }


    .contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }


    .contact-icon i {
        font-size: 22px;
    }


    .contact-info-content h4 {
        font-size: 15px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contact-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }


    .contact-form-box {
        padding: 30px 25px;
    }


    .contact-details-wrapper {
        padding-top: 15px;
    }


    .details-heading {
        margin-top: 10px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .contact-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }


    .contact-form-box {
        padding: 25px 18px;
        border-radius: 14px;
    }


    .contact-heading h2,
    .details-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }


    .contact-heading p,
    .details-heading p {
        font-size: 14px;
    }


    .contact-small-title {
        font-size: 10px;
        letter-spacing: 2px;
    }


    .input-group-custom .form-control {
        height: 52px;
    }


    .contact-info-card {
        min-height: auto;
        padding: 18px;
    }

}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {

    .contact-heading h2,
    .details-heading h2 {
        font-size: 27px;
    }


    .contact-info-card {
        gap: 12px;
        padding: 15px;
    }


    .contact-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }


    .contact-icon i {
        font-size: 20px;
    }


    .contact-info-content h5 {
        font-size: 15px;
    }


    .contact-info-content h4 {
        font-size: 14px;
    }


    .contact-info-content p {
        font-size: 12px;
    }

}


/* =====================================================
   CONTACT SECTION END
===================================================== */



.travel-date-input {
    cursor: pointer;
}

/* Date input ke andar calendar icon ko clickable rakhega */
.travel-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}

/* =====================================================
   LOCATION SECTION
===================================================== */

.location-section {
    padding: 70px 0;
    background: #ffffff;
}


/* =========================
   SECTION SMALL TITLE
========================= */

.location-small-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #245895;
    margin-bottom: 8px;
}


/* =========================
   MAIN TITLE
========================= */

.location-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e2d3d;
    margin-bottom: 8px;
}


.location-title span {
    color: #245895;
}


/* =========================
   DESCRIPTION
========================= */

.location-description {
    font-size: 15px;
    color: #5f6b7a;
    margin-bottom: 20px;
}


/* =========================
   MAP BOX
========================= */

.location-map-box {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
}


.location-map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* =========================
   MAP LOCATION INFORMATION
========================= */

.map-location-info {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;

    width: 220px;

    padding: 14px;

    background: #ffffff;

    border-radius: 5px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


.map-location-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #253447;
    margin-bottom: 5px;
}


.map-location-info p {
    font-size: 11px;
    color: #5f6b7a;
    margin-bottom: 8px;
}


.map-location-info a {
    font-size: 12px;
    font-weight: 600;
    color: #245895;
    text-decoration: none;
}


.map-location-info a:hover {
    text-decoration: underline;
}


/* =========================
   OFFICE IMAGE
========================= */

.office-image-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
}


.office-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: 0.4s ease;
}


.office-image-box:hover img {
    transform: scale(1.05);
}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .location-title {
        font-size: 32px;
    }


    .location-map-box,
    .office-image-box {
        height: 300px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .location-section {
        padding: 55px 0;
    }


    .location-map-box,
    .office-image-box {
        height: 350px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .location-section {
        padding: 45px 0;
    }


    .location-title {
        font-size: 29px;
    }


    .location-description {
        font-size: 14px;
    }


    .location-map-box,
    .office-image-box {
        height: 280px;
        border-radius: 10px;
    }


    .map-location-info {
        width: 190px;
        padding: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .location-title {
        font-size: 26px;
    }


    .location-map-box,
    .office-image-box {
        height: 240px;
    }


    .map-location-info {
        width: 170px;
        top: 8px;
        left: 8px;
    }


    .map-location-info h5 {
        font-size: 12px;
    }


    .map-location-info p,
    .map-location-info a {
        font-size: 10px;
    }

}

/* =====================================================
   FAQ SECTION START
===================================================== */

.travel-faq-section {
    padding: 70px 0;
    background: #f5f9fd;
    overflow: hidden;
}


/* ================= LEFT CONTENT ================= */

.faq-left-content {
    position: relative;
}


.faq-image-box {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.faq-luggage-img {
    width: 100%;
    max-width: 270px;
    position: relative;
    z-index: 2;
}


/* ================= PLANE ================= */

.faq-plane {
    position: absolute;
    top: 0;
    right: 35px;
    z-index: 3;

    color: #16599d;
    font-size: 35px;

    transform: rotate(-25deg);
}


/* ================= DOTTED LINE ================= */

.faq-dotted-line {
    position: absolute;

    width: 140px;
    height: 140px;

    top: 40px;
    left: 5px;

    border-left: 2px dashed #174f86;
    border-top: 2px dashed #174f86;

    border-radius: 50%;

    transform: rotate(-35deg);

    z-index: 1;
}


/* ================= TEXT ================= */

.faq-small-title {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #245895;

    margin-bottom: 10px;
}


.faq-content h2 {
    font-size: 36px;
    font-weight: 700;

    color: #1d2c3d;

    margin-bottom: 10px;
}


.faq-content h2 span {
    color: #245895;
}


.faq-content p {
    font-size: 15px;

    color: #657080;

    margin-bottom: 22px;
}


/* ================= FAQ BUTTON ================= */

.faq-btn {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 14px 28px;

    background: #15569c;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 8px;

    transition: 0.3s ease;
}


.faq-btn:hover {
    background: #0d4178;
    color: #ffffff;

    transform: translateY(-2px);
}


/* ================= ACCORDION ================= */

.faq-accordion-wrapper {
    width: 100%;
}


.travel-faq-section .accordion-item {

    border: none;

    margin-bottom: 10px;

    border-radius: 10px !important;

    overflow: hidden;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.05);
}


.travel-faq-section .accordion-button {

    padding: 17px 22px;

    background: #ffffff;

    color: #263547;

    font-size: 15px;

    font-weight: 600;

    box-shadow: none;
}


.travel-faq-section .accordion-button:not(.collapsed) {

    background: #ffffff;

    color: #15569c;

    box-shadow: none;
}


.travel-faq-section .accordion-button:focus {

    box-shadow: none;

    border-color: transparent;
}


/* Accordion Arrow */

.travel-faq-section .accordion-button::after {

    background-size: 16px;

    transition: 0.3s ease;
}


/* ================= ACCORDION BODY ================= */

.travel-faq-section .accordion-body {

    padding: 0 22px 20px;

    font-size: 14px;

    color: #657080;

    line-height: 1.7;
}


/* =====================================================
   LARGE LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .faq-content h2 {
        font-size: 32px;
    }


    .faq-luggage-img {
        max-width: 230px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .travel-faq-section {
        padding: 55px 0;
    }


    .faq-left-content {
        margin-bottom: 25px;
    }


    .faq-content {
        padding-left: 10px;
    }


    .faq-image-box {
        min-height: 220px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .travel-faq-section {
        padding: 45px 0;
    }


    .faq-image-box {
        min-height: auto;

        margin-bottom: 25px;
    }


    .faq-luggage-img {
        max-width: 220px;
    }


    .faq-plane {
        right: 25%;
        top: -20px;
    }


    .faq-content {
        text-align: center;

        padding-left: 0;
    }


    .faq-content h2 {
        font-size: 30px;
    }


    .faq-content p {
        font-size: 14px;
    }


    .faq-small-title {
        font-size: 10px;
        letter-spacing: 3px;
    }


    .faq-dotted-line {
        left: 20%;
    }


    .faq-btn {
        justify-content: center;
    }


    .travel-faq-section .accordion-button {
        padding: 15px;

        font-size: 14px;
    }

}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {

    .faq-content h2 {
        font-size: 27px;
    }


    .faq-luggage-img {
        max-width: 180px;
    }


    .faq-plane {
        font-size: 28px;
    }


    .faq-dotted-line {
        width: 110px;
        height: 110px;

        left: 15%;
    }


    .faq-btn {
        width: 100%;
    }

}


/* =====================================================
   FAQ SECTION END
===================================================== */

/* =====================================================
   STILL HAVE QUESTIONS CTA SECTION START
===================================================== */

.questions-cta-section {
    position: relative;
    width: 100%;
    padding: 35px 0;

    background-image: url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* ================= BACKGROUND OVERLAY ================= */

.questions-cta-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 30, 50, 0.55);

    z-index: 1;
}


/* ================= CONTAINER ================= */

.questions-cta-section .container {
    z-index: 2;
}


/* ================= LEFT CONTENT ================= */

.questions-cta-content {
    color: #ffffff;
}


.questions-cta-content h2 {
    font-size: 34px;
    font-weight: 700;

    margin-bottom: 5px;

    color: #ffffff;
}


.questions-cta-content p {
    font-size: 16px;

    margin-bottom: 20px;

    color: #ffffff;
}


/* ================= BUTTONS ================= */

.questions-cta-buttons {
    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* ================= WHATSAPP BUTTON ================= */

.cta-whatsapp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 240px;

    padding: 16px 25px;

    border-radius: 12px;

    background: #119447;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}


.cta-whatsapp-btn:hover {
    background: #087c39;

    color: #ffffff;

    transform: translateY(-3px);
}


.cta-whatsapp-btn i {
    font-size: 21px;
}


/* ================= CALL BUTTON ================= */

.cta-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 190px;

    padding: 15px 25px;

    border: 2px solid rgba(255, 255, 255, 0.80);

    border-radius: 12px;

    background: rgba(10, 40, 60, 0.25);

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}


.cta-call-btn:hover {
    background: #ffffff;

    color: #15569c;

    transform: translateY(-3px);
}


.cta-call-btn i {
    font-size: 18px;
}


/* ================= RIGHT JOURNEY TEXT ================= */

.journey-text {
    text-align: right;

    color: #ffffff;

    padding-right: 30px;
}


.journey-text p {
    font-family: "Caveat", cursive;

    font-size: 38px;

    line-height: 1.05;

    font-weight: 600;

    margin: 0;

    color: #ffffff;
}


.journey-text i {
    font-size: 38px;

    margin-top: 5px;

    transform: rotate(20deg);

    color: #ffffff;
}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .questions-cta-content h2 {
        font-size: 30px;
    }


    .journey-text p {
        font-size: 33px;
    }


    .cta-whatsapp-btn {
        min-width: 210px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .questions-cta-section {
        padding: 45px 0;

        background-position: center;
    }


    .journey-text {
        text-align: center;

        padding: 30px 0 0;
    }


    .questions-cta-content {
        text-align: center;
    }


    .questions-cta-buttons {
        justify-content: center;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .questions-cta-section {
        padding: 40px 0;
    }


    .questions-cta-content h2 {
        font-size: 28px;
    }


    .questions-cta-content p {
        font-size: 14px;
    }


    .questions-cta-buttons {
        flex-direction: column;

        gap: 12px;
    }


    .cta-whatsapp-btn,
    .cta-call-btn {
        width: 100%;

        min-width: auto;
    }


    .journey-text {
        padding-top: 25px;
    }


    .journey-text p {
        font-size: 30px;
    }

}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {

    .questions-cta-content h2 {
        font-size: 25px;
    }


    .journey-text p {
        font-size: 27px;
    }


    .cta-whatsapp-btn,
    .cta-call-btn {
        padding: 14px 18px;

        font-size: 14px;
    }

}


/* =====================================================
   STILL HAVE QUESTIONS CTA SECTION END
===================================================== */


/* kashmir  main hero section  */
/* =====================================================
   KASHMIR TOUR HERO SECTION START
===================================================== */

.kashmir-tour-hero {
    position: relative;
    width: 100%;
    min-height: 335px;
    overflow: hidden;

    display: flex;
    align-items: center;

    color: #ffffff;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.kashmir-tour-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.kashmir-tour-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(3, 24, 28, 0.88) 0%,
            rgba(3, 24, 28, 0.65) 35%,
            rgba(3, 24, 28, 0.25) 70%,
            rgba(3, 24, 28, 0.10) 100%
        );

    z-index: 1;
}


/* =====================================================
   BOOTSTRAP CONTAINER
===================================================== */

.kashmir-tour-hero .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.kashmir-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 15px;
}


.kashmir-breadcrumb a,
.kashmir-breadcrumb span {
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    opacity: 0.95;
}


.kashmir-breadcrumb a:hover {
    color: #ffffff;
}


.kashmir-breadcrumb i {
    font-size: 10px;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.kashmir-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: 76px;
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -2px;
}


.kashmir-heading h2 {
    margin: 10px 0 0;

    color: #ffffff;

    font-size: 49px;
    font-weight: 700;

    line-height: 1;
}


.kashmir-heading p {
    margin: 16px 0 0;

    color: #ffffff;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.4;
}


/* =====================================================
   FEATURES
===================================================== */

.kashmir-feature-row {
    margin-top: 25px;

    max-width: 700px;
}


/* Feature Box */

.kashmir-feature {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 48px;
}


/* Vertical Divider */

.kashmir-feature::after {
    content: "";

    position: absolute;

    top: 5px;
    right: 5px;

    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.35);
}


.kashmir-feature-last::after {
    display: none;
}


/* =====================================================
   FEATURE ICON
===================================================== */

.kashmir-feature-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
}


.kashmir-feature-icon i {
    color: #ffffff;

    font-size: 29px;
}


/* =====================================================
   FEATURE TEXT
===================================================== */

.kashmir-feature-text {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.35;
}


/* =====================================================
   RIGHT DISCOVER CONTENT
===================================================== */

.kashmir-discover {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    min-height: 250px;

    padding-right: 5px;
}


/* Handwriting Text */

.discover-text {
    display: flex;
    flex-direction: column;

    align-items: center;

    color: #ffffff;

    font-family: "Caveat", cursive;

    font-size: 39px;
    font-weight: 500;

    line-height: 0.95;

    transform: rotate(-5deg);

    text-align: center;
}


.discover-text span {
    display: block;
}


/* Plane */

.discover-plane {
    margin-left: 15px;
    margin-bottom: 10px;
}


.discover-plane i {
    color: #ffffff;

    font-size: 38px;

    transform: rotate(25deg);

    display: inline-block;
}


/* =====================================================
   LARGE LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1399px) {

    .kashmir-heading h1 {
        font-size: 68px;
    }


    .kashmir-heading h2 {
        font-size: 44px;
    }


    .discover-text {
        font-size: 34px;
    }


    .kashmir-feature-row {
        max-width: 650px;
    }

}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .kashmir-tour-hero {
        min-height: 360px;
    }


    .kashmir-heading h1 {
        font-size: 62px;
    }


    .kashmir-heading h2 {
        font-size: 40px;
    }


    .kashmir-heading p {
        font-size: 18px;
    }


    .kashmir-feature {
        gap: 10px;
    }


    .kashmir-feature-icon i {
        font-size: 25px;
    }


    .kashmir-feature-text {
        font-size: 12px;
    }


    .discover-text {
        font-size: 30px;
    }


    .discover-plane i {
        font-size: 30px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .kashmir-tour-hero {
        min-height: auto;

        padding: 50px 0;
    }


    .kashmir-heading h1 {
        font-size: 58px;
    }


    .kashmir-heading h2 {
        font-size: 38px;
    }


    .kashmir-feature-row {
        max-width: 100%;
    }


    .kashmir-feature {
        margin-bottom: 15px;
    }


    .kashmir-feature::after {
        display: none;
    }


    /* Right Text */

    .kashmir-discover {
        min-height: auto;

        justify-content: center;

        margin-top: 10px;

        padding: 20px 0 0;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .kashmir-tour-hero {
        padding: 40px 0;

        min-height: auto;
    }


    .kashmir-tour-bg {
        object-position: center;
    }


    .kashmir-tour-overlay {
        background: rgba(3, 24, 28, 0.72);
    }


    /* Breadcrumb */

    .kashmir-breadcrumb {
        gap: 7px;

        margin-bottom: 18px;
    }


    .kashmir-breadcrumb a,
    .kashmir-breadcrumb span {
        font-size: 10px;
    }


    /* Heading */

    .kashmir-heading h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }


    .kashmir-heading h2 {
        font-size: 34px;
    }


    .kashmir-heading p {
        font-size: 16px;

        margin-top: 12px;
    }


    /* Features */

    .kashmir-feature-row {
        margin-top: 25px;
    }


    .kashmir-feature {
        margin-bottom: 15px;
    }


    .kashmir-feature-icon i {
        font-size: 26px;
    }


    .kashmir-feature-text {
        font-size: 12px;
    }


    /* Right Content */

    .kashmir-discover {
        justify-content: center;

        padding-top: 10px;
    }


    .discover-text {
        font-size: 32px;
    }

}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 575px) {

    .kashmir-tour-hero {
        padding: 35px 0;
    }


    .kashmir-heading h1 {
        font-size: 43px;
    }


    .kashmir-heading h2 {
        font-size: 29px;
    }


    .kashmir-heading p {
        font-size: 14px;
    }


    .kashmir-feature {
        gap: 10px;
    }


    .kashmir-feature-icon {
        min-width: 30px;
    }


    .kashmir-feature-icon i {
        font-size: 22px;
    }


    .discover-text {
        font-size: 29px;
    }


    .discover-plane {
        margin-left: 10px;
    }


    .discover-plane i {
        font-size: 28px;
    }

}


/* =====================================================
   KASHMIR TOUR HERO SECTION END
===================================================== */


/* =====================================================
   KASHMIR INTRO SECTION
===================================================== */

.kashmir-intro-section {
    width: 100%;
    padding: 22px 0;

    background: linear-gradient(
        90deg,
        #f7f9fa 0%,
        #e9f0f5 50%,
        #f7f9fa 100%
    );

    border-top: 1px solid #d8e1e7;
    border-bottom: 1px solid #d8e1e7;
}


/* =====================================================
   LEFT TEXT
===================================================== */

.kashmir-intro-text {
    padding-left: 15px;
}


.kashmir-intro-text p {
    margin: 0;

    color: #364452;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
   RIGHT LOGO
===================================================== */

.kashmir-logo-box {
    display: flex;

    align-items: center;
    justify-content: flex-end;
}


.kashmir-logo-image {
    width: 100%;
    max-width: 470px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .kashmir-intro-text p {
        font-size: 15px;
    }


    .kashmir-logo-image {
        max-width: 390px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .kashmir-intro-section {
        padding: 25px 0;
    }


    .kashmir-intro-text {
        padding-left: 0;
        text-align: center;
    }


    .kashmir-logo-box {
        justify-content: center;

        margin-top: 20px;
    }


    .kashmir-logo-image {
        max-width: 420px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .kashmir-intro-section {
        padding: 22px 0;
    }


    .kashmir-intro-text p {
        font-size: 14px;

        line-height: 1.6;
    }


    .kashmir-logo-box {
        margin-top: 18px;
    }


    .kashmir-logo-image {
        max-width: 300px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kashmir-intro-text p {
        font-size: 13px;
    }


    .kashmir-logo-image {
        max-width: 240px;
    }

}



/* =====================================================
   KASHMIR TOUR PACKAGES SECTION
===================================================== */

.kashmir-packages-section {
    padding: 50px 0;
    background: #f7f9fc;
}


/* =====================================================
   FILTER SIDEBAR
===================================================== */

.package-filter-box {
    background: #ffffff;

    padding: 20px;

    border: 1px solid #dce3ea;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}


/* FILTER HEADING */

.filter-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.filter-heading h4 {
    margin: 0;

    font-size: 20px;

    font-weight: 700;

    color: #263544;
}


.filter-heading i {
    font-size: 23px;

    color: #15579c;
}


.package-filter-box hr {
    border-color: #dce3ea;

    margin: 18px 0;
}


/* FILTER GROUP */

.filter-group {
    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid #e2e7ec;
}


.package-type-group {
    border-bottom: none;
}


.filter-group h5 {
    font-size: 15px;

    font-weight: 700;

    color: #303b48;

    margin-bottom: 14px;
}


.filter-group label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    cursor: pointer;

    color: #56616d;

    font-size: 14px;
}


.filter-group input {
    width: 16px;

    height: 16px;

    accent-color: #15579c;
}


/* APPLY FILTER */

.apply-filter-btn {
    width: 100%;

    border: none;

    padding: 13px 15px;

    border-radius: 7px;

    background: #14589f;

    color: #ffffff;

    font-weight: 600;

    font-size: 15px;

    cursor: pointer;

    transition: 0.3s;
}


.apply-filter-btn:hover {
    background: #0d4784;
}


/* =====================================================
   TOP AREA
===================================================== */

.package-top-area {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;
}


.package-top-area h2 {
    margin: 0 0 4px;

    color: #253444;

    font-size: 30px;

    font-weight: 700;
}


.package-top-area h2 span {
    color: #1d5a99;
}


.package-top-area p {
    margin: 0;

    font-size: 14px;

    color: #65717e;
}


/* =====================================================
   SORT BOX
===================================================== */

.sort-package-box {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.sort-package-box span {
    font-size: 13px;

    font-weight: 600;

    color: #343f4b;
}


.sort-package-box select {
    width: 135px;

    height: 38px;

    padding: 0 10px;

    border: 1px solid #d5dde5;

    border-radius: 6px;

    color: #596572;

    font-size: 13px;

    outline: none;

    background-color: #ffffff;
}


/* =====================================================
   PACKAGE CARD
===================================================== */

.tour-package-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #dce3ea;

    border-radius: 9px;

    overflow: hidden;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);

    transition: 0.3s;
}


.tour-package-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}


/* =====================================================
   PACKAGE IMAGE
===================================================== */

.package-image {
    position: relative;

    width: 100%;

    height: 150px;

    overflow: hidden;
}


.package-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   PACKAGE BADGE
===================================================== */

.package-badge {
    position: absolute;

    top: 10px;

    left: 10px;

    padding: 7px 14px;

    border-radius: 4px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;
}


.popular-badge {
    background: #f4511e;
}


.seller-badge {
    background: #128447;
}


.honeymoon-badge {
    background: #ed2445;
}


.family-badge {
    background: #14589f;
}


.luxury-badge {
    background: #6824d6;
}


.winter-badge {
    background: #1d5a99;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.package-card-content {
    padding: 13px;
}


.package-card-content h4 {
    margin: 0 0 5px;

    color: #263544;

    font-size: 16px;

    font-weight: 700;
}


/* DURATION */

.package-duration {
    color: #205894;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 5px;
}


/* DESCRIPTION */

.package-card-content p {
    color: #65717e;

    font-size: 13px;

    line-height: 1.45;

    margin-bottom: 13px;
}


/* =====================================================
   FEATURES
===================================================== */

.package-features {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 5px;

    margin-bottom: 15px;
}


.package-features span {
    font-size: 11px;

    color: #56616d;

    white-space: nowrap;
}


.package-features i {
    color: #33485d;

    margin-right: 3px;
}


/* =====================================================
   PRICE
===================================================== */

.package-price {
    color: #1c5797;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;
}


.package-price small {
    color: #394653;

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   BUTTONS
===================================================== */

.package-buttons {
    display: flex;

    gap: 8px;
}


.package-buttons a {
    width: 50%;

    padding: 10px 5px;

    text-align: center;

    text-decoration: none;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s;
}


/* VIEW DETAILS */

.view-details-btn {
    border: 1px solid #1d5a99;

    color: #1d5a99;

    background: #ffffff;
}


.view-details-btn:hover {
    background: #1d5a99;

    color: #ffffff;
}


/* ENQUIRE */

.enquire-now-btn {
    background: #15589e;

    color: #ffffff;
}


.enquire-now-btn:hover {
    background: #0d4784;

    color: #ffffff;
}


/* =====================================================
   BOTTOM WIDE CARDS
===================================================== */

.wide-package-card .package-image {
    height: 160px;
}


/* =====================================================
   LARGE SCREEN
===================================================== */

@media (min-width: 1200px) {

    .package-filter-box {
        position: sticky;

        top: 20px;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .kashmir-packages-section {
        padding: 35px 0;
    }


    .package-filter-box {
        margin-bottom: 10px;
    }


    .package-top-area {
        margin-top: 10px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .package-top-area {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .package-top-area h2 {
        font-size: 25px;
    }


    .package-top-area p {
        font-size: 13px;
    }


    .sort-package-box {
        width: 100%;
    }


    .sort-package-box select {
        flex: 1;
    }


    .package-image {
        height: 200px;
    }


    .wide-package-card .package-image {
        height: 200px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kashmir-packages-section {
        padding: 25px 0;
    }


    .package-filter-box {
        padding: 16px;
    }


    .package-top-area h2 {
        font-size: 22px;
    }


    .package-features {
        flex-wrap: wrap;

        gap: 10px;
    }


    .package-price {
        font-size: 20px;
    }

}

/* =====================================================
   KASHMIR TOUR PACKAGES SECTION
===================================================== */

.kashmir-packages-section {
    padding: 50px 0;
    background: #f7f9fc;
}


/* =====================================================
   FILTER BOX
===================================================== */

.package-filter-box {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}


.filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.filter-heading h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #263544;
}


.filter-heading i {
    font-size: 22px;
    color: #15579c;
}


.package-filter-box hr {
    margin: 18px 0;
    border-color: #dce3ea;
}


/* =====================================================
   FILTER GROUP
===================================================== */

.filter-group {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e2e7ec;
}


.package-type-group {
    border-bottom: none;
    margin-bottom: 10px;
}


.filter-group h5 {
    font-size: 15px;
    font-weight: 700;
    color: #303b48;
    margin-bottom: 14px;
}


.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    cursor: pointer;
    color: #56616d;
    font-size: 14px;
}


.filter-group input {
    width: 16px;
    height: 16px;
    accent-color: #15579c;
}


/* =====================================================
   APPLY FILTER BUTTON
===================================================== */

.apply-filter-btn {
    width: 100%;
    border: none;
    padding: 13px 15px;
    border-radius: 7px;
    background: #14589f;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}


.apply-filter-btn:hover {
    background: #0d4784;
}


/* =====================================================
   TOP HEADING AREA
===================================================== */

.package-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.package-top-area h2 {
    margin: 0 0 4px;
    color: #253444;
    font-size: 30px;
    font-weight: 700;
}


.package-top-area h2 span {
    color: #1d5a99;
}


.package-top-area p {
    margin: 0;
    font-size: 14px;
    color: #65717e;
}


/* =====================================================
   SORT
===================================================== */

.sort-package-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


.sort-package-box span {
    font-size: 13px;
    font-weight: 600;
    color: #343f4b;
}


.sort-package-box select {
    width: 135px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d5dde5;
    border-radius: 6px;
    color: #596572;
    font-size: 13px;
    outline: none;
    background: #ffffff;
}


/* =====================================================
   TOUR PACKAGE CARD
===================================================== */

.tour-package-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #dce3ea;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}


.tour-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}


/* =====================================================
   CARD IMAGE
===================================================== */

.package-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}


.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =====================================================
   BADGES
===================================================== */

.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 7px 13px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}


.popular-badge {
    background: #f4511e;
}


.seller-badge {
    background: #128447;
}


.honeymoon-badge {
    background: #ed2445;
}


.family-badge {
    background: #14589f;
}


.luxury-badge {
    background: #6824d6;
}


.winter-badge {
    background: #15589e;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.package-card-content {
    padding: 13px;
}


.package-card-content h4 {
    margin: 0 0 5px;
    color: #263544;
    font-size: 16px;
    font-weight: 700;
}


.package-duration {
    color: #205894;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}


.package-card-content p {
    color: #65717e;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 13px;
}


/* =====================================================
   FEATURES
===================================================== */

.package-features {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 15px;
}


.package-features span {
    font-size: 11px;
    color: #56616d;
    white-space: nowrap;
}


.package-features i {
    color: #33485d;
    margin-right: 3px;
}


/* =====================================================
   PRICE
===================================================== */

.package-price {
    color: #1c5797;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}


.package-price small {
    color: #394653;
    font-size: 11px;
    font-weight: 600;
}


/* =====================================================
   BUTTONS
===================================================== */

.package-buttons {
    display: flex;
    gap: 8px;
}


.package-buttons a {
    width: 50%;
    padding: 10px 5px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}


.view-details-btn {
    border: 1px solid #1d5a99;
    color: #1d5a99;
    background: #ffffff;
}


.view-details-btn:hover {
    background: #1d5a99;
    color: #ffffff;
}


.enquire-now-btn {
    background: #15589e;
    color: #ffffff;
}


.enquire-now-btn:hover {
    background: #0d4784;
    color: #ffffff;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .package-filter-box {
        position: sticky;
        top: 20px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .kashmir-packages-section {
        padding: 35px 0;
    }


    .package-filter-box {
        margin-bottom: 15px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .package-top-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


    .package-top-area h2 {
        font-size: 25px;
    }


    .sort-package-box {
        width: 100%;
    }


    .sort-package-box select {
        flex: 1;
    }


    .package-image {
        height: 210px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kashmir-packages-section {
        padding: 25px 0;
    }


    .package-filter-box {
        padding: 16px;
    }


    .package-top-area h2 {
        font-size: 22px;
    }


    .package-features {
        flex-wrap: wrap;
        gap: 10px;
    }

}


/* =====================================================
   KASHMIR CTA SECTION
===================================================== */

.kashmir-cta-section {
    padding: 10px 0 40px;
    background: #ffffff;
}


/* =====================================================
   MAIN BANNER
===================================================== */

.kashmir-cta-banner {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    border-radius: 16px;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.kashmir-cta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


/* =====================================================
   OVERLAY
===================================================== */

.kashmir-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(7, 39, 61, 0.85) 0%,
        rgba(7, 39, 61, 0.60) 35%,
        rgba(7, 39, 61, 0.15) 65%,
        rgba(7, 39, 61, 0.20) 100%
    );
}


/* =====================================================
   ROW
===================================================== */

.kashmir-cta-banner .row {
    position: relative;
    z-index: 3;
    min-height: 235px;
    margin: 0;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.kashmir-cta-content {
    padding-left: 80px;
}


.kashmir-cta-content h2 {
    margin: 0 0 10px;

    font-size: 38px;
    line-height: 1.05;
    font-weight: 700;

    color: #ffffff;
}


.kashmir-cta-content p {
    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.35;

    color: #ffffff;
}


/* =====================================================
   BUTTON
===================================================== */

.kashmir-trip-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 13px 18px;

    background: #ffffff;
    color: #1c5797;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.kashmir-trip-btn:hover {
    background: #1c5797;
    color: #ffffff;
}


.kashmir-trip-btn i {
    font-size: 14px;
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.kashmir-cta-right {
    position: relative;

    height: 235px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-right: 65px;
}


/* =====================================================
   MOUNTAIN TEXT
===================================================== */

.mountain-text {
    display: flex;
    flex-direction: column;

    position: relative;

    z-index: 3;

    color: #ffffff;

    font-family: cursive;

    font-size: 27px;
    line-height: 1.15;

    transform: rotate(-8deg);
}


.mountain-text span:last-child {
    margin-left: 10px;
}


/* =====================================================
   DOTTED LINE
===================================================== */

.cta-dotted-line {
    position: absolute;

    width: 120px;
    height: 90px;

    right: 115px;
    top: 55px;

    border-top: 2px dashed rgba(255, 255, 255, 0.8);
    border-right: 2px dashed rgba(255, 255, 255, 0.8);

    border-radius: 0 80px 0 0;

    transform: rotate(15deg);
}


/* =====================================================
   TREE ICONS
===================================================== */

.tree-icons {
    position: absolute;

    right: 25px;
    bottom: 60px;

    display: flex;
    gap: 4px;

    color: #ffffff;

    font-size: 22px;
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .kashmir-cta-content {
        padding-left: 40px;
    }


    .kashmir-cta-content h2 {
        font-size: 32px;
    }


    .kashmir-cta-right {
        padding-right: 35px;
    }


    .mountain-text {
        font-size: 22px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .kashmir-cta-section {
        padding: 20px 0 30px;
    }


    .kashmir-cta-banner {
        min-height: 380px;
    }


    .kashmir-cta-banner .row {
        min-height: 380px;
    }


    .kashmir-cta-content {
        padding: 35px 25px 15px;
    }


    .kashmir-cta-content h2 {
        font-size: 30px;
    }


    .kashmir-cta-content p {
        font-size: 14px;
    }


    .kashmir-cta-right {
        height: 130px;

        justify-content: flex-end;

        padding-right: 30px;
    }


    .mountain-text {
        font-size: 24px;
    }


    .cta-dotted-line {
        display: none;
    }


    .tree-icons {
        right: 25px;
        bottom: 15px;
    }


    .kashmir-cta-bg {
        object-position: 65% center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kashmir-cta-banner {
        border-radius: 10px;
    }


    .kashmir-cta-content h2 {
        font-size: 26px;
    }


    .kashmir-trip-btn {
        padding: 12px 15px;
        font-size: 12px;
    }


    .mountain-text {
        font-size: 20px;
    }

}
 
/* kashmir2page  header */

/* =====================================================
   GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


/* =====================================================
   COMMON CSS
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif;
}


/* =====================================================
   HEADER
===================================================== */

.travel-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 999;
}


/* =====================================================
   TOP BAR
===================================================== */

.travel-topbar {
    background: #112f4c;
    padding: 7px 0;
}


/* =====================================================
   TOP CONTACT INFO
===================================================== */

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}


.top-contact-info a {
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s ease;
}


.top-contact-info a:hover {
    color: #cbdff2;
}


.top-contact-info i {
    margin-right: 6px;
    font-size: 10px;
}


/* =====================================================
   TOP SOCIAL INFO
===================================================== */

.top-social-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}


.top-social-info span {
    color: #ffffff;
    font-size: 10px;
    margin-right: 10px;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.top-social-info a {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;

    transition: 0.3s ease;
}


.top-social-info a:hover {
    transform: translateY(-2px);
}


/* Facebook */

.top-social-info .facebook {
    background: #1877f2;
}


/* Instagram */

.top-social-info .instagram {
    background: #e4405f;
}


/* YouTube */

.top-social-info .youtube {
    background: #ff0000;
}


/* LinkedIn */

.top-social-info .linkedin {
    background: #0a66c2;
}


/* =====================================================
   CURRENCY DROPDOWN
===================================================== */

.currency-dropdown {
    margin-left: 12px;
}


.currency-dropdown select {
    background: transparent;
    border: none;
    outline: none;

    color: #ffffff;

    font-size: 10px;
    font-weight: 500;

    cursor: pointer;
}


.currency-dropdown select option {
    color: #222222;
}


/* =====================================================
   MAIN NAVBAR
===================================================== */

.travel-navbar {
    background: #ffffff;

    padding: 10px 0;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}


/* =====================================================
   LOGO
===================================================== */

.travel-logo {
    display: flex;
    flex-direction: column;

    text-decoration: none;

    line-height: 1;
}


.logo-main-text {
    font-size: 24px;
    font-weight: 700;

    white-space: nowrap;
}


/* MY */

.logo-my {
    color: #19827e;
}


/* TRAVEL */

.logo-travel {
    color: #e66f2c;
}


/* MAKERS */

.logo-makers {
    color: #244e7c;
}


/* LOGO TAGLINE */

.logo-tagline {
    color: #555555;

    font-size: 8px;

    font-weight: 500;

    text-align: center;

    margin-top: 4px;
}


/* =====================================================
   NAVIGATION MENU
===================================================== */

.travel-nav-menu {
    display: flex;
    align-items: center;

    gap: 5px;
}


/* NAV LINKS */

.travel-nav-menu .nav-link {
    color: #263545;

    font-size: 11px;

    font-weight: 600;

    padding: 8px 9px;

    white-space: nowrap;

    transition: 0.3s ease;
}


.travel-nav-menu .nav-link:hover {
    color: #1c5a97;
}


.travel-nav-menu .nav-link.active {
    color: #1c5a97;
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.travel-nav-menu .dropdown-menu {
    border: none;

    border-radius: 8px;

    padding: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.travel-nav-menu .dropdown-item {
    font-size: 13px;

    padding: 9px 13px;

    border-radius: 5px;

    transition: 0.3s ease;
}


.travel-nav-menu .dropdown-item:hover {
    background: #edf5fc;

    color: #1c5a97;
}


/* =====================================================
   PLAN HOLIDAY BUTTON
===================================================== */

.plan-holiday-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 175px;

    padding: 12px 18px;

    background: #16854f;

    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s ease;
}


.plan-holiday-btn:hover {
    background: #0f6c3e;

    color: #ffffff;

    transform: translateY(-2px);
}


.plan-holiday-btn i {
    font-size: 16px;
}


/* =====================================================
   NAVBAR TOGGLER
===================================================== */

.travel-toggler {
    border: 1px solid #1c5a97;

    padding: 5px 8px;
}


.travel-toggler:focus {
    box-shadow: none;
}


.travel-toggler .navbar-toggler-icon {
    width: 24px;
}


/* =====================================================
   LARGE SCREEN RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .logo-main-text {
        font-size: 21px;
    }


    .travel-nav-menu {
        gap: 0;
    }


    .travel-nav-menu .nav-link {
        padding: 8px 6px;

        font-size: 10px;
    }


    .plan-holiday-btn {
        min-width: 145px;

        padding: 11px 12px;

        font-size: 11px;
    }

}


/* =====================================================
   TABLET & MOBILE NAVBAR
===================================================== */

@media (max-width: 991px) {

    .travel-navbar {
        padding: 12px 0;
    }


    .travel-navbar .navbar-collapse {
        background: #ffffff;

        margin-top: 15px;

        padding: 15px;

        border-radius: 10px;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    }


    .travel-nav-menu {
        margin-bottom: 15px;

        align-items: flex-start;
    }


    .travel-nav-menu .nav-link {
        padding: 11px 5px;

        font-size: 14px;
    }


    .travel-nav-menu .dropdown-menu {
        box-shadow: none;

        border: 1px solid #eeeeee;

        margin-left: 10px;
    }


    .plan-holiday-btn {
        width: 100%;

        min-height: 45px;

        font-size: 14px;
    }

}


/* =====================================================
   MOBILE TOP BAR
===================================================== */

@media (max-width: 767px) {

    .travel-topbar {
        padding: 8px 0;
    }


    .top-contact-info {
        justify-content: center;

        flex-wrap: wrap;

        gap: 8px 18px;

        margin-bottom: 8px;
    }


    .top-social-info {
        justify-content: center;

        flex-wrap: wrap;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .top-contact-info {
        flex-direction: column;

        gap: 6px;
    }


    .top-contact-info a {
        font-size: 10px;
    }


    .top-social-info {
        gap: 7px;
    }


    .top-social-info span {
        margin-right: 5px;
    }


    .currency-dropdown {
        margin-left: 5px;
    }


    .logo-main-text {
        font-size: 19px;
    }


    .logo-tagline {
        font-size: 7px;
    }


    .travel-navbar {
        padding: 10px 0;
    }

}



/* =====================================================
   KASHMIR DELIGHT PACKAGE HERO SECTION
===================================================== */

.kdp-hero-section {
    position: relative;
    width: 100%;
    min-height: 310px;
    overflow: hidden;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.kdp-bg-image {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}


/* =====================================================
   WHITE LEFT SIDE OVERLAY
   Image ke according left side light rakha gaya hai
===================================================== */

.kdp-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.88) 35%,
        rgba(255, 255, 255, 0.45) 58%,
        rgba(255, 255, 255, 0.08) 78%,
        rgba(0, 0, 0, 0.02) 100%
    );
}


/* =====================================================
   BOOTSTRAP CONTAINER
===================================================== */

.kdp-hero-section .container {
    position: relative;
    z-index: 3;
}


/* =====================================================
   ROW HEIGHT
===================================================== */

.kdp-row {
    min-height: 310px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.kdp-content {
    padding: 20px 0;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.kdp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 12px;

    color: #1d2d42;

    font-size: 13px;
    font-weight: 600;
}


.kdp-breadcrumb i {
    font-size: 10px;
    color: #42536a;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.kdp-title {
    margin: 0;

    color: #182b42;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;
}


.kdp-title span {
    color: #f46a16;
}


/* =====================================================
   DURATION
===================================================== */

.kdp-duration {
    margin-top: 5px;
    margin-bottom: 10px;

    color: #1c2d42;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.2;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.kdp-description {
    max-width: 650px;

    margin-bottom: 20px;

    color: #35465a;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
   FEATURES ROW
===================================================== */

.kdp-features-row {
    max-width: 720px;
}


/* =====================================================
   FEATURE BOX
===================================================== */

.kdp-feature-box {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 9px 12px;

    gap: 10px;

    background: rgba(255, 255, 255, 0.80);

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.06);
}


/* ICON */

.kdp-feature-box i {
    color: #1e5a9b;

    font-size: 24px;

    flex-shrink: 0;
}


/* TEXT */

.kdp-feature-box span {
    color: #293b50;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .kdp-hero-section {
        min-height: 380px;
    }


    .kdp-row {
        min-height: 380px;
    }


    .kdp-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.93) 0%,
            rgba(255, 255, 255, 0.82) 60%,
            rgba(255, 255, 255, 0.45) 100%
        );
    }


    .kdp-title {
        font-size: 43px;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .kdp-hero-section {
        min-height: auto;
    }


    .kdp-row {
        min-height: auto;
    }


    .kdp-bg-image {
        object-position: center;
    }


    .kdp-overlay {
        background: rgba(255, 255, 255, 0.88);
    }


    .kdp-content {
        padding: 35px 0;
    }


    .kdp-breadcrumb {
        gap: 7px;

        font-size: 11px;
    }


    .kdp-title {
        font-size: 36px;

        line-height: 1.2;
    }


    .kdp-duration {
        font-size: 23px;
    }


    .kdp-description {
        font-size: 14px;

        margin-bottom: 18px;
    }


    .kdp-feature-box {
        min-height: 50px;

        padding: 9px 10px;
    }


    .kdp-feature-box i {
        font-size: 21px;
    }


    .kdp-feature-box span {
        font-size: 11px;

        white-space: normal;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kdp-content {
        padding: 28px 0;
    }


    .kdp-title {
        font-size: 30px;
    }


    .kdp-duration {
        font-size: 20px;
    }


    .kdp-description {
        font-size: 13px;
    }


    .kdp-breadcrumb {
        font-size: 10px;

        gap: 5px;
    }


    .kdp-feature-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

}


/* overview kashmir delaight */

/* =====================================================
   PACKAGE DETAILS SECTION
===================================================== */

.package-details-section {
    padding: 70px 0;
    background: #f7f9fc;
}


/* =====================================================
   IMAGE GALLERY
===================================================== */

.package-gallery {
    margin-bottom: 35px;
}


.main-package-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
}


.main-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* DARK IMAGE OVERLAY */

.main-package-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        transparent 50%
    );
}


/* LOCATION */

.image-location {
    position: absolute;
    bottom: 18px;
    left: 20px;
    z-index: 2;

    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}


.image-location i {
    margin-right: 6px;
}


/* GALLERY ARROWS */

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}


.gallery-left {
    left: 15px;
}


.gallery-right {
    right: 15px;
}


/* =====================================================
   SMALL GALLERY
===================================================== */

.small-gallery {
    height: 380px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}


.small-gallery-image {
    position: relative;
    flex: 1;

    overflow: hidden;
    border-radius: 6px;
}


.small-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.small-gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        transparent 60%
    );
}


.small-image-name {
    position: absolute;

    bottom: 8px;
    left: 10px;

    z-index: 2;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}


/* MORE PHOTOS */

.more-photos {
    background: #172d45;
    color: #ffffff;

    padding: 12px;

    text-align: center;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;
}


.more-photos i {
    margin-right: 6px;
}


/* =====================================================
   PACKAGE OVERVIEW
===================================================== */

.package-overview {
    margin-bottom: 40px;
}


.package-overview h2,
.day-itinerary h2 {
    color: #1c2b3d;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 12px;
}


.package-overview h2 span,
.day-itinerary h2 span {
    color: #1d5da5;
}


.package-overview p {
    font-size: 14px;

    line-height: 1.8;

    color: #667085;

    max-width: 95%;
}


/* =====================================================
   PACKAGE INFORMATION BOX
===================================================== */

.package-info-box {
    margin-top: 25px;

    padding: 20px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.04);
}


.package-info-item {
    display: flex;

    gap: 10px;

    height: 100%;
}


.package-info-icon {
    color: #1d5da5;

    font-size: 20px;

    padding-top: 3px;
}


.package-info-item span {
    display: block;

    color: #8a94a6;

    font-size: 11px;

    margin-bottom: 4px;
}


.package-info-item strong {
    display: block;

    color: #27364a;

    font-size: 11px;

    line-height: 1.5;
}


/* =====================================================
   DAY WISE ITINERARY
===================================================== */

.day-itinerary {
    margin-top: 35px;
}


/* ITINERARY ITEM */

.itinerary-item {
    display: flex;

    gap: 18px;

    margin-bottom: 22px;
}


/* DAY NUMBER */

.day-number {
    min-width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #1d5da5;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    line-height: 1;
}


.day-number span {
    font-size: 8px;
}


.day-number strong {
    font-size: 17px;

    margin-top: 3px;
}


/* ITINERARY CONTENT */

.itinerary-content h4 {
    font-size: 15px;

    color: #26374b;

    font-weight: 700;

    margin-bottom: 7px;
}


.itinerary-content p {
    font-size: 12px;

    color: #70798a;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =====================================================
   ITINERARY IMAGE
===================================================== */

.itinerary-image {
    height: 100%;

    min-height: 360px;

    border-radius: 8px;

    overflow: hidden;

    background: #ddd;
}


.itinerary-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.package-sidebar {
    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);

    position: sticky;

    top: 20px;
}


/* =====================================================
   PRICE BOX
===================================================== */

.package-price-box {
    background: #132b46;

    color: #ffffff;

    padding: 20px;
}


.price-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.price-top span {
    font-size: 12px;
}


.price-top h2 {
    margin: 5px 0 0;

    font-size: 30px;

    font-weight: 700;
}


.price-top small {
    font-size: 11px;

    font-weight: 500;
}


.best-seller {
    background: #ff5b2e;

    padding: 5px 10px;

    border-radius: 4px;

    font-size: 10px !important;

    font-weight: 600;
}


/* OLD PRICE */

.old-price {
    margin-top: 8px;

    font-size: 12px;

    text-decoration: line-through;

    color: #c9d2dc;
}


.old-price span {
    background: #e63946;

    padding: 4px 8px;

    margin-left: 8px;

    border-radius: 3px;

    text-decoration: none;

    color: #ffffff;

    font-size: 10px;
}


/* =====================================================
   ENQUIRY FORM
===================================================== */

.enquiry-form {
    padding: 22px;
}


.enquiry-form h3 {
    font-size: 16px;

    font-weight: 700;

    color: #28374b;

    margin-bottom: 18px;
}


/* FORM GROUP */

.form-group {
    position: relative;

    margin-bottom: 12px;
}


.form-group > i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform: translateY(-50%);

    color: #607083;

    font-size: 13px;

    z-index: 2;
}


/* INPUT */

.form-group .form-control,
.form-group .form-select {
    height: 43px;

    border: 1px solid #dbe1e8;

    font-size: 11px;

    padding-left: 38px;

    box-shadow: none;
}


.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: #1d5da5;

    box-shadow: none;
}


/* TEXTAREA */

.textarea-group textarea {
    height: 75px !important;

    padding-left: 13px !important;

    padding-top: 12px;
}


/* =====================================================
   BUTTONS
===================================================== */

.enquire-btn {
    width: 100%;

    border: none;

    padding: 13px;

    background: #118b50;

    color: #ffffff;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}


.enquire-btn:hover {
    background: #0c703f;
}


.enquire-btn i {
    margin-right: 7px;
}


/* WHATSAPP */

.whatsapp-btn {
    width: 100%;

    display: block;

    margin-top: 10px;

    padding: 11px;

    text-align: center;

    border: 1px solid #1c8c53;

    color: #16864e;

    text-decoration: none;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;
}


.whatsapp-btn i {
    margin-right: 7px;

    font-size: 15px;
}


/* =====================================================
   BENEFITS
===================================================== */

.package-benefits {
    border-top: 1px solid #edf0f3;

    padding: 18px 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


.package-benefits div {
    font-size: 10px;

    color: #566274;
}


.package-benefits i {
    color: #1d5da5;

    margin-right: 4px;
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .package-sidebar {
        position: static;
    }


    .package-details-section {
        padding: 50px 0;
    }


    .package-gallery {
        margin-bottom: 30px;
    }


    .main-package-image {
        height: 400px;
    }


    .small-gallery {
        height: auto;

        flex-direction: row;

        margin-top: 10px;
    }


    .small-gallery-image {
        height: 150px;
    }


    .more-photos {
        align-self: stretch;

        display: flex;

        align-items: center;
        justify-content: center;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .package-details-section {
        padding: 35px 0;
    }


    /* MAIN IMAGE */

    .main-package-image {
        height: 270px;
    }


    /* SMALL GALLERY */

    .small-gallery {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }


    .small-gallery-image {
        height: 130px;
    }


    .more-photos {
        height: 130px;
    }


    /* OVERVIEW */

    .package-overview h2,
    .day-itinerary h2 {
        font-size: 24px;
    }


    .package-overview p {
        max-width: 100%;
    }


    /* PACKAGE INFO */

    .package-info-box {
        padding: 15px;
    }


    /* ITINERARY */

    .itinerary-image {
        min-height: 280px;
    }


    /* SIDEBAR */

    .package-sidebar {
        margin-top: 10px;
    }


    .package-benefits {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .main-package-image {
        height: 220px;
    }


    .small-gallery {
        grid-template-columns: 1fr;
    }


    .small-gallery-image {
        height: 150px;
    }


    .more-photos {
        height: auto;
    }


    .itinerary-item {
        gap: 12px;
    }


    .day-number {
        min-width: 45px;
        height: 45px;
    }


    .price-top h2 {
        font-size: 25px;
    }

}

/* inclusion kashmir 2 page  */
/* Inclusions Box (Light Green) */
.inclusions-card {
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

/* Exclusions Box (Light Red) */
.exclusions-card {
  background-color: #fff1f2;
  border: 1px solid #ffe4e6;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

/* Card Heading Title */
.card-heading {
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.card-heading i {
  font-size: 1.4rem;
}

/* List Styling */
.inc-exc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.inc-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
}

.inc-exc-list li:last-child {
  margin-bottom: 0;
}

/* Icons Colors */
.icon-green {
  color: #059669;
  font-size: 1.1rem;
  margin-top: 2px;
}

.icon-red {
  color: #dc2626;
  font-size: 1.1rem;
  margin-top: 2px;
}


/* hotelweuse */
/* Section Styles */
.hotels-why-section {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.section-title {
  color: #0f172a;
  font-size: 1.5rem;
}

.view-details-link {
  color: #0d6efd;
  font-size: 0.9rem;
}

/* Hotel Cards */
.hotel-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.2s ease-in-out;
}

.hotel-card:hover {
  transform: translateY(-3px);
}

.hotel-img {
  height: 125px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.hotel-name {
  color: #1e293b;
  font-size: 0.85rem;
  line-height: 1.25;
}

.hotel-location {
  font-size: 0.78rem;
}

/* Star Rating Styling */
.star-rating i {
  font-size: 0.75rem;
  margin-right: 1px;
}

/* Why Choose Us Box */
.why-choose-card {
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 500;
}

.why-choose-list li i {
  font-size: 0.95rem;
  margin-top: 1px;
}

/* Bottom Mountain Vector Graphics Background */
.mountain-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e0f2fe' fill-opacity='0.6' d='M0,224L120,192C240,160,480,96,720,128C960,160,1200,224,1320,256L1440,288L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23bae6fd' fill-opacity='0.8' d='M0,288L180,256C360,224,720,160,1080,192C1260,224,1380,272,1440,288L1440,320L1380,320C1260,320,1080,320,720,320C360,320,180,320,0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
}

/* review */
.reviews-section {
  font-family: system-ui, -apple-system, sans-serif;
}

.section-title {
  color: #0f172a;
  font-size: 1.4rem;
}

.view-reviews-link {
  color: #0d6efd;
  font-size: 0.88rem;
}

.review-card {
  border-radius: 12px;
  background-color: #ffffff;
}

.profile-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.reviewer-name {
  color: #0f172a;
  font-size: 0.95rem;
}

.star-rating i {
  color: #ffc107;
  font-size: 0.8rem;
  margin-right: 1px;
}

.review-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #475569 !important;
}
/* kashmir similar   */

.similar-packages-section {
  font-family: system-ui, -apple-system, sans-serif;
}

.section-title {
  color: #0f172a;
  font-size: 1.4rem;
}

.view-all-link {
  color: #0d6efd;
  font-size: 0.88rem;
}

/* Package Card Styling */
.package-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.2s ease-in-out;
}

.package-card:hover {
  transform: translateY(-3px);
}

.package-img {
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.package-title {
  color: #0f172a;
  font-size: 0.88rem;
  line-height: 1.25;
}

.package-duration {
  font-size: 0.78rem;
  color: #64748b !important;
}

.package-price {
  font-size: 1rem;
}

.price-unit {
  font-size: 0.75rem;
  font-weight: 400;
}

/* Blue Round Button with Right Arrow */
.btn-arrow {
  width: 28px;
  height: 28px;
  background-color: #0d6efd;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

.btn-arrow:hover {
  background-color: #0b5ed7;
}