:root {
  --primary-gradient: linear-gradient(90deg, #0a0a0a 0%, #0069ff 100%);
  --accent-yellow: #ffd400;
  --dark: #0a0a0a;
  --blue: #0069ff;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-border: #dfe6e9;
  --text-dark: #2d3436;
  --text-gray: #636e72;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  overflow-x: hidden;
}


/* HERO SECTION */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}

.overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.my-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-video-text {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#animatedText {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  min-height: 50px;
}

.upcoming-trip-btn {
  background: var(--accent-yellow);
  color: var(--dark);
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.upcoming-trip-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.5);
}

/* REVIEWS SECTION */
.reviews-card {
  background: var(--gray-light);
  padding: 3rem 0;
}

.welcome-title {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-title h3 {
  font-size: 32px;
  color: var(--text-dark);
}

.welcome-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-img-container {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-card-img {
  max-height: 100%;
  max-width: 60%;
  object-fit: contain;
}

.review {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review img {
  width: 20px;
  height: 20px;
}

.review p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* COMMUNITY TRIPS SECTION */
.ghumo-community-trips-section {
  padding: 5rem 0;
}

.community-trips {
  position: relative;
  border-radius: 20px;
  padding: 80px 20px;
  overflow: hidden;
  background: var(--primary-gradient);
}

.community-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}

.community-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.community-subtitle {
  font-size: 60px;
  font-weight: 700;
  color: var(--accent-yellow);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.trip-card {
  min-width: 220px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trip-card:hover {
  background: var(--accent-yellow);
  color: var(--dark);
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
  .nav-list {
    max-width: 1200px;
    gap: 25px;
    font-size: 13px;
  }

  .search-container {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .nav-list {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 12px 20px;
    margin: 0px;
    
  }

  .search-container {
    max-width: 100%;
    flex-basis: 100%;
  }

  .nav-right {
    gap: 12px;
  }

  .phone-number {
    font-size: 12px;
  }

  .login-button {
    padding: 8px 20px;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px;
  }
  

  .nav-item {
    padding: 20px 0px;
    width: 100%;
    border-bottom: 1px solid var(--gray-border);

  }
  
  
.nav-menu {
  position: fixed;
  top: 85px;               
  left: 0;
  width: 100%;
  height: calc(100vh - 85px);
  overflow-y: auto;        
  background: var(--white);
  z-index: 999;
  transition: transform 0.5s ease-in-out;
}

  .hidden{
    transform: translateX(-100%);
  }
  .nav-menu:not(.hidden) {
    transform: translateX(0);
  }

  .nav-link {
    padding: 15px 0;
    width: 100%;
  }
  

  .desktop-login {
    display: none;
  }

  .nav-login {
    display: block;
    width: 100%;
    justify-items: center;
    align-items: center;
    border-bottom: 0px;
  }

  .nav-item .login-button{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 100%;
    box-shadow: none ;
    padding : 15px 20px;
    font-size: 15px;
    font-weight: 700;
  }


  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all 0.3s ease;
  }
  
  .dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg) ;
  
}

  .nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 10px 30px 10px 30px;
    transition: all 0.3s ease;
    
  }

  .dropdown-item {
    padding: 10px 0;
  }

  .hero-video-text {
    font-size: 32px;
  }

  #animatedText {
    font-size: 24px;
  }

  .community-trips {
    padding: 60px 16px;
  }

  .community-title {
    font-size: 36px;
  }

  .community-subtitle {
    font-size: 40px;
  }

  .trip-card {
    min-width: 180px;
    padding: 14px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 20px;
  }
  .nav-menu .active {
    right: 0;
  }  

  .search-container {
    display: none;
  }

  .phone-icon {
    display: none;
  }

  .logo-img {
    width: 80px;
  }

  .phone-text {
    display: none;
  }

  .login-button {
    padding: 8px 16px;
  }

  .navbar-container {
    padding: 10px 15px;
  }

  .nav-list {
    padding: 0px 15px;
    
  }

  .hero-video-text {
    font-size: 24px;
  }

  #animatedText {
    font-size: 18px;
  }

  .community-title {
    font-size: 28px;
  }

  .community-subtitle {
    font-size: 30px;
  }
}

