* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
  background: #131313;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 1px; /* Space between elements */
  font-size: 28px; /* Slightly larger for better visibility */
  font-weight: bold;
  color: #ffffff; /* Set to white or your brand color */
  text-decoration: none;
  text-shadow: none !important; /* Completely remove text glow */
  filter: none !important;
  box-shadow: none !important;
}

.navbar__logo img {
  height: 40px;
  filter: none !important;
  box-shadow: none !important;
}

.number {
  color: white; /* Change to your preferred color */
  font-weight: bold; /* Optional: Make it bold */
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 60px;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #f77062;
  color: #fff;
}

.button:hover {
  background: #4837ff;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #f77062;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main Content CSS */
.main {
  background-color: #141414;
}

.main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 90vh;
  background-color: #131313;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding-right: 50px;
  padding-left: 50px;
}

.main__content {
  color: #fff;
  width: 100%;
}

.main__content h1 {
  font-size: 4rem;
  background-color: #ff8c00;
  background-image: linear-gradient(to top, #ff7300 0%, #ffa500 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content h2 {
  font-size: 4rem;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #d9d9d9 0%, #ffffff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content h3 {
  font-size: 4rem;
  background-color: #28a745;
  background-image: linear-gradient(to top, #228b22 0%, #00ff7f 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.main__content p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.main__btn {
  font-size: 1rem;
  background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
}

.main__btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #4837ff;
  transition: all 0.35s;
  border-radius: 4px;
}

.main__btn:hover {
  color: #fff;
}

.main__btn:hover:after {
  width: 100%;
}

.main__img--container {
  text-align: center;
}

#main__img {
  height: 80%;
  width: 80%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .main__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 90vh;
  }

  .main__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main__content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .main__content h2 {
    font-size: 3rem;
  }

  .main__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .main__content h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .main__content h2 {
    font-size: 2rem;
  }

  .main__content p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .main__btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* Services Section */
.services {
  background: #131313;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.services h1 {
  background-image: linear-gradient(
    to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.services__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Clickable Card */
.services__card {
  margin: 1rem;
  height: 525px;
  width: 400px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

/* Background Images */
.services__card:first-child {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%), 
  url('./images/North_India_Adventure_Activities.jpg');
}

.services__card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.9) 100%), 
  url('././images/South_India_Backwaters.jpg');
} 

.south-blur {
  background: url('./images/South_India_Backwaters.jpg') center/cover no-repeat;
  filter: blur(8px);
  pointer-events: none; /* Disables clicking */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.south-blur::after {
  content: "Coming Soon";
  position: absolute;
  color: white;
  font-size: 3rem; /* Increased size */
  font-weight: bold;
  background: rgba(0, 0, 0, 0.9); /* Darker background */
  padding: 20px 40px; /* Larger padding */
  border-radius: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Adds a slight glow */
}



/* Text Styling */
.services__card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.services__card p {
  font-size: 1.1rem;
}

/* Hover Effect */
.services__card:hover {
  transform: scale(1.075);
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 960px) {
  .services {
    height: auto;
    padding: 40px 0;
  }

  .services h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .services__card {
    width: 90%;
    height: 450px;
  }
}

@media screen and (max-width: 480px) {
  .services h1 {
    font-size: 1.5rem;
  }

  .services__card {
    width: 300px;
    height: 400px;
  }
}

/* Footer CSS */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.footer__container {
  margin-top: auto;
}

.footer__container {
  background-color: #141414;
  padding: 20px;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 1200px;
}

.website__rights {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.social__icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social__icon--link {
  color: #fff;
  font-size: 24px;
  transition: 0.3s ease;
}

.social__icon--link:hover {
  color: #ff9f43;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer__content {
      flex-direction: column;
      text-align: center;
  }

  .navbar__menu {
    display: none;
}
.navbar__menu.active {
    display: flex;
    flex-direction: column;
}
}

/* Color Animation */

.animated-bg {
  background: linear-gradient(270deg, #ff758c, #ff7eb3, #87CEEB, #ffb199);
  background-size: 400% 400%;
  animation: skyAnimation 8s infinite alternate ease-in-out;
  padding: 50px;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

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

/* Plane theme */
.map-bg {
  background: url('https://upload.wikimedia.org/wikipedia/commons/5/50/World_map_blank_without_borders.svg');
  background-size: cover;
  animation: moveMap 10s linear infinite;
  padding: 50px;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

@keyframes moveMap {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}


.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background 0.3s;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

/* Logo Styling */
.logo {
  height: 70px;
  margin-right: 5px;
  animation: fadeIn 1.5s ease-in-out, pulse 2.5s infinite alternate;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@600&display=swap'); 

.soulwish-title {
  font-family: 'Playfair Display', serif; /* Elegant & professional */
  font-size: 36px;
  font-weight: bold;
  color: #FFFFFF; /* Pure white */
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* Remove gradient effect to ensure white text */
.soulwish-title {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background: none;
}

/* Fix for Trip Cards */
.trip-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .hero {
      height: auto;
  }
  .trip-card img {
      height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .customized-banner img, 
  .attractions__image img {
      max-width: 100%;
      max-height: 300px;
      object-fit: cover;
  }
}
