: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;
}

/* HEADER & NAVIGATION */
.header-wrapper {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.container {
  max-width: 1400px;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height : 85px;
}

.logo-img {
  width: 100px;
  height: auto;
}

.search-container {
  flex: 1;
  max-width: 400px;
  justify-items: right;
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 20px 10px 45px;
  border: 1px solid var(--gray-border);
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: var(--gray-light);
}

.search-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 105, 255, 0.1);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  width: 18px;
  height: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: var(--blue);
}

.phone-icon {
  width: 18px;
  height: 18px;
}

.login-button {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.desktop-login{
   display: inline-flex;
 }

.nav-login{
  display : none;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 255, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px;
}

/* NAVIGATION MENU */
.nav-menu {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.nav-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-icon {
  width: 18px;
  height: 18px;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  transform-origin :center;
}



.dropdown-menu {
  border : 1px solid var(--gray-border);
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

 .nav-item.active .dropdown-arrow {
  transform: rotate(180deg) ;
}
.dropdown-item {
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--gray-light);
  color: var(--blue);
} 
/* 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;
}




   

  
  
  
  

  
  

   

   