/* UTILITIES */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.align-items-stretch {
  align-items: stretch;
}

.justify-content-between {
  justify-content: space-between;
}


/* UPCOMING TRIP SECTION*/

.upcoming-trips {
    padding: 3vmax 0;
    overflow: hidden
}

.upcoming-trips .up-align {
    margin-top: -6rem
}

.upcoming-trips .video-overlay-wrapper {
    position: relative
}

.upcoming-trips .video-overlay-wrapper .overlay-bg {
    position: absolute;
    height: 98%;
    width: 100%;
    border-radius: 30px
}

.upcoming-trips .video-overlay-wrapper .my-video {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px
}

.upcoming-trips .video-overlay-wrapper .title-wrapper {
    position: absolute;
    top: 15%;
    left: 35px;
    width: -moz-max-content;
    width: max-content
}

#upcoming-animatedText,
.upcoming-trips .video-overlay-wrapper .title-wrapper h3 {
    font-size: 36px;
    font-family: neueBold, sans-serif;
    color: var(--white);
    margin-bottom: 0
}

.upcoming-trips .video-overlay-wrapper .title-wrapper p {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px
}

.upcoming-trips swiper-container {
    width: 100%
}

.upcoming-trips swiper-slide {
    background-position: center;
    background-size: cover;
    width: 285px;
    height: 350px;
    border-radius: 10px;
    position: relative
}

.upcoming-trips swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 10px;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover
}

.upcoming-trips .overlay-shade {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    border-radius: 8px;
    background: linear-gradient(rgba(0, 0, 0, .091) 46.67%, rgba(0, 0, 0, .252) 86.21%)
}

.upcoming-trips .trip-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px
}

.upcoming-trips .trip-details .details h3 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

.upcoming-trips .trip-details .details .location-days {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.upcoming-trips .trip-details .details .location-days .days-trip {
    display: flex;
    align-items: center;
    gap: 4px
}

.upcoming-trips .trip-details .details .location-days .days-trip img {
    width: 20px;
    height: 20px
}

.upcoming-trips .trip-details .details .location-days .days-trip h4 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0
}

.upcoming-trips .trip-details .details .location-days .location {
    display: flex;
    align-items: center;
    gap: 4px
}

.upcoming-trips .trip-details .details .location-days .location img {
    width: 20px;
    height: 20px
}

.upcoming-trips .trip-details .details .location-days .location h4 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0
}

.upcoming-trips .trip-details .details a {
    text-decoration: none;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 20px;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    background: radial-gradient(#0e9082, #0a988a);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase
}

.upcoming-trips .trip-details .details a img {
    width: 25px;
    height: 25px;
    animation: move 3s alternate-reverse linear infinite
}

@keyframes move {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(20px)
    }
}

@keyframes bannermove {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.upcoming-trip-wrapper {
    padding: 3rem 0
}

.upcoming-trip-wrapper swiper-container {
    width: 100%
}

.upcoming-trip-wrapper swiper-slide {
    background-position: center;
    background-size: cover;
    width: 285px !important;
    height: 380px;
    border-radius: 15px;
    position: relative
}

.upcoming-trip-wrapper swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 10px;
    height: 380px;
    -o-object-fit: cover;
    object-fit: cover
}

.upcoming-trip-wrapper .overlay-shade {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    border-radius: 8px;
    background: linear-gradient(rgba(0, 0, 0, 0) 46.67%, rgba(0, 0, 0, .656) 86.21%)
}

.upcoming-trip-wrapper .trip-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px
}

.upcoming-trip-wrapper .trip-details .details h3 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px
}

.upcoming-trip-wrapper .trip-details .details p {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px
}

