@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Euclid Circular B", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
/* Base Styles - Already Correct */
.main-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.logo-texted {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: 400px;
  object-fit: contain;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex: 1;
  margin-left: 40px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 6px 6px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-item > a:hover {
  color: #ec008c;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background-color: #ec008c;
  transition: width 0.3s ease;
}

.nav-item > a:hover::after,
.nav-item > a.active::after {
  width: 100%;
}

/* Default Dropdown (for desktops) */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  padding: 12px;
  z-index: 1000;
  animation: dropdownFade 0.25s ease forwards;
}

.nav-item:hover .dropdown {
  display: block;
}

/* Dropdown Content */
.dropdown h4 {
  font-size: 13.5px;
  margin-bottom: 4px;
  color: #0066aa;
}
.dropdown a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease;
}
.dropdown a:last-child {
  border-bottom: none;
}
.dropdown a:hover {
  color: #ec008c;
}
.dropdown p {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.4;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #333;
}

.contact-info i.material-icons {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 5px;
  color: #ff6600; /* Customize icon color if needed */
}


/* Dropdown Fade Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================== */
@media screen and (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 50vh;
    width: 100%;
    margin-top: 90px;
    z-index: 600;
    padding: 20px 16px;
    box-sizing: border-box; /* ✅ Fix width behavior */
    overflow-x: hidden;     /* ✅ Remove horizontal scroll */
  }

  .nav.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: left;
    position: relative;
  }

  .dropdown {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%; /* ✅ Ensures no extra width */
    height: auto;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    padding: 20px 20px;
    z-index: 700;
    animation: dropdownFade 0.25s ease-in-out forwards;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
  }

  .dropdown.active {
    display: flex;
  }

  .dropdown h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #0066aa;
    text-align: left;
  }

  .dropdown a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
  }

  .dropdown a:last-child {
    border-bottom: none;
  }

  .dropdown p {
    font-size: 12.5px;
    color: #777;
    margin-top: 8px;
    line-height: 1.4;
    text-align: left;
  }

  .contact-info {
    display: none;
  }

  .main-header {
    flex-wrap: nowrap;
    overflow-x: hidden; /* ✅ Prevent accidental width expansion */
  }

  .logo-texted {
    flex: 1;
  }
  .logo img {
  height: 100px;
  width: 240px;
  object-fit: contain;
}

  .burger {
    margin-left: auto;
  }
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
  text-align: left;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 30%;
  background: linear-gradient(to right, #ff6a00, #ffb800);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 655px;
  width: 100%;
}

