
* {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
:root {
    /* Brand palette (orange + blue) to match the travel landing */
    --brand: #ff7a00;
    /* orange */
    --brand-500: #ff8f2d;
    --accent: #2b59ff;
    /* blue */

    --ink: #16181d;
    --muted: #6a7280;
    --bg-soft: #f5f7fb;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(18, 26, 55, 0.08);
    --radius-lg: 28px;
    --radius-xl: 36px;
}

html,
body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
    color: var(--ink);
    background: #fff;
}

.btn-brand {
    background: #000000;
    color: #fff;
    border-radius: 999px;
    padding-inline: 1.2rem;
    font-size: 24px;
}

.btn-brand:hover {
    background: var(--brand-500);
    color: #fff;
}

.link-brand {
    color: var(--brand);
}

.link-brand:hover {
    color: var(--brand-dark);
}

.section-soft {
    background: var(--bg-soft);
}

.shadow-card {
    box-shadow: var(--shadow);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.hero-title {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: var(--muted);
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--brand));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge-soft {
    background: rgba(255, 122, 0, 0.12);
    color: var(--brand);
    border-radius: 999px;
    font-weight: 600;
}

.nav-link {
    color: var(--ink) !important;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--brand) !important;
}

.stat-value {
    font-weight: 800;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
}

.stat-label {
    color: var(--muted);
    font-weight: 500;
}

.footer a {
    color: #2B2B2B;
    text-decoration: none;
}

.footer a:hover {
    color:#2B2B2B;
}

/* decorative */
.hero-blob {
    position: absolute;
    inset: auto -80px -80px auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(100% 100% at 60% 40%, rgba(255, 122, 0, 0.25) 0%, rgba(255, 122, 0, 0) 70%),
        radial-gradient(100% 100% at 40% 60%, rgba(255, 200, 150, 0.35) 0%, rgba(255, 200, 150, 0) 70%);
    border-radius: 50%;
    filter: blur(0.5px);
}

.footer {
    background-color: #D79358;
    border-radius: 100px 100px 0 0;
    z-index: 999;
}


.orangetext {
    color: #2B2B2B;
    font-size: 30px;
    font-weight: 600;
}

.indikosh-cta {
    /* background-image: url('../img/bg.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    border-radius: 80px;
}

#features {
    background: url('../img/bg2.png');
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    height: 75vh;
    /* border-radius: 80px; */
}

.travel-heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.blue-text {
    color: #2E3192;
    /* Deep Blue */
}

.color-242424 {
    color: #242424;
}

.f-70 {
    font-size: 70px;
}

.orange-text {
    color: #F58220;
    /* Orange */
}

.travel-desc {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}


.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #ddd;
}

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

.stat-icon {
    font-size: 40px;
    color: #F58220;
    /* Orange */
    margin-bottom: 10px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #F58220;
    /* Orange */
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E3192;
    /* Blue */
    margin-top: 2px;
}

.stat-desc {
    font-size: 14px;
    color: #333;
    margin-top: 8px;
    line-height: 1.5;
}


.heading {
    text-align: center;
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 25px;
}

.heading span.orange {
    color: #f57c00;
}

.heading span.blue {
    color: #283593;
}

/* Swiper styling */
.swiper {
    padding-bottom: 30px;
}

.swiper-slide {
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.swiper-slide img {
    /* width: 100%;
    height: 120px; */
    object-fit: cover;
}

.discount-tag {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #f57c00;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px 0px 5px 0;
}

.title-main {
    font-size: 32px;
    font-weight: bold;
    color: #272C76;
}

.title-main span {
    color: #F58634;
}

.subtitle {
    color: #6c757d;
    font-size: 15px;
}

.trip-card {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 30px;
}

.trip-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.trip-card strong{
    font-weight: 400 !important;
}

.h-680 {
    height: 620px !important;
}

.trip-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    color: white;
    font-weight: bold;
    background: linear-gradient(0deg, #FFF0E3 43.83%, rgba(255, 240, 227, 0.949395) 53%, rgba(255, 240, 227, 0.1) 100%);
}

.trip-info p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}

.badge-circle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #2F3592;
    color: #fff;
    border-radius: 50%;
    padding: 15px 10px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-4C4C4C {
    color: #4C4C4C !important;
    font-size: 20px;
}

hr {
    border: 2px solid #F9EBE3;
}


.header {
    height: 88vh;
    width: 100%;
    background-color: #F7F6F9;
    /* similar light background */
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.header video {
    height: 70%;
    border-radius: 50%;
    /* makes it circular */
    object-fit: cover;
    opacity: 0.9;
}

.img-set {
    position: absolute;
    right: -30%;
    bottom: -84%;
    width: 94%;
}

header {
    background: #F7F6F9;
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 246, 249, 0) 0%, #FFFFFF 100%);
}

.orange {
    color: #F88116;
}
.btn-primary{
    background-color: #F88116;
    border-color: #F88116;
}

.color-2B2B2B {
    color: #2B2B2B;
}

.f-110 {
    font-size: 82px;
}

.f-44 {
    font-size: 38px;
}

.f-54{
    font-size: 42px;
}

.fw-semibold{
    font-weight: 600;
}
.fw-500-medium{
    font-weight: 500;
}
.fs-40{
    font-size: 35px;
}
.fs-30{
    font-size: 30px;
}
.fs-24{
    font-size: 24px;
}   
.fs-22{
    font-size: 22px;
}
.swiper {
    width: 100%;
    padding: 40px 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.discount-tag {
    background: orange;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 8px;
}

/* All slides small by default */
.swiper-slide {
    transform: scale(0.85);
    opacity: 0.7;
}

/* Active slide full size */
.swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
}

