@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-color: #ff6600;
    --primary-hover-color: #cc5200;
    --secondary-color: #002366;
    --tertiary-color: #172A80;
    --white-color: #ffffff;
    --black-color: #000;
    --gray-color: #ccc;
    --shadow-color: rgba(0, 0, 0, 0.2);

    /* Font */
    --font-family: 'Poppins', sans-serif;
    /* --font-size-xsmall: clamp(10px, 0.8vw, 12px);
    --font-size-small: clamp(12px, 1vw, 14px);
    --font-size-default: clamp(14px, 1.2vw, 16px);
    --font-size-medium: clamp(14px, 1.3vw, 16px);
    --font-size-large: clamp(17px, 1.5vw, 18px);
    --font-size-xl: clamp(18px, 1.8vw, 20px);
    --font-size-xxl: clamp(24px, 2.5vw, 26px);
    --font-size-xxxl: clamp(32px, 3.5vw, 40px); */
    --font-size-xsmall: clamp(0.625rem, 0.8vw, 0.75rem);     /* 10px → 12px */
--font-size-small: clamp(0.75rem, 1vw, 0.875rem);         /* 12px → 14px */
--font-size-default: clamp(0.875rem, 1.2vw, 1rem);        /* 14px → 16px */
--font-size-medium: clamp(0.9rem, 1.3vw, 1rem);         /* 14px → 16px */
--font-size-large: clamp(1.0625rem, 1.5vw, 1.125rem);     /* 17px → 18px */
--font-size-xl: clamp(1.325rem, 1.8vw, 1.55rem);          /* 18px → 20px */
--font-size-xxl: clamp(1.2rem, 2.5vw, 1.5rem);          /* 24px → 26px */
--font-size-xxxl: clamp(2rem, 3.5vw, 2.5rem);             /* 32px → 40px */

    --font-weight-bold: lighter;

    /* Borders and Radius */
    --border-radius: 5px;
    --box-shadow: 0 4px 8px var(--shadow-color);
    --navbarCustom-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Dimensions */
    --navbarCustom-height: clamp(80px, 8vw, 100px);
    --icon-width: clamp(20px, 2.5vw, 29px);
    --icon-height: clamp(25px, 3vw, 35px);

    /* Spacing */
    --padding-small: 10px;
    --padding-medium: 20px;

    /* Transitions */
    --transition-default: 0.3s ease;

    /* Icon Sizes */
    --icon-size-medium: clamp(36px, 4vw, 40px);
    --icon-size-large: clamp(40px, 5vw, 45px);
    --icon-size-xlarge: clamp(45px, 6vw, 50px);
    --icon-size-xxlarge: clamp(50px, 7vw, 60px);

    /* Logo Sizes */
    --logo-size-small: clamp(60px, 6vw, 70px);
    --logo-size-medium: clamp(70px, 7vw, 80px);
    --logo-size-large: clamp(80px, 8vw, 100px);
    --logo-size-xlarge: clamp(100px, 10vw, 120px);
    --logo-size-xxlarge: clamp(120px, 12vw, 140px);
    --logo-size-xxxl: clamp(130px, 14vw, 160px);
--logo-brand:clamp(180px, 16vw, 215px);
--logo-big:clamp(300px, 130vw, 350px);
}

/* @font-face {
  font-family: 'Poppins';
  src: url('https://travelsea.co.uk/travelSea/View/assets/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */


html {
    scroll-behavior: smooth;
}

* {

    font-family: var(--font-family) !important;
}

body {
   /* max-width: 90rem; */
max-width: 122rem;
    margin: 0 auto !important;
    background-color: var(--white-color);
    font-family: var(--font-family);
}

/* Make particles canvas cover the full body */
/* #particles-js {
   position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}

body > * {
    position: relative;
    z-index: 1;
} */

*,
*::before,
*::after {
    box-sizing: inherit;
    /* margin: 0; */
    /* padding: 0; */
    font-family: var(--font-family), sans-serif !important;
}





.full-container {
  width: 100%;
    /* width: 100%; */
    height: auto;
    /* margin: 29px 0px 0px 0px; */
    /* margin: auto;*/
}
/* =================== Promo bannner =================== */
.promo-banner {
  background-color: var(--primary-color); /* Bright, summer-like color */
  overflow: hidden;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  z-index: 9999;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* =================== navbarCustom =================== */
  .nav-container {
    margin: 0 100px;
  }

  .navbarCustom {
  background: var(--white-color);
    display: flex
;
    align-items: center;
    justify-content: space-between;
    height: var(--navbarCustom-height);
    position: relative;
    z-index: 1000;
  }

  .navbarCustom-brand {
    /* margin-top: 16px; */
  }

  .navbarCustom-brand img {
    width: 220px
  }

  .navbarCustom-nav {
 display: flex
;
    gap: var(--padding-medium);
    height: 100%;
    align-items: center;
  }

  .nav-link-custom {
    padding: 40px 0 30px;
    font-size: var(--font-size-l);
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-link-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
.nav-item-custom{
   align-items: center;
    height: 100%;
    display: flex
;
}

  .nav-link-custom:hover,
  .nav-link-custom.active {
    color: var(--primary-color);
  }

  .nav-link-custom:hover::after,
  .nav-link-custom.active::after,
  .nav-item-custom.dropdown-custom:hover > .nav-link-custom::after {
    width: 100%;
  }
.navbarCustom-item-mobile{
display: none;
}
  .navbarCustom-item {
    display: flex;
    align-items: center;
    gap: 4px;
    /* margin-top: 6px; */
  }

  .icon img {
    /* width: var(--icon-size-xlarge); */
    height: var(--icon-size-xlarge);
    /* margin-top: 5px; */
  }

  .details .number {
    font-size:  24px;;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: -4px;
  }

  .details .timing {
    font-size: var(--font-size-small);
    color: var(--black-color);
  }

  .details hr {
    height: 1px;
    margin: -2px;
    background: var(--black-color);
    border: none;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 1px;
    cursor: pointer;
    /* margin: 20px 10px 10px; */
    z-index: 1002;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white-color);
  }

  .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 97%;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    display: grid;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 30px;
    z-index: 999;
  }

  .nav-item-custom.dropdown-custom:hover .dropdown-menu-custom {
    display: grid;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-column-custom {
   display: flex
;
    flex-direction: column;
    width: var(--logo-size-xlarge);
  }

  .region-title {
       font-size: var(--font-size-medium);
   font-weight: 500;
    color: var(--tertiary-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    /* height: 50px; */
   width: var(--logo-size-xlarge);
  }
/* .submenu-column-custom  {
   padding: 10px;
  }
  .submenu-column-custom a {
    color: var(--black-color);
    font-size: var(--font-size-default);
    line-height: 35px;
    font-weight: 400;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.3s;
  }

  .submenu-column-custom a:hover {
    color: var(--primary-color);
  } */
.submenu-column-custom {
     display: flex
;
    flex-direction: column;
    padding: 10px 0px;
    /* gap: 5px; */
    width: 125px;
}
.submenu-column-custom a {
  display: block;
  color: var(--black-color);
  font-size: var(--font-size-default);
  line-height: 1.4; /* Ensures space between lines */
  font-weight: 400;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.3s;
}

.submenu-column-custom a:hover {
  color: var(--primary-color);
}

/* Slider Styling */
.Heroslider {
    display: flex;
    overflow: hidden;
    position: relative;
}

/* .Heroslides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
} */
.Heroslides {
  display: flex;
    transition: transform 1s ease-in-out;
  /* transition: transform 0.5s ease-in-out; Smooth animation */
  will-change: transform;
}

.Heroslide {
    width: 100%;
    flex-shrink: 0;
}

.Heroslide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-button button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1000;
}

.slider-button .prev {
    left: 10px;
}

.slider-button .next {
    right: 10px;
}


button.prev {
    left: var(--padding-small);
}

button.next {
    right: var(--padding-small);
}

button:hover {
    background: transparent;
}

/*****hero section****/
.flight-image-container,
.image-container {
    position: relative;
    width: 100%;
    /* max-width: 1440px; */

    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flight-image-container img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flight-image-container picture {
    width: 100%;
    max-width: 1440px;

    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.overlay-text {

    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
   
    text-align: center;
    font-size: var(--font-size-xxl);
    white-space: nowrap;
    font-weight: 100;
  animation: typing 4s steps(40, end) forwards, blink 0.75s step-end infinite;


}

.typing-text {
  width: 0;
     border-radius: var(--border-radius);
    padding: 1px 5px;
   
    color: white;
    text-align: center;
    font-size: var(--font-size-xxl);
   background: linear-gradient(to right, #E55820, #172A80);
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #000;
  font-size: var(--font-size-xxl);
  animation: typing 2s steps(40, end) forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

.bounce {
  animation: bounceIn 1s ease-out forwards;
}


@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* Booking Serach style */
.suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestions li {
  padding: 10px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #f0f0f0;
}







.booking-container {
    background-color: var(--tertiary-color);
    border-radius: 10px;
    z-index: 1;
    box-shadow: var(--box-shadow);
    position: relative;

    transition: opacity 1s ease, transform 1s ease;
}

.booking-container.homepage-form {

    margin-top: -65px;
    padding: 10px;
    opacity: 1;
    max-width: 100%;
}

.booking-container.flight-form {

    margin-top: -53px;
    padding: 15px 10px;
    opacity: 1;
    max-width: 100%;
}

.booking-container.Common-form {
    margin-top: 0;
    background-color: var(--tertiary-color);
    opacity: 0.8;
}

.booking-container.visible.homepage-form {
    opacity: 1;
    transform: translateX(0);
}

/* Hide Adults, Children, Infant, Travel Class, and Airline fields */
/* .flight-form .form-row:nth-child(2)+.form-row {
    display: none !important;
} */

/* Keep only the first row and adjust it */
.flight-form .form-row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: flex-end; */
    justify-content: space-between;
}

/* Style individual fields */
.flight-form .form-group1 {
    flex: 1;
    min-width: 120px;
    margin: 7px;
}

/* Target last .form-group1 to look like button on the right */
/* .flight-form .form-row .form-group1:last-child {
    flex: 0 0 auto;
    min-width: 120px;
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
} */

.flight-form .search-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: var(--font-size-default);
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.flight-form .search-btn:hover {
    background-color: var(--primary-hover-color);
}

.flight-btn {
    display: none;
    flex: 0px !important;
}

.flight-form .flight-btn {
    display: block;

}

.body-container {

    margin: 0px 100px 0px 100px;

}

.tab-container {
    padding: 2px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.Common-form.tab-container {
    padding: 23px 30px 0px 30px;

}


/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    background-color: var(--white-color);
    padding: 1px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    /* max-height: 54px; */
    margin: 2px;
    flex-wrap: wrap;

}

.tab {
    flex: 1;
    text-align: center;
    padding: 7px 14px;
    cursor: pointer;
    margin: 1px;
    font-size: var(--font-size-default);
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;

    align-items: center;
    justify-content: center;
}

.Common-form.tabs {
    height: 70px;

}

.Common-form.tab {

    padding: 2px 2px;

    font-size: 13px;
}

.tab img {
    width: 20px;
    height: 20px;
    margin-bottom: 0px;
}

.Common-form.tab img {
    width: 20px;
    height: 20px;
    margin-bottom: 0px;
}

.tab:hover,
.tab.active {
    font-size: var(--font-size-default);
    background-color: var(--white-color);
    font-weight: var(--font-weight-bold);
    color: var(--black-color);
}

.Common-form.tab:hover,
.Common-form.tab.active {
    font-size: 13px;
}

/* Hover effect on the tabs */
.tab:hover img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilght.png');

}

/* Specific image change on hover for each button */
.tab:first-child:hover img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilght.png');

}

.tab:nth-child(2):hover img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackhotel.png');

}

.tab:nth-child(3):hover img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilghthotel.png');

}