.about-image {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Tablets and below */
@media (max-width: 1024px) {
  .about-us {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-image {
    text-align: left;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
     text-align: left;
  }

  .about-image img {
    max-width: 250px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .about-content h2 {
    font-size: 1.6rem;
    
  }

  .about-content p {
    font-size: 0.95rem;
    text-align: left;
  }

  .about-us {
    gap: 20px;
    padding: 30px 10px;
  }

  .about-image img {
    max-width: 200px;
  }
}


.hero-carousel-section {
  background-color: #fff;
  font-family: "Euclid Circular B", sans-serif;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  min-width: 100vw;
  height: 100vh;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
}

.carousel-content {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 400px;
  z-index: 2;
}

.carousel-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.carousel-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.carousel-book-btn {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.carousel-book-btn:hover {
  background-color: #e65100;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.carousel-arrow-left {
  left: 20px;
}
.carousel-arrow-right {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-slide,
  .carousel-slide img {
    height: 80vh;
    min-width: 100vw;
    object-fit: cover;
  }

  .carousel-content {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
    padding: 14px 20px;
    text-align: left;
  }

  .carousel-content h2 {
    font-size: 1.6rem;
  }

  .carousel-content p {
    font-size: 0.95rem;
  }

  .carousel-book-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .carousel-arrow {
    font-size: 2rem;
    padding: 8px 12px;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }
}



/* Base Section Styling */
.activity-section {
  padding: 30px 30px;
  max-width: 1200px;
  margin: auto;
  margin-top: 30px;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.view-all {
  font-size: 16px;
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.view-all.active {
  color: #007bff;
}

.view-all i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.view-all:hover i {
  transform: translateX(5px);
}

/* Cards Layout */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  transition: max-height 0.3s;
  padding: 0 12px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 370px;
  flex: 1 1 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}


.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 18px;
  margin: 5px 0;
  color: #222;
}

.tag {
  background: #f0f0f0;
  color: #333;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 6px;
}

.pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.strike {
  text-decoration: line-through;
  color: #b0b0b0;
  font-size: 15px;
}

.save {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
}

/* Buttons Section - Always Visible */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.call,
.callback {
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  flex: 1 1 48%;
  min-width: 120px;
  transition: background 0.3s;
}

.call {
  background: #25d366;
}

.callback {
  background: #007bff;
}

.call img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
 
/* Extra Cards */
.card-container .card.extra-card {
  display: none;
  animation: fadeIn 0.4s;
}

.card-container.show-extra .card.extra-card {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Media Queries === */

/* Tablets & Medium Devices (min-width: 640px) */
@media (min-width: 640px) {
  .card {
    width: 100%;
    max-width: 340px;
  }

  .buttons {
    flex-wrap: nowrap;
  }

  .call,
  .callback {
    flex: 1 1 48%;
  }
}
.activity-section {
  padding: 10px 10px;
  
  margin: auto;
  margin-top: 30px;
}
/* Larger Tablets & Small Laptops (min-width: 768px) */
@media (min-width: 768px) {
  .card-container {
    justify-content: flex-start;
  }

  .card {
    width: calc(50% - 12px); /* 2 per row with 24px gap */
  }
}

/* Desktops (min-width: 1024px) */
@media (min-width: 1024px) {
  .card {
    width: calc(33.333% - 16px); /* 3 per row */
  }
}

/* Travel section  */

.travel-section {
  padding: 10px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.section-header .view-all {
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
}

.travel-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.travel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  width: 320px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

/* .travel-card:hover {
  transform: translateY(-5px);
} */

.travel-img {
  width: 100%;
  height: 180px; /* Match the original .card img height */
  object-fit: cover;
}

.travel-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.travel-duration {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

.travel-title {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
  color: #222;
}

.travel-category {
  background-color: #f0f0f0;
  padding: 2px 8px; /* Match tag padding */
  border-radius: 8px; /* Match tag border radius */
  font-size: 13px;
  color: #333;
  display: inline-block;
  margin-bottom: 6px;
}

.travel-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

.travel-price del {
  color: #b0b0b0;
}

.travel-discount {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
}

.travel-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.travel-buttons .call,
.travel-buttons .callback {
  border: none;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.travel-buttons .call {
  background: #25d366;
}

.travel-buttons .callback {
  background: #007bff;
  width: 83%;
  justify-content: center;
}

.travel-buttons .call img {
  margin-right: 4px;
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .travel-card {
    width: calc(50% - 12px);
  }
}


@media (max-width: 600px) {
  .travel-card {
    width: 100%;
  }

  .travel-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Transport section */
.transport-section {
  padding: 50px 20px;
  text-align: left;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.transport-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.transport-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.transport-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.transport-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  width: 320px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

/* .transport-card:hover {
  transform: translateY(-5px);
} */

.transport-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.transport-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transport-card-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
  color: #222;
}

.transport-card-desc {
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 8px;
  display: inline-block;
}

.transport-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.transport-call-btn,
.transport-request-btn {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.transport-call-btn {
  background-color: #25d366;
}

.transport-request-btn {
  background-color: #007bff;
  width: 83%;
  justify-content: center;
}

/* Optional call icon style */
.transport-call-btn img {
  margin-right: 4px;
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .transport-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .transport-card {
    width: 100%;
  }

  .transport-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* FAQ CSS */
/* FAQ Section for Xplore Rishikesh Adventures */
.xplore-faq-section {
  padding: 60px 20px;
  background-color: #fff;
}

.xplore-faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.xplore-faq-content {
  flex: 1 1 600px;
}

.xplore-faq-heading {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.xplore-faq-subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
}

.xplore-faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.xplore-faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.xplore-faq-icon {
  font-size: 20px;
  color: #006400;
}

.xplore-faq-answer {
  display: none;
  font-size: 15px;
  color: #555;
  padding-top: 10px;
}

.xplore-faq-item.active .xplore-faq-answer {
  display: block;
}

.xplore-faq-item.active .xplore-faq-question {
  background-color: #006400;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
}

.xplore-faq-item.active .xplore-faq-icon {
  color: #fff;
}

.xplore-faq-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xplore-faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .xplore-faq-container {
    flex-direction: column-reverse;
    text-align: left;
  }

  .xplore-faq-heading {
    font-size: 28px;
  }

  .xplore-faq-question {
    font-size: 16px;
  }
}


/* section 3 testimonials*/

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

#destinations {
  background: #d6eaff;
}
#experiences {
  background: #c7f0f3;
}
#inspirations {
  background: #f1e2fa;
}
/* #tripfinder { background: #fce4e4; }  Removed */
#mostpopular {
  background: #fff3d4;
}
#aboutus {
  background: #e3f7e1;
}

.footer {
  background-color: #ffffff;
  background-size: cover;
  color: #000000;
  padding: 60px 20px 20px;
  min-height: 50vh;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 13px; /* Equal gap between elements */
}

/* Logo Styling */
.logos {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1px;
}

/* About Text */
.about {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Headings */
.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #00d8ff;
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid #00d8ff33;
  width: fit-content;
}

/* Links List */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Equal gap between li items */
}

.footer-section ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #43a6e2;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease-in-out;
}

.footer-section ul li a:hover {
  color: #111;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

/* Contact Info */
.footer-section p {
  font-size: 14px;
  margin: 5px 0;
  color: #333;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icons a img {
  filter: invert(0);
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Subscribe */
.subscribe label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.subscribe-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  flex: 1;
  border-radius: 4px;
}

.subscribe-form button {
  padding: 10px 18px;
  background-color: #00d8ff;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.subscribe-form button:hover {
  background-color: #00bcd4;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #555;
}

/* Responsive Behavior */
@media screen and (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    max-width: 100%;
    width: 100%;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input[type="email"],
  .subscribe-form button {
    width: 100%;
  }

  .footer-section.left {
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 16px 16px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .subscribe-form input[type="email"],
  .subscribe-form button {
    font-size: 13px;
  }

  .about {
    font-size: 13px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }
}



/* xplore contact section */

.xplore-contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.xplore-contact-bg {
  position: absolute;
  inset: 0;
  background: url("images/Contact.jpg") no-repeat center center/cover;
  z-index: 1;
}

.xplore-contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
}

/* Contact Form */
.xplore-form-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Title */
.xplore-form-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
  color: #222;
}

/* Inputs */
.xplore-form label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #333;
}

.xplore-form input,
.xplore-form select,
.xplore-form textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.xplore-form textarea {
  resize: vertical;
  min-height: 60px;
}

/* Submit Button */
.xplore-submit-btn {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: #460feb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.xplore-submit-btn:hover {
  background-color: #3421b1;
}

/* Contact Info (Right Aligned) */
.xplore-contact-info {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-left: auto; /* RIGHT ALIGN */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xplore-info-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.xplore-info-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #460feb 60%, #ffb347 100%);
  border-radius: 2px;
  margin-bottom: 16px;
}

.xplore-info-text {
  font-size: 1rem;
  line-height: 1.6;
}

.xplore-info-text strong {
  font-weight: 700;
}

.xplore-info-text span {
  font-weight: 600;
}

/* Flex Container for Both Form & Info */
.xplore-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Section Background */
.xplore-contact-section {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.xplore-contact-bg {
  position: absolute;
  inset: 0;
  background: url("images/Contact.jpg") no-repeat center center/cover;
  z-index: 1;
}

.xplore-email {
  margin-top: 12px;
  font-weight: bold;
  color: #fff; /* Adjust based on your background */
  display: flex;
  align-items: center;
  gap: 8px;
}

.material-icons {
  font-size: 20px;
  vertical-align: middle;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .xplore-contact-container {
    flex-direction: column;
    align-items: center;
  }

  .xplore-contact-info {
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .xplore-info-underline {
    margin: 0 auto 16px;
  }
}

@media (max-width: 600px) {
  .xplore-contact-section {
    min-height: auto;
    padding: 0;
  }

  .xplore-form-box,
  .xplore-contact-info {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: none;
    padding: 20px 16px;
  }
}



/* Form Styling */
.form-wrapper h2 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #222;
  text-align: center;
}

form label {
  display: block;
  margin: 4px 0 2px;
  color: #333;
  font-size: 14px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 6px 7px;
  border: 1px solid #ccc;
  font-family: "Euclid Circular B", sans-serif;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 8px;
}

form textarea {
  resize: vertical;
  height: 50px;
}

form button {
  width: 100%;
  padding: 8px;
  background-color: #460feb;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* call back form */
.callback-form-section {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logoss {
  width: 180px;   /* Increased from 120px */
  height: 120px;  /* Increased from 90px */
  object-fit: contain;
}


.hidden {
  display: none;
}

.form-container {
  background: #fff;
  border-radius: 8px;
  margin-top: 50px;
  padding: 24px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

/* Header layout */
.form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}


.form-title {
  text-align: left;
}

.form-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #334caa;
}

.form-title p {
  font-size: 0.75rem;
  color: #9d3d3d;
  margin-top: 1px;
  margin-bottom: 0;
}

.close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 80px;
}

.row {
  display: flex;
  gap: 10px;
}

.row input {
  flex: 1;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.cta-btn {
  width: 100%;
  background: #f97316; /* Orange */
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* testimonials */

.testimonials-carousel-section {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonials-carousel-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.testimonials-carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.testimonials-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.testimonials-carousel-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background: #fff;
  margin: 0 auto;
  padding: 40px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-sizing: border-box;
}

.testimonials-carousel-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonials-carousel-name {
  font-weight: 600;
  color: green;
  margin-bottom: 4px;
}

.testimonials-carousel-location {
  font-size: 0.95rem;
  color: #444;
}

.testimonials-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonials-carousel-dots span {
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.testimonials-carousel-dots span.active {
  background-color: #006400;
}
