* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

header {
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 250px;
    transition: 0.5s ease;
}

header .name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

/*background video styling*/
.video {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.home::before {
    z-index: 7;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.home .content {
    z-index: 8;
    width: 70%;
    padding: 100px 200px;
    text-align: center;
}

.home .content h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 75px;
    display: inline-block;
    white-space: nowrap;
}

.home .content h1 span {
    font-weight: 900;
}

section .content .title {
    color: rgb(232, 176, 108);
}

section .content #element {
    color: rgb(232, 176, 108);
}

.home .content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 750;
    margin-top: 25px;
    letter-spacing: 1.8px;
    position: relative;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
}

.slider-navigation {
    display: none;
}

.img-slides {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: transform 1.5s ease-in-out;
}

body {
    margin: 0;
}

@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }

    .home .content {
        padding: 100px 20px;
    }
}

.gujMap {
    background-image: url("guj-map-svg-banner.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow: auto;
}

.map-container {
    width: 600px;
    height: 600px;
    padding-top: 50px;
    margin-right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    right: 2%;
}

.map-container path {
    fill: rgba(255, 255, 255, 0.8);
    stroke: black;
    transition: fill 0.3s;
    pointer-events: auto;
}

.map-container path:hover {
    fill: darkorange;
    cursor: pointer;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: none;
    z-index: 5;
    pointer-events: none;
}

#hover-info {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: black;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 6;
    white-space: nowrap;
    pointer-events: none;
    transition: transform 0.1s ease;
}

#hover-info::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.info-card {
    position: static;
    background-color: rgba(255, 255, 255, 0.9); /* Light background with transparency */
    padding: 20px;
    border-radius: 15px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    width: 450px;
    transition: opacity 0.3s ease-in-out; /* Smooth fade transition */
    font-family: 'Poppins', sans-serif;
    z-index: 10; 
    margin-top: 30px;
    margin-right: 700px;
    margin-bottom: 90px;
    padding: 40px;
}

.info-card h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: darkorange;
}

.info-card p {
    font-size: 1rem;
    color: #555;
}

.info-card img {
    width: 100%; /* Adjust as needed */
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block; /* Ensures it is visible */
    margin-top: 10px;
}

/* Style for Image Carousel */
.image-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Image Styling */
.image-carousel img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Image */
.image-carousel img:hover {
    transform: scale(1.03);
}

/* Carousel Buttons - Enhanced */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 140, 0, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 0.8;
}

/* Hover Effect */
.carousel-btn:hover {
    background-color: rgba(255, 140, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

/* Fix Button Clickability */
#prev-btn {
    left: 10px;
    z-index: 1000;
}

#next-btn {
    right: 10px;
    z-index: 1000;
}

/* Image Styling with Fade Transition */
.image-carousel img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease;
}

/* Hover Effect for Image */
.image-carousel img:hover {
    transform: scale(1.02);
}

.explore-btn {
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: darkorange; 
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: red; 
}

/* trip planner css*/
.trip-planner {
    background: linear-gradient(to right, #f8f8f8, #ffffff);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 90%;
}

.planner-title {
    font-size: 3rem;
    color: #ff7043;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.planner-header p {
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.choice {
    margin: 30px 0;
}

.choice h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/*select dropdown bar*/
.dropdown-content {
    position: relative;
    width: 300px;
    max-width: 100%;
    margin: auto;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

#myInput {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 1rem;
}

#myDropdown {
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

#myDropdown div {
    padding: 12px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.2s;
}

#myDropdown div:hover {
    background-color: #ff7043;
    color: white;
}

.select-days .day-select {
    position: relative;
    width: 500px;
    margin: auto;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#day {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 1rem;
}

.select-days h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.budget {
    margin: 40px 0;
}

.budget h3 {
    color: #333;
    margin-bottom: 15px;
}

.budget-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.budget-container div {
    background: #fefefe;
    padding: 20px;
    width: 300px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.budget-container div:hover {
    transform: translateY(-5px);
    background-color: #ff7043;
    color: white;
}

.budget-container .selected {
    background-color: #ff7043;
    color: white;
    transform: translateY(-5px);
}

.plan-to-travel {
    margin: 40px 0;
}

.plan-to-travel h3 {
    color: #333;
    margin-bottom: 15px;
}

.plan-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.plan-container div {
    background: #fefefe;
    padding: 20px;
    width: 300px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.plan-container div:hover {
    transform: translateY(-5px);
    background-color: #4caf50;
    color: white;
}

.plan-container .selected {
    background-color: #4caf50;
    color: white;
    transform: translateY(-5px);
}

.generate-btn {
    margin-top: 30px;
}

.generate-btn button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.generate-btn button:hover {
    background-color: #ff7043;
    transform: translateY(-5px);
}

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

:root {
  --primary-text: #333;
  --secondary-text: #777;
  --background: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.team-marquee-section {
  padding: 60px 0;
  background: var(--background);
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary-text);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.marquee-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  animation: scrollLeft 30s linear infinite;
  gap: 80px;
}

.second-row {
  animation: scrollRight 25s linear infinite;
}

.team-item, .lang-item {
  flex: 0 0 auto;
  text-align: center;
  width: 160px;
  margin: 0 20px;
}

.team-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.lang-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.team-item h3, .lang-item h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-text);
}

.team-item p, .lang-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--secondary-text);
  font-weight: 400;
}

.team-item:hover img, .lang-item:hover img {
  transform: scale(1.1);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-100% / 2));
  }
  100% {
    transform: translateX(0);
  }
}

/* Make sure content is center-aligned for all screen sizes */
@media (max-width: 768px) {
  .marquee-content {
    gap: 40px;
  }
  
  .team-item, .lang-item {
    width: 140px;
    margin: 0 15px;
  }
  
  .team-item img {
    width: 80px;
    height: 80px;
  }
  
  .lang-item img {
    width: 60px;
    height: 60px;
  }
}

.meet-our-team-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* removes underline */
    z-index: 1000;
}
  
.meet-our-team-btn:hover {
    text-decoration: none;
    color: #ddd; /* subtle hover effect */
}



/*responsive layout for the svg gujarat map for 1070 and 730 screen size*/
/* Responsive Layout for width <= 1070px */
@media (max-width: 1070px) {
  .gujMap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-top: 30px;
  }

  .map-container {
    order: 1;
    position: static;
    width: 90%;
    height: auto;
    margin: 10px auto;
    padding: 0;
    transform: none;
  }

  .info-card {
    order: 2;
    margin: 20px auto;
    width: 90%;
    padding: 20px;
  }

  .image-carousel img {
    max-height: 180px;
  }

  .carousel-btn {
    padding: 10px 14px;
    font-size: 16px;
  }
}

/* Responsive Tweaks for height <= 730px */
@media (max-height: 730px) {
  .gujMap {
    padding-top: 20px;
  }

  .info-card {
    padding: 15px;
    margin: 15px auto;
  }

  .info-card h3 {
    font-size: 1.4rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  .image-carousel img {
    max-height: 150px;
  }

  .carousel-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Combine both width <= 1070px and height <= 730px */
@media (max-width: 1070px) and (max-height: 730px) {
  .info-card {
    padding: 12px;
    font-size: 0.9rem;
  }

  .image-carousel img {
    max-height: 140px;
  }
}