/* Active effect for the tabs */
.tab.active img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilght.png');

}

.tab:first-child.active img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilght.png');

}

.tab:nth-child(2).active img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackhotel.png');

}

.tab:nth-child(3).active img {
    content: url('https://travelsea.co.uk/travelSea/View/assets/imgs/blackfilghthotel.png');

}

.tab.active {
    font-size: var(--font-size-default);
    background-color: var(--white-color);
    font-weight: var(--font-weight-bold);
    color: var(--black-color);
}



.form {
    display: none;
}

.form.active {
    display: block;
}


/* Form */
.form-container {
    padding: 0 20px 0px 20px;
    color: var(--white-color);
}

.Common-form.form-container {
    padding: 0px 15px 20px 15px;
}

.trip-options {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.Common-form.trip-options {

    margin-bottom: 0px;
}

.trip-options label {
    margin: 10px;
    cursor: pointer;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.Common-form.form-row {

    margin-bottom: 0px;
}

.form-group1 {
    flex: 1;
    margin: 10px;
    min-width: 180px;

}

.Common-form.form-group1 {

    min-width: 150px;
}

.form-group-inside {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;

}

.Common-form.form-group-inside {

    margin-bottom: 0px;

}


.form-group1 label,
.form-group1 .form-group-inside label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.input-border {
    
    background: var(--white-color);
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    width: 100%;

    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-sizing: border-box;
}




.input-border img {
    margin: 4px 0px 0px 8px;
    height: 24px;
}

.input-border input[type="text"],
.form-group1 input[type="email"] {
    text-decoration: none;
    border: 0 !important;

}

.form-group1 input[type="text"],
.form-group1 input[type="email"],
.form-group1 .form-group-inside .select input[type="text"],
.form-group1 .form-group-inside .select input[type="email"],
.form-group1 .form-group-inside .select select {
    width: 100%;
    padding: var(--padding-small);
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-sizing: border-box;
}



.input-border input[type="text"]:focus,
.input-border input[type="email"]:focus,
.form-group1 input[type="email"]:focus,
.form-group1 input[type="text"]:focus,
.input-border input[type="date"]:focus,
.form-group1 .form-group-inside .select input[type="text"]:focus,
.form-group1 .form-group-inside .select input[type="email"]:focus,
.form-group1 .form-group-inside .select select:focus {
    border: 0;
    outline: none;
}

.select {
    width: 46%;
}

.form-group1 input::placeholder,
.form-group1 .form-group-inside .select input::placeholder {
    font-size: var(--font-size-small);
    color: var(--black-color);
}


.form-group1 button.search-btn {
    display: block;
    height: auto;
    width: 100%;
    padding: 9px;
    font-size: var(--font-size-default);
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
}

.form-group1 button.search-btn:hover {
    background-color: var(--primary-hover-color);
}

/*********** Calendar Styles ***********/
.calendar-container {
    position: absolute;
    display: none;
    background: var(--white-color);
    border: 1px solid #ccc;
    padding: var(--padding-small);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 267px;
    text-align: center;
    z-index: 1000;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: var(--tertiary-color);
    color: var(--white-color);
    font-size: var(--font-size-default);
    border-radius: 5px 5px 0 0;
}

.calendar-header button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    cursor: pointer;
    padding: 5px;
}

.calendar-header button:hover {
    color: #ddd;
}
.calendar-weekdays{
     gap: 5px;
    grid-template-columns: repeat(7, 1fr);
     padding: var(--padding-small);
    color: var(--black-color);
}
.calendar-weekdays div{
    font-size: 12px;
}
.calendar-days {
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: var(--padding-small);
    color: var(--black-color);
}
.day.start,
.day.end {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
}

.day.in-range {
    background-color: #e0f7fa;
    color: #000;
}

.day {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: var(--border-radius);
    color: var(--black-color);
    transition: background 0.3s;
}

.day:hover {
    background: #ddd;
}

.selected {
    background: var(--tertiary-color);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius);
}
.selector-dropdown {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white-color);
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: flex;
    /* flex-direction: column; */
    min-width: 220px;
    color: black;
    overflow: hidden;
}

.month-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
    gap: 8px;
    border-bottom: 1px solid #eee;
}

.month-selector div {
    text-align: center;
    padding: 6px 0;
    cursor: pointer;
    border-radius: 6px;
    font-size: var(--font-size-default);
    transition: background 0.3s ease;
}

.month-selector div:hover {
    background-color: var(--primary-color);
    color: white;
}

