
      /* ----------------------------------------------------
   GLOBAL FONT & BASE STYLING
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Smooth transitions */
*, *::before, *::after {
  transition: all 0.25s ease;
}

/* ----------------------------------------------------
   HEADINGS
------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.3px;
  margin-bottom: 0.6rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* ----------------------------------------------------
   PARAGRAPHS
------------------------------------------------------- */
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: #444;
}

/* ----------------------------------------------------
   NAVBAR + MENU SPACING
------------------------------------------------------- */
.navbar-nav .nav-item {
  margin-left: 22px; /* spacing between items */
}

.navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 18px;
  color: #333 !important;
}

.navbar-nav .nav-link:hover {
  color: #3ab34b !important;
}

/* ----------------------------------------------------
   BUTTONS (GLOBAL)
------------------------------------------------------- */
.btn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

/* Green hover buttons */


/* Place where you said hover must be green */
.btn-outline-secondary:hover {
  background-color: #3ab349 !important;
  color: #fff !important;
  border-color: #3ab349 !important;
}

/* Schedule Tour button colors */
.btn-primary {
  background-color: #3ab34b !important;
  border-color: #3ab34b !important;
}

.btn-primary:hover {
  background-color: #8bc53f !important;
  border-color: #8bc53f !important;
}

/* ----------------------------------------------------
   CARD STYLING (FORMENT & SECTIONS)
------------------------------------------------------- */
.testimonial-carousel,
.testimonial-carousel .carousel-inner,
.testimonial-carousel .carousel-item {
  overflow: visible !important;
}

/* Extra safety for row inside carousel */
.testimonial-cards-row {
  overflow: visible !important;
  position: relative;
}

.card {
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card .card-body {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card .card-body:hover {
  transform: none; /* Keep inner content steady */
  box-shadow: none;
}
/* Inputs */
.form-control {
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
}

.form-control:focus {
  border-color: #3ab34b !important;
  box-shadow: 0 0 0 0.15rem rgba(58, 179, 75, 0.25);
}

/* ----------------------------------------------------
   FAQ SECTION
------------------------------------------------------- */
.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #222;
}

.faq-question:hover {
  color: #3ab34b;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  display: none;
  margin-top: 8px;
  color: #555;
}

/* ----------------------------------------------------
   SECTION SPACING
------------------------------------------------------- */
section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ----------------------------------------------------
   LAYOUT HELPERS
------------------------------------------------------- */
.text-purple {
  color: #5a2d82;
}

.rounded-4 {
  border-radius: 12px !important;
}

.shadow-soft {
  box-shadow: 0px 10px 25px rgba(0,0,0,0.07);
}
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Submenu support */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }

  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ---------------------------------------------
   MOBILE: Use normal Bootstrap click behavior
---------------------------------------------- */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* Increase spacing between dropdown list items */
.navbar-nav .dropdown-menu .dropdown-item {
    padding: 12px 20px;     /* bigger click/tap area */
    margin-bottom: 8px;     /* more breathing room between items */
    font-size: 1.05rem;     /* slightly larger for readability */
    border-radius: 6px;     /* smooth edges */
}

/* Remove space after last item */
.navbar-nav .dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

/* Hover effect */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #f4f4f4;
    color: #3ab34b !important;
}


  