.upcoming-trip-wrapper .trip-details .details .location-days {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.upcoming-trip-wrapper .trip-details .details .location-days .days-trip {
    display: flex;
    align-items: center;
    gap: 4px
}

.upcoming-trip-wrapper .trip-details .details .location-days .days-trip img {
    width: 20px;
    height: 20px
}

.upcoming-trip-wrapper .trip-details .details .location-days .days-trip h4 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0
}

.upcoming-trip-wrapper .trip-details .details .location-days .location {
    display: flex;
    align-items: center;
    gap: 4px
}

.upcoming-trip-wrapper .trip-details .details .location-days .location img {
    width: 20px;
    height: 20px
}

.upcoming-trip-wrapper .trip-details .details .location-days .location h4 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0
}

.upcoming-trip-wrapper .trip-details .details a {
    text-decoration: none;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 20px;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    background: radial-gradient(#0e9082, #0a988a);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase
}

.upcoming-trip-wrapper .trip-details .details a img {
    width: 25px;
    height: 25px;
    animation: move 3s alternate-reverse linear infinite
}

@keyframes move {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(20px)
    }
}

@keyframes moveImage {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 10px)
    }

    100% {
        transform: translate(0, 0)
    }
}


/* LOCATIONS SECTION*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: media;
  src: url(../fonts/Media-Sans.ttf);
}
@font-face {
  font-family: neueBold;
  src: url(../fonts/NeueKabel-Bold.otf);
}
@font-face {
  font-family: neue;
  src: url(../fonts/NeueKabel-Medium.otf);
}
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-size: 1vw;
  background-color: #fff;
  scroll-behavior: smooth;
}
:root {
  --primary-color: #40e0d0;
  --secondary-color: #36c0b2;
  --seperator: #cecece;
  --border: #d6d6d6;
  --title: #131213;
  --paragraph: #8b8a8b;
  --white: #fff;
}
:root {
  --primary-color: #379cf4;
  --secondary-color: #0069ff;
  --background: #f9f9f7;
  --border: #e9e9e9;
  --seperator: #e9e9e9;
  --title: #0f172a;
  --paragraph: #64748b;
  --white: #ffffff;
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.common-heading-wrapper {
  margin-bottom: 3rem;
  overflow: hidden;
}
.common-heading-wrapper h3 {
  color: #e5e5e5;
  color: rgba(15, 23, 42, 0.15);
  font-family: neueBold, sans-serif;
  font-size: 55px;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 600;
}
.common-heading-wrapper h4 {
  color: var(--title);
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-top: -38px;
}
.common-heading-wrapper .line-x {
  height: 5px;
  width: 10%;
  display: block;
  background-color: var(--secondary-color);
  border-radius: 50px;
  margin-left: -24px;
}
.common-heading-wrapper .left-title {
  width: -webkit-fill-available;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes bannermove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes moveImage {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media only screen and (min-width: 320px) and (max-width: 520px) {
  .common-heading-wrapper h3 {
    font-size: 26px;
  }
  .common-heading-wrapper h4 {
    font-size: 20px;
    margin-top: -18px;
  }
  .common-heading-wrapper .line-x {
    width: 25%;
    margin-left: -12px;
  }
}
@media only screen and (min-width: 520px) and (max-width: 768px) {
  .common-heading-wrapper h3 {
    font-size: 26px;
  }
  .common-heading-wrapper h4 {
    font-size: 20px;
    margin-top: -18px;
  }
  .common-heading-wrapper .line-x {
    width: 25%;
    margin-left: -12px;
  }
}
@keyframes currentSlide {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-ltr-anim {
  0% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(-50%);
  }
  55% {
    transform: translateX(-50%);
  }
  90% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-rtl-anim {
  0% {
    transform: translateX(-50%);
  }
  35% {
    transform: translateX(0);
  }
  55% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.location-wrapper {
  padding: 5rem 0;
}
.location-row {
  row-gap: 40px;
  text-align: center;
}
.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.location-card img:hover {
  transform: scale(1.08);
  cursor: pointer;
}
.location-card p {
  font-family: Poppins, sans-serif;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
@keyframes ghumo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

  
  

  
  

   

   