.year-selector {
    max-height: 372px;
    overflow-y: auto;
     
    padding: 10px 10px;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.year-selector div {
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: var(--font-size-default);
    transition: background 0.3s ease;
}

.year-selector div:hover {
    background-color: var(--tertiary-color);
    color: white;
}
:root {
  --litepicker-primary: #ff6600; /* Change to your brand color */
  --litepicker-hover: #cc5200;   /* Hover color */
  --litepicker-range: #ffe0c2;   /* Range background */
  --litepicker-text: #000000;    /* Normal text */
  --litepicker-selected-text: #ffffff; /* Text inside selected dates */
}

/* Selected start/end dates */
.litepicker .is-start-date,
.litepicker .is-end-date {
    background-color: var(--litepicker-primary) !important;
    color: var(--litepicker-selected-text) !important;
    font-weight: bold;
}

/* Days between selected range */
.litepicker .is-in-range {
    background-color: var(--litepicker-range);
    color: var(--litepicker-text);
}

/* Hover effect */
.litepicker .day-item:hover {
    background-color: var(--litepicker-hover);
    color: #fff;
}

/* Calendar navigation arrows */
.litepicker .calendar-header button {
    color: var(--litepicker-primary);
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.litepicker .calendar-header button:hover {
    color: var(--litepicker-hover);
}

/* Today’s date highlight */
.litepicker .day-item.is-today {
    border: 2px solid var(--litepicker-primary);
    background-color: #fffaf0;
    color: var(--litepicker-primary);
    font-weight: bold;
}

/* Disabled past dates */
.litepicker .day-item.is-disabled {
    color: #ccc;
    text-decoration: line-through;
    background-color: #f9f9f9;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .litepicker {
  
  
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;

    z-index: 2000;

        width: 50vw !important;
        left: 10 !important;
        transform: none !important;
        border-radius: 0;
    }

    .litepicker .container__months {
        flex-direction: column;
    }

    .litepicker .container__days {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }
}

/* Mobile input styles for calendar field */
#travel-dates {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
.litepicker .day-item.is-today {
    background-color: #eafaf1;
    border: 1px solid #34a853;
    font-weight: bold;
    color: #34a853;
}

/* 
.litepicker {
    max-width: 100vw !important;
    box-sizing: border-box;
}

.litepicker .container__months {
    flex-wrap: wrap;
}

input#travel-dates {
    width: 100%;
    max-width: 100%;
}

.litepicker {
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.litepicker .day-item {
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.litepicker .day-item:hover {
    background-color: #ff7f50; 
    color: #fff;
}


.litepicker .is-start-date,
.litepicker .is-end-date,
.litepicker .is-in-range {
    background-color: #ff6600;
    color: white !important;
    border-radius: 6px;
}

.litepicker .day-item.is-today {
    border: 2px solid #ffa500;
    background-color: #fffacd;
}

#travel-dates:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 4px #ff6600;
}

.litepicker .day-item.is-disabled {
    color: #aaa;
    cursor: not-allowed;
    background-color: #f0f0f0;
    text-decoration: line-through;
}
.litepicker .calendar-header button {
    color: #ff6600; 
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.litepicker .calendar-header button:hover {
    color: #cc5200; 
} */

/* -HSI features Section */

.HSI-feature-section {
  display: flex
;
    flex-wrap: wrap;
    gap: 20px;
    width: 100% !important;
    justify-content: center;
    padding: 10px 0px 10px 0px;
}

.HSI-feature-section-box {
      
    margin-right: calc(var(--bs-gutter-x) * 0.5) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    flex-wrap: nowrap !important;
    margin-top: 25px !important;
    justify-content: space-between;

}


.HSI-feature-box {
    height: var(--logo-size-large);
    background-color: #f3f3f3;
    display: flex
;
    align-items: center;
    padding: 3px 7px 3px 7px;
    border-radius: 12px;
    margin: 0px 10px 0px 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.HSI-feature-box:hover {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
    color: #172A80;
}

.HSI-icon-box {
    flex-shrink: 0;
    background-color: white;
    padding: 4px;
    margin-right: 6px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.HSI-icon-box img {
    width: var(--icon-size-medium);
    height: var(--icon-size-medium);
}

.HSI-feature-text {
    overflow: hidden;
}

.HSI-feature-text h5 {
    margin: 0;
    font-size: var(--font-size-default);
    font-weight: bold;

}

.HSI-feature-text h5:hover {
    color: #172A80;

}

.HSI-feature-text p {
    margin: 2px 0 0;
    font-size: var(--font-size-small);
    color: #000;
}

.HSI-feature-box:hover .HSI-feature-text p {
    color: #ff6600;
}

/* .slider {
    overflow: hidden;
    width: 92%;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 88%;
    width: fit-content;
}

.slide {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 0 10px;
} */
/* Show flexible number of cards */
.slider {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  flex: 0 0 100%; /* Default: 1 card per view */
  box-sizing: border-box;
  padding: 0 10px;
}

@media screen and (min-width: 600px) {
  .slide {
    flex: 0 0 50%; /* 2 cards per view */
  }
}

@media screen and (min-width: 900px) {
  .slide {
    flex: 0 0 33.3333%; /* 3 cards per view */
  }
}



/* Destination Section Styling */


.destinations {
   
    margin: 15px 0;
    opacity: 0;
    transform: translateX(-50px);
    overflow: hidden;
    transition: opacity 1s ease, transform 1s ease;
}

.destinations.visible {
    opacity: 1;
    transform: translateX(0);

}

.destinations h2 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

/* Highlighted subheading */
.highlighted-text {
    display: inline-block;
    color: white;
    font-size: clamp(16px, 2vw, 20px);
    padding: 8px 16px;
    background: var(--tertiary-color);
    border-radius: 8px;
}

/* Paragraph */
.destinations p {
    color: black;
    font-size: clamp(14px, 1.4vw, 16px);
    text-align: center;
}


.destination-cards {
   flex-wrap: nowrap !important;
  margin-left: 0px !important;
}

.destination-containter{
    overflow: hidden;
margin: 20px 2px;
    height: 40vh;
min-height: 360px;
}
.destination-slide{
    
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    --bs-gutter-x: -0.5rem !important;
    
 
}
.destination-card {
    background: var(--white-color);
    overflow: hidden;
    aspect-ratio: 3.7 / 4;
      height: 100%;
    width: 100% !important;
    /* min-width: 270px;
    width: 20.8vw !important;
    height: 34vh;
    max-height: 35vh;
    min-height: 350px; */
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateX(-200px);
    animation: slideInFromLeft 1s ease forwards;
    animation-delay: var(--destination-card-delay);
    cursor: pointer;

    border-radius: 8px;


  transition: transform 0.3s ease; 


}

.destination-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.destination-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

.destination-card-title {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--black-color);
    font-weight: bold;
    font-size: var(--font-size-xl);
    padding: 10px 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Pricing overlay */
.destination-card-price {
    position: absolute;
    top: 0;
   left: -5px;
    width: 100%;
    height: 100%;
  pointer-events: none;
    font-size: var(--font-size-xsmall);
    display: flex;
    flex-direction: column;

    align-items: center;
    transition: left 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.destination-card-price button {
    font-size: var(--font-size-small);
padding:2px;
    color: white;
    background-color: #ff6600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}



/* Price list */
.destination-card-price .price-list {

    margin: 40px 0px 0px 0px;
    padding: 6px;
    list-style: none;
   /* display: flex;
    flex-direction: column;*/
    gap: 10px;
    z-index: 2;
width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;

}

.destination-card-price .price-list li a img {
  height: 30px;
    width: var(--logo-size-small);
    object-fit: contain;
}

.destination-card-price .price-list li a {

    background: #f9f9f9;
    padding: 4px 7px;
    border-radius: 0px 8px 8px 0px;
    font-size: 12px;
    color: var(--black-color);
    gap: 7px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);


}


/* Stagge#ED1C24 left-to-right animation for list items */
.destination-card:hover .destination-card-price {
      pointer-events: auto;
  opacity: 0.9;
    /* Make the destination-card price semi-transparent */
}

.destination-card-price .price-list li {
margin: 10px 0px;
    opacity: 0;
    /* Hidden by default */
    transform: translateX(-50px);
    /* Start off-screen */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Smooth transition for opacity and transform */
}

.destination-card:hover .price-list li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    /* Slide and fade in for the first item */
    transition-delay: 0.2s;
    /* Delay for the first item */
}

.destination-card:hover .price-list li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    /* Slide and fade in for the second item */
    transition-delay: 0.4s;
    /* Delay for the second item */
}

.destination-card:hover .price-list li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    /* Slide and fade in for the third item */
    transition-delay: 0.6s;
    /* Delay for the third item */
}

.destination-card:hover .price-list li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    /* Slide and fade in for the fourth item */
    transition-delay: 0.8s;
    /* Delay for the fourth item */
}

/* Keyframes for the slide-in animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
        /* Start off-screen */
    }

    to {
        opacity: 1;
        transform: translateX(0);
        /* End at the normal position */
    }
}



/* Hover effects */
.destination-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.destination-card:hover .destination-card {
    transform: translateY(-10px);
    /* Lift title slightly */
}

/******************************************************************************************** */
.swiper-container {
     width: 100%;
    /* height: 350px;*/
    /* Adjust based on the height of your cards */
    /* overflow: hidden; */
    position: relative;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 1 !important;
   /* width: 270px;*/
    /* Card width */
    height: 350px;
    /* Card height */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Any other styling for the slides */
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black-color);
    z-index: 2;
}

/* Bottom banner styling */
.bottom-banner {
    margin: 20px 0;
}

.bottom-banner img {
    object-fit: cover;
    width: 100%;
}

/* content section style */


.homecontent-section {
    text-align: center;

}