/* Left & right next to active are a bit bigger than rest */
.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(0.92);
    opacity: 0.85;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-style: normal;
    font-weight: 400;
  }

  .fs-80{
    font-size: 75px;
  }

  .fs-30{
    font-size: 26px;
  }
  .fs-26{
    font-size: 24px;
  }

  .line-height-normal{
    line-height: normal;
  }

  .fs-70{
    font-size: 70px;
  }
  .fs-32{
    font-size: 24px;
    text-align: justify;
  }

  .fs-50{
    font-size: 40px;
  }

  .bgimg {
    /* background-image: url('../img/bg.png'); */
    background: linear-gradient(89.99deg, rgba(0, 0, 0, 0) 22.85%, rgba(0, 0, 0, 0.5) 98.32%),url('../img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;

    /* border-radius: 80px; */
}

#featuress {
    position: relative; /* Needed for ::after positioning */
    overflow: hidden; /* Ensures gradient doesn’t overflow */
}

#featuress::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 246, 249, 0) 0%, #FFFFFF 100%);
}

@media screen and (max-width: 1450px) {
    .position-unset {
       position: unset !important;
    }
    
    .justify-content-between-mobile{
        justify-content: space-between !important;
    }
    .justify-content-end-mobile{
        justify-content: center !important;
    }
    .orangetext {
        font-size: 20px;
    }

    .fs-22 {
        font-size: 16px;
    }
    
    .fs-70 {
        font-size: 60px;
    }
    .fs-32 {
        font-size: 20px;
    }

    .fs-50 {
        font-size: 34px;
    }
}

@media(min-width: 1200px) and (max-width: 1650px) {
    .orangetext {
        font-size: 24px;
    }

    .fs-22 {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .footer {
        border-radius: 0px 0px 0 0;
    }

    .appgoogle img{
        width: 166px;
    }
    .header {
        height: 100%;
    }
    .f-110 {
        font-size: 40px;
    }
    .f-44 {
        font-size: 24px;
      }
      .text-end{
        text-align: center !important;
      }

      .fs-70 {
        font-size: 38px;
    }

    .fs-32 {
        font-size: 20px;
    }

    .stat-item{
        border-bottom: 1px solid #ddd;
        width: 80%;
        border-right: none;
        margin: auto;
        margin-bottom: 20px;
    }

    .f-70 {
        font-size: 45px;
    }
    #features{
        height: 100%;
    }
    #features img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .f-54 {
        font-size: 30px;
    }
}

@media screen and (max-width: 500px) {
    .f-110 {
        font-size: 34px;
    }
    .f-44 {
        font-size: 22px;
      }

      .fs-70 {
        font-size: 28px;
    }

    .fs-32 {
        font-size: 16px;
    }

    .fs-80 {
        font-size: 35px;
    }

    .fs-30 {
        font-size: 24px;
    }
    .fs-26 {
        font-size: 14px;
    }
   
    .f-70 {
        font-size: 34px;
    }
    .fs-24 {
        font-size: 18px;
    }
    .f-54 {
        font-size: 28px;
    }
}


@media (min-width: 992px) and (max-width: 1200px) {
    .f-44 {
        font-size: 22px;
    }

    .f-110 {
        font-size: 46px;
    }

    .fs-80 {
        font-size: 42px;
    }

    .fs-26 {
        font-size: 18px;
    }
    .fs-24 {
        font-size: 16px;
    }
    .f-70 {
        font-size: 45px;
    }

    .f-54 {
        font-size: 30px;
    }
}

@media (min-width: 1201px) and (max-width: 1750px) {
    .f-44 {
        font-size: 32px;
    }

    .f-110 {
        font-size: 50px;
    }

    .fs-80 {
        font-size: 45px;
    }

    .fs-26 {
        font-size: 20px;
    }
    .fs-24 {
        font-size: 16px;
    }
    .f-70 {
        font-size: 48px;
    }
}


/* Common text style */
.word, .word-blue {
    color: transparent;
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: fillText 1s forwards;
    flex: none;
order: 0;
flex-grow: 0;

  }
  
  .word {
    -webkit-text-stroke: 1.5px #F99F50;
    background-image: linear-gradient(to right, #F99F50 50%, transparent 50%);
  }
  
  .word.endless {
    animation-delay: 1s; /* start after 1s pause */
  }
  
  .word.journeys {
    animation-delay: 2.2s; /* Endless(1s) + delay(0.2s) */
  }
  
  .word-blue {
    -webkit-text-stroke: 1.5px #2F3592;
    background-image: linear-gradient(to right, #2F3592 50%, transparent 50%);
  }
  
  .word-blue.unmatched {
    animation-delay: 3.6s; /* Journeys end (3.2s) + delay (0.2s) */
  }
  
  .word-blue.savings {
    animation-delay: 4.8s; /* Unmatched end (4.4s) + delay (0.2s) */
  }
  
  @keyframes fillText {
    to {
      background-position: 0 0;
    }
  }

  .tranprintcard{
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
  }

  .lastsection{
    bottom: -150px;
  }

  .capitalize{
    text-transform: uppercase;
  }

  .navbar-toggler, .navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }


  @media (min-width: 992px) and (max-width: 1050px) {
    .img-set {
        position: absolute;
        right: -83%;
        bottom: -110%;
        width: unset;
    }
    .header {
        height: 100%;
    }
  }

  .capitalize:hover{
    background: #F88116;
    border-color: #F88116;
  }

  /* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #F99F50; /* Scroll thumb color */
    border-radius: 10px; /* Rounded edges */
    border: 2px solid #f1f1f1; /* Space around thumb */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #F99F50; /* Thumb color on hover */
  }
  
  /* For Firefox */
  html {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #F99F50 #f1f1f1; /* thumb color | track color */
  }
  