.homecontent-section h2 {

    display: inline-block;
    /* Shrink to fit content */
    color: black;
    /* font-size: var(--font-size-xxxl); */
     font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    padding: 8px;
    margin: 8px auto;
    /* auto center */
}

.homecontent-section p {
    color: black;
    /* font-size: var(--font-size-large); */
      font-size: clamp(14px, 2vw, 16px);
    text-align: center;

}

/* *********favorite-airline*********** */
.favorite-airline {
    text-align: center;
    padding: 20px 0px;
}

.favorite-airline h2 {
      display: inline-block;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--white-color);
   background: var(--tertiary-color); /* Matches the title background */
}

.favorite-airline-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.favorite-airline-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    /* max-width: 420px; */
}

.favorite-airline-card:hover {
    transform: translateY(-5px);
}

.favorite-airline-card img {
    width: 100%;
    height: auto;
    display: block;
}


/* dream desination section style */

/* Ensure Swiper structure looks right */

.myDreamSwiper .swiper-slide {
    /* width: 295px !important; */
    /* flex-shrink: 0 !important;
    height: 470px ;
    overflow: visible; */
     width: clamp(295px, 25vw, 295px);
    flex-shrink: 0 !important;
    height: auto;
    overflow: visible;
    padding: 0px;
    /* margin-right: 0px; */
}
.myDreamSwiper .swiper-wrapper {
    
    flex-wrap: nowrap;
}
.myDreamSwiper {
  
    overflow: visible !important;
}
.dream-destination-cards {
    display: flex;
    justify-content: flex-start;
    gap: 20px;


}



.dream-card {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* width: 295px;
     height: 450px; */
    /* transition: transform 0.3s ease; */
     transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s ease;
  will-change: transform;
}

.dream-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.dream-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, rgba(255,255,255,0.05), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}.dream-card:hover::before {
  opacity: 1;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: swiper-icons !important;
    content: "" !important;
    /* Important: prevent "next"/"prev" text */
    font-size: var(--font-size-xl);
    color: #000;
}

.prev-btn,
.next-btn,
.prev-btn-destination,
.next-btn-destination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #172A80;
    color: var(--white-color);
    border: none;
    font-size: var(--font-size-xxl);
    cursor: pointer;
    z-index: 10;
    padding: 5px 15px;
    border-radius: 50%;
}

.prev-btn,
.prev-btn-destination {
    left: 10px;
}

.next-btn,
.next-btn-destination {
    right: 10px;
}

.dream-destinations {
    overflow: hidden;
    /* margin: 0px; */
    text-align: center;
    /* height: 580px; */
}

.dream-destinations h2 {
  font-size: clamp(24px, 2.5vw, 32px);
    /* font-size: var(--font-size-xxl); */
    font-weight: bold;
    margin: 10px 0px;
}

.dream-destinations p {
    /* font-size: var(--font-size-xl); */
      font-size: clamp(20px, 2.2vw, 26px);
    color: var(--black-color);
    /* margin-bottom: 20px; */
    margin: 5px 0px 20px 0px;

}
.dream-card-image{

    height: 340px;
}
.dream-card-image img {
    width: 100%;
height:100%;
    object-fit: cover;
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.5s ease;
}
.ddream-card-image:hover img {
   transform: scale(1.05) rotateZ(0.3deg) translateY(-3px);
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
.dream-card-content {
   /* height: 100px;
    width: 100%; */
    padding: 10px;
    text-align: left;
}

.dream-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dream-card-content h3 {
    margin: 0%;
    /* font-size: var(--font-size-large); */
     font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    color: #172A80;

}

.dream-card-content p {
    margin: 0;
    color: #5D5D5D;
    /* font-size: var(--font-size-small); */
    font-size: clamp(12px, 1.2vw, 14px);
}

.dream-card-content .discount-price ,
.dream-card-content a {
    padding: 3px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--white-color);
    background-color: var(--primary-color);
    /* font-size: var(--font-size-small); */
  font-size: clamp(12px, 1.2vw, 14px);
    margin: 15px 0px;
}

.dream-content .dream-price {
    /* font-size: var(--font-size-large); */
   font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    color: #172A80;
    margin-top: 10px;
}

/* Review section style */
.reviews-section {
/* margin: 20px 0px; */
    text-align: center;
    overflow: hidden;
}

.reviews-section h2 {
    /* font-size: var(--font-size-xl); */
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: bold;
    margin-bottom: 10px;
}

.review-coment {
    /* font-size: var(--font-size-xsmall); */
font-size: clamp(10px, 1vw, 12px);
    color: var(--black-color);
    font-weight: lighter;
    /* font-weight: bold; */
    /* font-style: italic; */
    margin-bottom: 20px;
}
.reviewSwiper {
    overflow: visible !important;
}
.reviewSwiper .swiper-wrapper{
   
    flex-wrap: nowrap;
}
.reviews-section-title {
    /* font-size: var(--font-size-large); */
        font-size: clamp(18px, 2vw, 22px);
    color: var(--black-color);
    font-weight: bold;
    /* font-style: italic; */
    margin-bottom: 20px;
}

.reviews-section .stars {
    color: #172A80;

}

.reviewSwiper .swiper-wrapper .swiper-slide {
    /* height: 160px !important; */
    height: auto ;
    padding: 0px;
    width: 100% ;
}
.reviewSwiper{
    overflow: visible ;
}
.review-border {
    padding: 3px;
    /* border thickness */
    border-radius: 10px;
    background: linear-gradient(45deg,
            #E55820 50%,
            #ffffff 5%,
            #172A80 50%);

    background-size: 50% 50%;
    animation: borderMove 4s linear infinite;
    transition: transform 0.3s ease; 
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}


@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.review-card {
    background: white;
    box-sizing: border-box;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 15px;
    width: 260px;
    height: auto;
    /* width: 220px;
    height: var(--logo-size-xxxlarge); */
    /* overflow: hidden; */
    /* flex-shrink: 0; */
    text-align: left;
    transition: transform 0.3s ease, z-index 0.3s ease;
    /* z-index: 1; */
}

.review-border:hover {
    transform: translateY(-10px);
    z-index: 10;
    /* Bring the card to the front on hover */
}

.review-card .stars img {
    width: 20px;
    height: 20px;
    margin: 2px;
    padding: 4px;
    background-color: #172A80;
}

.review-card p {
    margin: 5px 0;

}

.review-card strong {
    font-size: clamp(10px, 1vw, 12px);

}

/* airlines logos style */
/* Floating animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Fade & Zoom effect */
@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }

    60% {
        transform: scale(1.05) translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
    }
}
.Airline-title{
 padding-top: 20px;
}
.Airline-title h2{
    font-size: 30px;
    font-weight: 500;
     text-align: center;
}

.airlineSwiper {

    margin: 30px 0px 20px 0px;
      height: var(--logo-size-xl);

}

.airline-card {
    border: 1px solid #000;
    border-radius: 16px;
    padding: 0px 10px 10px 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--logo-size-xlarge);;
    width: 100% !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zoomFade 0.6s ease both;
    animation-delay: 0.2s;
    will-change: transform;
    /* animation: bounceIn 0.6s ease; */
}

.airline-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Floating effect on logos */
.airline-card img {
height: 140px;
    width: 140px;
   /* max-height: 100px;
    object-fit: contain;*/
    animation: floatUpDown 3s ease-in-out infinite;
}

/* .airline-card {
  border: 1px solid #000;
  border-radius: 12px;
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--logo-size-xxlarge);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

/* .airline-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.airline-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
} */

/* /* features  section styely */
.features-section {
margin: 25px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px
        /* padding: 30px; */

}

.feature-box {
  
  width: 22%;
    max-width: 22%;
    height: var(--logo-size-large);
    border: 1px solid #ccc;
    border-radius: 16px;
    text-align: center;
    padding: 10px;
    transition: all 0.4s ease;
    background-color: var(--tertiary-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex
;
    /* flex-direction: column; */
    align-items: center;
    justify-content: flex-start;
    transition: background 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.icon-wrapper {
/*position: relative; */
    /* margin: 30px; */
    /* align-items: flex-start; */
    width: var(--logo-size-small);
    /* height: var(--icon-size-large);*/
}

.feature-box img {
height: var(--icon-size-xlarge);
    /* margin-bottom: 8px; */
    /* position: absolute; */
    /* top: 15px; */
    /* left: 28px; */
    /* width: 100%; */
    transition: opacity 0.3s ease;
}

.feature-box p {
    font-size: var(--font-size-default);
    /* Adjust font size to fit */
    font-weight: 500;
    color: #fff;
    margin: 0;
    transition: color 0.1s ease;
}

.feature-box:hover {


    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #E55820, #172A80);
    animation: gradientShift 3s ease infinite;
    color: #fff;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.normal-icon {
    transition: opacity 0.1s ease;
    opacity: 1;
    z-index: 1;
}

.hover-icon {
    transition: opacity 0.1s ease;
    opacity: 0;
    z-index: 2;
}

/* .feature-box:hover .normal-icon {
    opacity: 0;
}

.feature-box:hover .hover-icon {
    opacity: 1;
} */
/* 
.feature-box:hover p {
    color: #fff;
} */

@media (max-width: 600px) {
    .feature-box {
        width: 100%;
        /* Full width on small screens */
        max-width: 300px;
        /* Limit max width */
        margin: auto;
    }
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🔽 Responsive for Tablets */
@media (max-width: 992px) {
    .feature-box {
        max-width: 45%;
        flex: 1 1 45%;
    }
}

/* 🔽 Responsive for Mobiles */
@media (max-width: 600px) {
    .feature-box {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* 
.features-section {
     display: flex
;
    justify-content: space-between;
   
    flex-wrap: wrap;
}

.feature-box {
  width: 220px;
  height: var(--logo-size-xxlarge);
  border: 1px solid #ccc;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.feature-box img {
  height: var(--icon-size-xlarge);
  margin-bottom: 15px;
}

.feature-box p {
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: #000;
  margin: 0;
}

.feature-box:hover {
  background: linear-gradient(45deg, #E55820, #172A80);
 
  animation: gradientShift 3s ease infinite;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-box:hover p {
  color: #fff;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

/* 
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    padding: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feature {
    text-align: center;
    margin: 0px 60px 0px 60px;
    flex: 1;
}

.feature img {
    margin-top: 15px;
    width: var(--icon-size-xlarge);
    height: 46px;
}

.feature p {
    font-size: var(--font-size-medium);
    font-weight: bold;
    color: var(--black-color);
}

.separator {
    width: 3px;
    height: var(--icon-size-xlarge);
    border-radius: 2px;
    background-color: #172A80;
    margin: 0 15px;
} */

/* confidence payment section design */
.confidence-payment-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white-color);
    padding: 2px 0;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-wrap: wrap;
}

.confidence,
.payment {
    text-align: center;
    /* flex: 1; */
    padding: 5px;
}

.confidence h3,
.payment h3 {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    color: var(--black-color);
}

.separator-confidence {
    width: 3px;
    height: var(--logo-size-medium);
    border-radius: 2px;
    background-color: #172A80;
    margin: 0 15px;
}

.confidence-logos,
.payment-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* .confidence-logos img,
.payment-logos img {
    min-width: 72px;
    max-width: 200px;
    min-height: 45px;
    max-height: 200px;
} */
.confidence-logos img,
.payment-logos img {
    width: auto;
    max-width: 140px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {

    .confidence-logos img,
    .payment-logos img {
        max-width: 110px;
        max-height: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .confidence-logos img,
    .payment-logos img {
        max-width: 80px;
        max-height: 40px;
    }
}

/* subscription section style */
.subscription-section {
    margin: 20px 0px 0px 0px;
    /* height: 200px; */
    background: url('https://travelsea.co.uk/travelSea/View/assets/imgs/image23.svg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    position: relative;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 0;
}

.subscription-content {
    position: relative;
    z-index: 1;

}

.subscription-content p {
    font-size: var(--font-size-xxl);
    font-weight: bold;

}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
flex-direction: column;
    gap: 10px;
}

.subscription-form input {
    padding: 10px 20px;
    text-align: center;
    font-size: var(--font-size-l);
    border-radius: 25px;
    border: 1px solid #ccc;
    min-width: 267px;
    max-width: 450px;
    outline: none;
}

/* Styling the placeholder text */
.subscription-form input::placeholder {
    color: var(--black-color);
    /* Black color for placeholder */
    opacity: 1;
    /* Ensures full opacity for placeholder */
}

.subscription-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px;
    gap: 10px;
}

.subscription-button button {
    padding: 10px 20px;
    font-size: var(--font-size-medium);
    background-color: #172A80;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-button button:hover {
    background-color: #0f1d5a;
}

/* footer section style  */
/* 
.footer {
      background: url("https://travelsea.co.uk/travelSea/View/assets/imgs/Footer%20BG%20iMAGE.webp")
    no-repeat center center / cover;

  
    color: var(--white-color);
    font-family: Arial, sans-serif;
    padding: 0px 90px 0px 90px;
}

.footer-sections {

    flex-wrap: wrap;
    gap: 7vw;
}

.footer-headings {




    padding-top: 20px;



    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.footer-head {
    width: 200px;
}

.footer-head h3 {
    border-bottom: 2px solid #E55820;
    padding-bottom: 18px;

    margin: 2px;
}

.footer-section {

    width: 200px;
}

.footer-section ul {
    list-style: none;
    font-size: var(--font-size-medium);
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 2.5;
}

.footer-section ul li {
    color: var(--white-color);
}

.footer-section ul li:hover {
    color: #E55820;
}

.contact-information {
    display: flex;
    align-items: center;

}

.contact-information img {
    height: 18px;

}

.contact-information p {
    font-size: var(--font-size-medium);
    margin-left: 12px;
    line-height: 23px;

}

.footer-social {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    text-align: center;
    border-top: 2px solid #E55820;
    padding-top: 20px;
    flex-wrap: wrap;
}

.footer-social p {
    margin: 0 0 10px;
}

.footer-icons {
    display: flex;

    justify-content: center;
    gap: 10px;
}

.footer-icons a {
    text-decoration: none;
    font-size: var(--font-size-medium);
    font-weight: bold;
    color: var(--white-color);
}

.footer-icons a img {
    height: 20px;
    margin-left: 10px;
}

.footer-icons a:hover {
    color: #E55820;
}

.footer-powered {
       display: flex
;
    padding: 2px 0px 20px 0px;
    justify-content: center;
    text-align: center;

}

.footer-powered p span {
    color: #E55820;
} */
.footer {
    background: no-repeat center center / cover;
    background-size: cover;
    color: var(--white-color);
    font-family: Arial, sans-serif;
    padding: 0px 90px;
}

.footer-sections {
    flex-wrap: wrap;
    gap: 7vw;
}

.footer-headings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.footer-head {
    width: 220px;
    /* margin-bottom: 30px; */
}

.footer-head h3 {
    border-bottom: 2px solid #E55820;
    padding-bottom: 18px;
    margin: 2px;
    font-size: var(--font-size-large);
    font-weight: bold;
}

.footer-section {
    width: 100%;
    padding-top: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.5;
}

.footer-section ul li {
color: var(--white-color);
    font-size: var(--font-size-medium);
    transition: color 0.3s ease;
    padding: 5px 0px;
}

.footer-section ul li a {
    color: var(--white-color);
    text-decoration: none;
}

.footer-section ul li a:hover,
.footer-section ul li:hover {
    color: #E55820;
}

/* Contact Info */
.contact-information {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-information img {
    height: 18px;
    margin-top: 3px;
}

.contact-information p {
    margin: 0;
    font-size: var(--font-size-medium);
    line-height: 1.4;
}

/* Social Media */
.footer-social {
display: flex;
    align-items: center;
    margin-top: 30px;
    border-top: 2px solid #E55820;
    padding-top: 20px;
    text-align: center;
    gap: 10px;
    justify-content: center;
}

.footer-social p {
    margin-bottom: 10px;
    font-size: var(--font-size-medium);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-icons a img {
    height: 24px;
    width: 24px;
}

.footer-icons a:hover {
    transform: scale(1.1);
}

/* Powered by */
.footer-powered {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 3px 0 20px 0px;
    font-size: var(--font-size-small);
}

.footer-powered p span {
    color: #E55820;
    font-weight: bold;
}

/* General Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Define the sliding effect */
/* @keyframes slideIn {
    0% {
        transform: translateX(-100%); 
    }
    100% {
        transform: translateX(0); 
    }
} */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply Animation Classes */
.animated {
    /* opacity: 0; */
    /* transition: opacity 0.5s ease-out; */
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Specific Animations */
.fade-in {
    animation-name: fadeIn;
}

.slide-in {
    animation-name: slideIn;
}

.scale-up {
    animation-name: scaleUp;
}

/* Example Usage */
.navbarCustom {
    animation: fadeIn 1s ease-in-out;
}

.slider img {
    animation: slideIn 1s ease-in-out;
}

.destination-cards .destination-card {
    animation: scaleUp 0.8s ease-in-out;
}

.dream-destinations h2,
.dream-destinations p {
    animation: fadeIn 1s ease;
}

/* Add Delays for Sequential Animations */
.destination-card:nth-child(1) {
    animation-delay: 0.2s;
}

.destination-card:nth-child(2) {
    animation-delay: 0.4s;
}

.destination-card:nth-child(3) {
    animation-delay: 0.6s;
}

/*  
.animated {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .animated.visible {
    opacity: 1;
  }
  

.fade-in {
    animation-name: fadeIn;
}

.slide-in {
    animation-name: slideIn;
}

.scale-up {
    animation-name: scaleUp;
}


.navbarCustom {
    animation: fadeIn 1s ease-in-out;
}

.slider img {
    animation: slideIn 1s ease-in-out;
}

.destination-cards .card {
    animation: scaleUp 0.8s ease-in-out;
}

.dream-destinations h2,
.dream-destinations p {
    animation: fadeIn 1s ease;
}

.card:nth-child(1) {
    animation-delay: 0.2s;
}

.card:nth-child(2) {
    animation-delay: 0.4s;
}

.card:nth-child(3) {
    animation-delay: 0.6s;
}


.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover .animated {
    animation: scaleUp 0.5s ease-in-out;
}
 */









/* holiday section style */



.bg-holiday-img {
    background: url(https://travelsea.co.uk/travelSea/View/assets/imgs/holidayimg.jpg) no-repeat center center / cover;
}


.bg-flightview-img {
    background: url(https://travelsea.co.uk/travelSea/View/assets/imgs/islmosque.png) no-repeat center center / cover;
}

.bg-flight-img {
    background: url(https://travelsea.co.uk/travelSea/View/assets/imgs/FlightsCover.jpg) no-repeat center center / cover;
}

.main-section {

    padding: 40px 90px 40px 90px;
    /* text-align: center; */
    justify-content: center;
    /* align-items: center; */
    color: var(--white-color);
    position: relative;


}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 0;
}

.holiday-content h3 {
    font-size: var(--font-size-xxxl);
    font-weight: bold;
    color: #172A80;
    margin: 0px;
    padding: 10px 0px 0px 0px;
    text-align: center;
}

.holiday-content p {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    text-align: center;
}

.holiday-content {

    position: relative;
    z-index: 1;


}

.content-section {
    display: flex;
    /* flex-wrap: wrap; */
    /* padding: 0px 30px 0px 30px;*/
    align-content: space-around;
}

.sub-content {
    width: 530px;
    margin: 0px;
}

.sub-content p {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    font-size: var(--font-size-xl);
    font-weight: lighter;
    line-height: 30px;
    text-align: left;
}

.sub-content h1 {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    font-size: var(--font-size-xxxl);

    text-align: left;
}

.holiday-trip-cards {
    margin: 50px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* align-content: center; */
    flex-wrap: wrap;
    gap: 30px;

}

.holiday-card {
    border-radius: 30px 30px 0px 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

    height: 100%;


}

.holiday-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    /* Slow down the zoom effect */


}

.holiday-card:hover img {
    transform: scale(1.05);
}

.holiday-card h3 {
    /* background-color: rgba(255, 255, 255, 0.8); Semi-transparent white background */
    background-color: white;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    padding: 13px;
    z-index: 1;
    font-size: var(--font-size-xxl);
    text-align: center;
    font-weight: bold;
    transition: opacity 0.6s ease, transform 0.6s ease;
    /* Slow down opacity and movement */

}

.holiday-card p {
    color: white;
    position: absolute;
    /* Position it absolutely within the card */
    bottom: 10px;
    /* Adjust as needed */
    top: -10px;
    left: 0;
    right: 0;
    padding: 10px;
    /* Add some padding for better appearance */
    z-index: 1;
    /* Ensure it is above the image */
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.6s ease;
    opacity: 0;
    /* Initially hidden */
}

/* Dark overlay effect */
.holiday-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(68, 67, 67, 0.7);
    /* Dark overlay */
    opacity: 0;
    /* Initially hidden */
    transition: opacity 1s ease;
    /* Slow down the overlay fade-in */
    z-index: 0;
    /* Behind other content */
}

.holiday-card:hover::after {
    opacity: 1;
    /* Show overlay on hover */
}

.holiday-card:hover h3 {
    transform: translateY(20px);
    opacity: 0;
    /* Hide text on hover */
}

.holiday-card:hover p {
    opacity: 1;
    /* Show paragraph on hover */
    transform: translateY(20px);
    /* Slide to original position */
}


/* faqs style */
.faq-section {
    padding: 0px 0px;
}

.faq {
    width: 100%;
    margin: 0 auto;
}

.question {
    cursor: pointer;
    background-color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid var(--black-color);
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}


.symbol {
    float: right;
}

.answer.expanded {
    padding-top: 10px;
    /* Top padding when expanded */
    padding-bottom: 10px;
    /* Bottom padding when expanded */
}

.answer {
    white-space: normal;
    word-wrap: break-word;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0px 15px;
    overflow: hidden;
    max-height: 0px;

    border-left: 4px solid #172A80;
    border-radius: 0 0 5px 5px;


    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    /* Add smooth padding transition */
}

/* flight content  */


.flight-content {
    text-align: center;
    justify-items: center;
}

.flight-content h3 {
    font-size: var(--font-size-xxl);
    background: #172A80;
    color: var(--white-color);
    /* font-family: inter; */
    font-weight: 100;
    padding: 12px;
    border-radius: 11px;
}

.flight-content p {
    font-size: var(--font-size-medium);
    line-height: 25px;
    font-family: revert;
    margin: 25px 0px 0px 0px;
}

/* === Trip Cards Section === */
.trip-cards {
    margin: 20px 0px 0px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease forwards;
}

/* Entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.three-card-col {
    width: 32%;
    margin: 9px 0px;
}

/* === Trip Card === */
.trip-card {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    /* height: 250px;
    background-color: #D9D9D9;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;

    animation: floatCard 3s ease-in-out infinite alternate, zoomIn 0.8s ease forwards; */
}

/* Entrance scale animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Always floating slowly */
@keyframes floatCard {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-8px) scale(1.02);
    }
}
.trip-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 7px 9px rgba(0, 0, 0, 0.5);
}

.trip-card:hover .trip-card-img img {
    transform: scale(1.1) rotate(1deg);
}


/* .trip-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 7px 9px rgba(0, 0, 0, 0.5);
} */

/* === Image === */
.trip-card-img {
    /* height: 200px;
    overflow: hidden; */
    width: 100%;;
}

.trip-card-img img {
    width: 100%;
     width: 100%;
    transition: transform 0.6s ease;
    /* height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    animation: imagePulse 6s ease-in-out infinite alternate; */
}

/* Always zooming subtly */
@keyframes imagePulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.trip-card:hover .trip-card-img img {
    transform: scale(1.1) rotate(1deg);
}

/* === Title === */
.trip-card-title {
    height: var(--icon-size-xlarge);
    position: relative;
    background-color: #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.4s ease;
}

.trip-card-title h3 {
    font-size: var(--font-size-xl);
    font-weight: normal;
    margin: 0;
    transition: color 0.4s ease, letter-spacing 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover color effect */
.trip-card:hover .trip-card-title {
    background-color: #f5f5f5;
}

.trip-card:hover .trip-card-title h3 {
    color: #ED1C24;
    letter-spacing: 2px;
}

/* flight style section */





/* Default - Laptop View */
.flight-section-box {
    display: flex !important;
    flex-wrap: wrap;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    gap: 15px;
    padding: 20px 0;
}

.common-row {

    display: flex;

    flex-wrap: wrap;
    width: 100%;
    /* gap: 50px; */
    justify-content: space-between;
}

.flight-col {
    /* flex: 1; */
    margin: 9px 0px;
    width: 49%;
    /* min-width: 180px; */
}

.flight-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* width: 100%; */
    /* max-width: 525px; */
    /* min-width: 280px; */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 3px solid var(--white-color);
}

.flight-card:hover {
    border: 3px solid #172A80;
}

.flight-logo {
    text-align: center;

}

.flight-logo img {
    margin: 0px;
    height: 35px;
    text-align: left;
}

.flight-icon {
    height: 11px !important;
    margin: 0px;
}

.flight-logo p {
    font-size: 13px;
    margin: 11px 0px 0px 0px;
}

.flight-info h1 {
    font-size: 23px;
    text-align: center;
    font-weight: bold;
    margin: 0px 0px 6px 0px;
}

.flight-info {
    text-align: center;
}

.flight-info h5 {
    font-size: var(--font-size-default);
    text-align: center;
    margin: 0px;
}

.flight-info h1 span {
    margin: 0px 20px;
}

.flight-info p {
    margin: 3px;
    font-size: 13px;
}

.flight-price {
    text-align: center;

}

.flight-price h3 {
    font-size: 17px;
    margin: 0px;
}

.flight-price p {
    font-size: 13px;
    margin: 5px 0px 0px 0px;

}

.flight-price button {
    background-color: #172A80;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 4px 17px;
    cursor: pointer;
    font-size: 13px;
    margin: 0px;
}

.MobileView {
    display: none !important;
}

/* flight plane card new deisgn */
.flight-plane-card {
    width: 100%;
    border: 1px solid grey;
    margin: 20px auto;
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    /* justify-content: space-between; */
    /* background: #f5f5f5; */
    padding: 10px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 10px;
        transition: box-shadow 0.3s ease, background 0.3s ease;
}

.flight-plane-card:hover {

    box-shadow: 0 7px 9px rgba(0, 0, 0, 0.5);
    background: #f5f5f5;
}

.airline-info img {
    width: var(--logo-size-large);
}

.flight-plane-route {
    flex: 1;
    display: flex;
    width: 300px;
    justify-content: space-between;
    align-items: center;
}

.flight-plane-departure,
.flight-plane-arrival {
    text-align: left;
width:100%;
    padding: 0px 0px 0px 30px;

}

.flight-plane-departure h3,
.flight-plane-arrival h3 {
    margin: 0;
    font-size: var(--font-size-large);
    font-weight: normal;
}

.flight-plane-departure p,
.flight-plane-departure small,
.flight-plane-arrival p,
.flight-plane-arrival small {
    font-size: var(--font-size-default);
}

.flight-plane-departure span,
.flight-plane-arrival span {
    font-weight: bold;
    font-size: var(--font-size-large);
}

.flight-plane-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}
.luggage{
display: flex;
}
.luggage img{
    width: auto;
  
    height: auto;
}
.luggage p{
    font-size: 12px;
    color: var(--tertiary-color);
    padding: 0px 5px;
}
.c-type{
display: flex;
}
.c-type img{
   width: auto;
  
    height: auto;
}
.c-type p{
    font-size: 12px;
    color: var(--tertiary-color);
    padding: 0px 5px;
}
.phone-num{
display: flex;
padding: 10px 0px 0px 0px;
}

.phone-num img{
   width: auto;
  
    height: auto;
}
.phone-num p{
      font-size: 13px;
    font-weight: bold;
}
.flight-plane-icon img{
    width: auto;
}

/* .flight-plane-icon img {}

/* .flight-plane-icon hr {
  flex: 1;
  border: none;
  height: 1px;
  background: black;
} */


.flight-plane-book {
       text-align: center;
    min-width: var(--logo-size-large);
}


.flight-plane-price {
  text-align: center;
    min-width: var(--logo-size-large);
}

.flight-plane-price .from {
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
    font-size: var(--font-size-large);
}

.flight-plane-price .price {
    font-size: var(--font-size-xxxl);
    font-weight: bold;
    margin: 5px 0px;
}

.flight-plane-book-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
}

/* mobile view flight plane card  */
.flight-plane-card-mobile {
    display: none;
    /* width: 100%; */
    margin: 20px auto;
    padding: 16px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 250px
}

.flight-plane-airline-logo-mobile img {
    width: var(--logo-size-xlarge);
    margin-bottom: 10px;
}

.flight-plane-route-title-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin-bottom: 10px;
}

.flight-plane-icon-mobile {
    width: var(--icon-size-xxlarge);
}

.flight-plane-route-times-mobile {
    display: flex;
    justify-content: space-around;
    margin: 10px 0 20px;
}

.flight-plane-route-times-mobile .time-block {

    display: flex;
}

.flight-plane-route-times-mobile .time-block .code {
    font-size: var(--font-size-xl);
    margin: 0px 7px;

}

.flight-plane-route-times-mobile .time-block .time {
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin: 0px 2px;
}

.flight-plane-book-mobile .btn-book {
    background-color: #e44d26;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
}





.flight-detail {
    display: flex;
    border-bottom: 1px solid #383838;
    gap: 20px;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}





/* flight middle content */

.flight-middle-content h3 {
    font-size: var(--font-size-xxl);
    color: #172A80;
    font-weight: bold;
    margin: 0px 0px 0px 0px;
}

.flight-middle-content p {
    font-size: var(--font-size-medium);
    /* line-height: 20px; */
}

/* infor box alert style */
.info-box {
    background-color: #D9D9D9;
    padding: 15px;
    /* border: 1px solid #d9d9d9; */
    border: 2px solid #ED1C24;
    font-family: Arial, sans-serif;
    /* max-width: 600px; */
    margin: 20px auto;
}

.info-box h3 {
    color: #ED1C24;
}

.info-box p {
    color: #333;
    line-height: 1.5;
    font-size: var(--font-size-medium);
}

#readMoreBtn {
    background-color: transparent;
    color: #ED1C24;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: var(--font-size-medium);
}

/****************************88 flight explore and why book content style ****************/
.whybook-content {
    /* background-color: #e5e5e5; */
    padding: 20px 0px 0px 0px;
    /* border-radius: 10px; */
    /* max-width: 800px; */
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.whybook-content h1 {
    font-size: 34px;
    font-weight: bold;
    color: var(--black-color);
    margin-bottom: 10px;
}

.whybook-content p {
    font-size: 22px;
    color: #333;
    line-height: 2;
}

.whybook-content h2 {
    font-size: 34px;
    font-weight: bold;
    color: #e65100;
    /* Orange color */
    margin-top: 20px;
}

.whybook-content .benefit {
    display: flex;
    align-items: flex-start;
    /* Align icon to the start of the first line */
    font-size: 22px;
    color: #333;
    margin: 0px;
}

.whybook-content .benefit::before {
    content: "✅";
    font-size: var(--font-size-xl);
    margin-right: 10px;
    display: inline-block;
    flex-shrink: 0;
    /* Prevent the icon from shrinking */
}

/*********************flight card place *********/
.popular-flight-card {
    margin: 0;
    opacity: 1;
    /* Change opacity to 1 by default, or use visible class in JavaScript */
    transform: translateX(0);
    overflow: hidden;
    transition: opacity 1s ease, transform 1s ease;

}

.popular-flight-card .visible {
    opacity: 1;
    transform: translateX(0);

}

.popular-flight-card h1 {

    font-size: 36px;
    text-align: center;
    font-weight: bolder;

}


.flight-card-place {
    position: relative;
    width: 25vw;

    max-width: 390px;
    min-width: 300px;
    height: 315px;
    overflow: hidden;
    border: 2px solid var(--black-color);

    margin-left: 0;

    margin-right: 0;


}


.flight-card-place img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    /* Covers the area without distorting the image */
}

.flight-card-place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flight-card-place:hover .flight-card-place-overlay {
    opacity: 1;
}

.flight-place-name {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.flight-card-place:hover .flight-place-name {
    transform: translateY(0);
}

/********************new deisgn flight to news letter*********/
.newsletter {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 90px 10px 90px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newsletter-content {
    max-width: 50%;
    text-align: left;
}

.newsletter-form {
    display: flex;
    max-width: 50%;
    width: 49%;
}

.newsletter-form input {
    padding: 24px;
    border: none;
    width: 100%;
    font-size: var(--font-size-medium);
}

.newsletter-form button {
    background-color: var(--tertiary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Responsive design media querys */



@media (max-width: 1024px) {
    /* .navbarCustom-nav {
        display: none;
        flex-direction: column;
        background-color: var(--white-color);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .navbarCustom-nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1000;

    }

    .navbarCustom-item {
        display: none;
    } */
  
.nav-container {
    margin: 10px;
}
    .body-container {
        margin: 20px;

    }

    .footer {
        padding: 0px 20px 0px 20px;

    }

}
@media (max-width:951px) {
      
 /* ===================== MOBILE navbarCustom STYLE ===================== */

  /* Hamburger Icon */
  .hamburger {
    display: flex;
    flex-direction: column;
   justify-content: space-evenly;
    align-items: center;
    width: 40px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    width: 35px;
    height: 3px;
    color: var(--white-color);
    /* background: var(--black-color); */
    border-radius: 3px;
    transition: all 0.4s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
.navbarCustom-item-mobile{
display: block;
}
.navbarCustom-item-mobile .icon a img{
height: 34px;
}
  /* Nav Drawer */
  .navbarCustom-nav {
            display: flex
;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1001;
        padding: 80px 20px 20px;
        overflow-y: auto;
        gap: 10px;
        align-items: flex-start;
  }

  .navbarCustom-nav.active {
    right: 0;
  }

  /* Nav Links */
  .nav-link-custom {
    font-size: 17px;
    padding: 12px 16px;
    color: var(--black-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s ease;
  }

  .nav-link-custom:hover {
    background-color: #f5f5f5;
  }

  /* Contact Info Hidden in Mobile (Optional) */
  .navbarCustom-item {
    display: none;
  }

  /* Dropdown Menu */

 
  .dropdown-menu-custom {
   
    
    
    
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    margin-top: 10px;
    z-index: 999;
      display: none !important;
  flex-direction: column;
  background: var(--white-color);
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 5px;
  position: static !important; /* 🟢 THIS IS THE KEY */
  width: 100%;
  box-shadow: none;
  z-index: 1;
  }

  .dropdown-menu-custom.submenu-active {
     display: flex !important;
  }
  /* Region Title Toggle */
  .region-title {
   font-size: 16px;
        font-weight: 400;
        color: var(--black-color);
        border-radius: 6px;
        cursor: pointer;
        display: flex
;
        justify-content: space-between;
        align-items: center;
        border-bottom: 0px !important;
        margin-bottom: -20px !important;
        height: auto !important;
        width: 150px !important;
  }

  .region-title::after {
    content: "▼";
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  /* Submenu Cities */
  .region-title:hover {
   color: var(--primary-color);
  }
.submenu-column-custom {
  display: none;
}
  .submenu-column-custom.show {
    display: flex;
  }

  .submenu-column-custom a {
   font-size: 15px;
        color: var(--black-color);
        text-decoration: none;
        padding: 0px;
        border-radius: 4px;
        font-weight: 100;
        line-height: 1.8;
        transition: background 0.2s;
  }

  .submenu-column-custom a:hover {
    /* background-color: #f2f2f2; */
    color: var(--primary-color);
  }
 .nav-container {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white; /* or your theme color */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  
    margin: 0;
    padding: 0 10px;
  }

  .navbarCustom-brand img {
    width: 140px; /* Adjust as needed */
  }

  /* Optional: backdrop blur */
  .navbarCustom-nav.active {
    backdrop-filter: blur(10px);
  }

.nav-item-custom {
align-items: flex-start;
        height: auto;
        display: flex
;
        padding-top: 0px;
        flex-direction: column;
}
 

}

@media (max-width: 767px) {
    .flight-image-container img {
        width: 100%;
    }

    .flight-plane-card-mobile {
        display: block !important;
    }

    .subscription-section {
        background: url('https://travelsea.co.uk/travelSea/View/assets/imgs/subm.svg') no-repeat center center/cover;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
 
    .passenger-container {
        flex-direction: column;
    }

    .typing-text {
        font-size: var(--font-size-default);
    }

    .slide {
        flex: 0 0 95%;
        /* Show 1 item on mobile */
    }

    .feature p {
        font-size: 9px;
    }

    .feature {
        margin: 0px;
    }


    .booking-container {

        padding: 15px;
        transform: translateX(0);
    }

    .booking-container.homepage-form {
        /* margin-top: -18px; */
                margin-top: -30px;

    }

    .tab {
        font-size: var(--font-size-default);
    }

    .form-row {
        gap: 15px;
        /* flex-direction: column;*/
        /* Stack fields vertically */
    }

    .form-group1,
    .form-group2 {
        margin: 5px 0;
    }

    .footer {
        padding: 0px 20px;

    }

    .separator {
        display: none;
    }

    .separator-confidence {
        display: none;
    }

    .holiday-trip-cards {

        justify-content: space-around !important;
    }

    .content-section {
        display: flex;
        flex-wrap: wrap !important;

        flex-direction: column-reverse;

    }

    .main-section {

        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;

        position: relative;
    }

    .laptopView {
        display: none !important;
        /* Hide laptop view on mobile */
    }


    .MobileView {
        display: flex !important;
        /* gap: 30px; */
        /* padding: 15px; */
        /* justify-content: space-between; */
        align-items: center;
        flex-wrap: wrap !important;
    }

    .three-card-col {
        width: 100%;
        margin: 9px 0px;

    }

    .flight-card {
        background-color: white;
        border-radius: 0px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);

        display: flex;

        padding: 6px 16px;
        align-items: center;
        justify-content: space-around;
        border: 3px solid var(--white-color);
        flex-direction: column;

    }

    .flight-card:hover {
        border: 3px solid #172A80;
    }

    .flight-logo {
        text-align: center;
        margin: 5px;
    }

    .flight-logo img {
        margin: 0px;
        height: 35px;
        text-align: left;
    }

    .flight-icon {
        height: 16px !important;
        margin: 0px;
    }

    .flight-info h1 {
        color: #172A80;
        font-size: var(--font-size-xl);
        text-align: center;
        font-weight: bold;
        margin: 4px;
    }

    .flight-info {
        text-align: center;
    }

    .flight-info h5 {
        font-size: 15px;
        text-align: center;
        margin: 2px;
    }

    .flight-info h1 span {
        margin: 0px 20px;
    }

    .flight-info p {
        margin: 6px;
        font-size: 15px;
    }

    .flight-price {

        text-align: center;

        margin: 0px;
    }

    .flight-price h3 {
        /* text-align: center; */
        font-size: 22px;
        margin: 4px;
    }

    .flight-detail p {
        font-size: var(--font-size-small);
    }

    .flight-price button {
        background-color: #172A80;
        color: white;
        /* border: none; */
        padding: 8px 10px;
        cursor: pointer;
        font-size: 13px;
        border-radius: 0px;
    }

    .flight-plane-card {
        display: none;
            transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    .flight-plane-card-mobile {
        display: block !important;
    }

    .newsletter {
        padding: 20px !important;
        /* flex-direction: column; */
        padding: 20px;
        text-align: center;
    }

    .newsletter-content {
        max-width: 100% !important;
        text-align: center !important;
        margin-bottom: 15px;
    }

    .newsletter-form {
        /* align-items: center; */
        max-width: 100% !important;
        width: 100% !important;
        /* flex-direction: column;*/
    }

    .newsletter-form input {
        /* text-align: center; */
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px;
        font-size: var(--font-size-default);
        /* margin-bottom: 10px;*/
    }

    .newsletter-form button {
        padding: 12px;
        font-size: var(--font-size-medium);
        width: 33%;
    }

    .confidence-logos img,
    .payment-logos img {
        /* min-width: 45px;
        max-width: 80px;
        min-height: 45px;
        max-height: 90px; */
                /* min-width: 45px; */
        max-width: 76px;
        /* min-height: 45px; */
        max-height: 30px;
    }

    .confidence-logos,
    .payment-logos {

        gap: 10px;
    }

    .confidence h3,
    .payment h3 {
        font-size: var(--font-size-xl);
        font-weight: bold;

    }

    .confidence,
    .payment {
        text-align: center;
        /*flex: 1;*/
        padding: 5px;
    }

    .confidence-payment-section {

        padding: 0px;

    }

}

@media screen and (max-width: 620px) {


    .MobileView {

        flex-wrap: wrap;

    }

}

@media (max-width: 480px) {
    .tab img {
        width: 24px;
        height: 24px;
    }


    .tab {
        font-size: var(--font-size-small);
    }

    .form-group2 button.search-btn {
        font-size: var(--font-size-default);
        padding: 10px;
    }

    .sub-content {
        width: 270px !important;

    }

    .content-section {
        flex-wrap: wrap;
        /* padding: 0px 30px 0px 11px;*/
        flex-direction: column-reverse;
    }

    .flight-col {
        /* flex: 1; */
        margin: 9px 0px;
        width: 100%;
        /* min-width: 180px; */
    }

    .footer-headings {


        text-align: center;
        justify-content: center;

        align-content: center;
        align-items: center;
    }

}


/*Passenger Details*/


/* Progress Bar */
.progress-bar {
    display: flex;
    border-radius: 6px;
    margin: 20px auto;
    justify-content: space-around;
    background: var(--tertiary-color);
    padding: 15px 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.progress-bar .step {
    background: #ff6600;
    color: white;
    font-size: var(--font-size-l);
    padding: 10px 10px;
    width: 180px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.passenger-container {
    display: flex;
    flex-wrap: wrap;

    margin: 20px auto;
    gap: 20px;
}

/* Passenger & Payment Forms */
.passenger-form,
.payment-form {
       background: white;
    /* padding: 20px; */
    /* width: 50%; */
    /* flex: 1; */
    width: 55%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.passenger-form h2,
.payment-form h2 {

    font-size: var(--font-size-xxl);
    font-weight: bold;
    margin: 10px;
}



/* Terms & Button */
.terms {
    font-size: var(--font-size-default);
    color: #555;
}

.terms a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.proceedbutton {
    width: 100%;
    padding: 10px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: var(--font-size-medium);
    margin: 20px auto;
    cursor: pointer;
}

#proceedButton {
    background-color: gray;
    /* Disabled button color */
    cursor: not-allowed;
}

#proceedButton:enabled {
    background-color: #ff6600;
    /* Enabled button color */
    cursor: pointer;
}

#proceedButton:enabled:hover {
    background-color: #ff6600;
    /* Hover effect when enabled */
}

.flight-details {


   border-radius: 6px;
    background: white;
    padding: 20px 2px 0px 36px;
    /* border: 1px solid; */
    width: 40%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


