/********** Template CSS **********/
:root {
    --primary: #9bbd7c;
    --secondary: #EDC9AF;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
/* NAVBAR GENERAL STYLES */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 22px;
    padding: 6px 0;
    color: #FFFFFF !important;
    font-size: 17px;
    font-weight: 600;
    transition: .4s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}


@media (max-width: 342.99px) {
/* ✅ LOGO SHRINK ON SCROLL */
.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
}
    .navbar-light .navbar-brand img {
        max-height: 45px;
    }


}
/* ✅ MOBILE STYLES */
@media (max-width: 991.98px) {
    .navbar-light {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        background: #FFFFFF;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    body {
        padding-top: 75px; /* so content doesn't hide behind navbar */
    }

    .navbar-light .navbar-brand img {
        max-height: 80px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark) !important;
        margin-right: 0;
    }
}

/* ✅ DESKTOP UNDERLINE EFFECT */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    /* ✅ LOGO SIZE — Desktop */
.navbar-light .navbar-brand img {
    max-height: 110px;
    transition: .35s ease;
}

/* ✅ LOGO SHRINK ON SCROLL */
.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 50%;
        background: var(--primary);
        transition: .4s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}



/*** Hero Header ***/
.hero-header {
  background: linear-gradient(rgba(20, 20, 31, 0.7), rgba(20, 20, 31, 0.7)), url(../img/Serengeti-National-Park-Tanzania-Best-Things-to-Do-Top-Picks.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 70vh; /* normal height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reduce height on mobile */
@media (max-width: 768px) {
  .hero-header {
    min-height: 50vh;
    padding: 3rem 1rem;
  }

  .hero-header h1 {
    font-size: 1.8rem;
  }

  .hero-header p {
    font-size: 1rem;
  }
}

/* Indicators */
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active,
.indicator:hover {
  background-color: #fa7f1b;
  transform: scale(1.2);
}

/* Hero text slideshow styles */
.hero-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

#heroContent {
  min-height: 180px;
  overflow: hidden;
}


/* Indicators styling */
#heroIndicators .indicator {
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

#heroIndicators .indicator.active {
  background-color: #ff7627;
  width: 60px;
}


.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/* About Us Carousel */
/* About Us Carousel */

/* Make carousel container relative */
.about-carousel {
  position: relative;
}

/* Arrows overlay */
.about-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.about-carousel .owl-nav button.owl-prev,
.about-carousel .owl-nav button.owl-next {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .about-carousel:hover .owl-nav button.owl-prev,
  .about-carousel:hover .owl-nav button.owl-next {
    opacity: 1;
  }
}

.about-carousel .owl-nav button.owl-prev:hover,
.about-carousel .owl-nav button.owl-next:hover {
  background: rgba(0,0,0,0.8);
}

/* Horizontal bar indicators instead of dots */
.about-carousel .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.about-carousel .owl-dot {
  width: 50px;
  height: 6px;
  background: rgba(232, 245, 173, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.about-carousel .owl-dot.active {
  background: #007bff;
  transform: scaleX(1.2);
}

/* Disable drag cursor */
.about-carousel .owl-stage {
  cursor: default !important;
}

.about-carousel img {
  height: 400px;
  object-fit: cover;
 
}

@media (max-width:768px){
  .about-carousel img {
    height: 250px;
  }
}


/* end of about us */

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}
/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b627, #00d8a2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s;
}
.service-card:hover .icon-box {
  background: linear-gradient(135deg, #00b627, #00d8a2);
  transform: scale(1.1);
}
.highlight-card {
  background: linear-gradient(135deg, #00b627, #00d8a2);
  color: white;
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

/* Experiences */
.experience-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.experience-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}
.experience-card:hover .experience-img {
  filter: brightness(1);
}
.experience-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background:  #00b627;
  color: white;
  padding: 20px;
  transition: 0.4s ease;
  transform: translateY(100%);
}
.experience-card:hover .experience-overlay {
  transform: translateY(0);
}
.experience-overlay h4 {
  font-weight: 600;
  margin-bottom: 8px;
}
.experience-overlay p {
  font-size: 14px;
  margin-bottom: 0;
}


/*** Destination ***/
.destination-item {
  background: #fff;
  transition: all 0.4s ease;
}

.destination-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-item img {
  transition: all 0.6s ease;
}

.destination-item:hover img {
  transform: scale(1.08);
}

.destination-item .btn {
  transition: all 0.3s ease;
}

.destination-item .btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.destination-card img {
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: rgba(0, 0, 0, 0.5);
}



/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.booking-section {
  background: linear-gradient(rgba(20, 20, 31, 0.85), rgba(20, 20, 31, 0.85)),
    url('../img/booking.jpg') center/cover no-repeat;
}

.text-accent {
  color: #ffd36b;
}

.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-form .form-control,
.booking-form .form-select {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  color: #333;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 211, 107, 0.4);
}

.booking-form label {
  color: #555;
}

/* .btn-primary {
  background-color: #ffd36b;
  border: none;
  color: #333;
} */

/* .btn-primary:hover {
  background-color: #ffcc4d;
  color: #222;
} */

.btn-outline-light:hover {
  background-color: #fff;
  color: #333;
}

@media (max-width: 768px) {
  .booking-section {
    background-position: center;
    text-align: center;
  }

  .booking-form {
    margin-top: 2rem;
  }
}

/* process */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b627, #00d8a2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.process-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 123, 255, 0.3);
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}
.process-card {
  transition: all 0.3s ease;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}

/* contact us */
.btn-primary {
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: #016b2d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.form-floating .form-control:focus {
  border-color: #0dfd99;
  box-shadow: none;
}
.shadow-sm {
  transition: transform 0.3s;
}
.shadow-sm:hover {
  transform: translateY(-3px);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #00b627 !important;
    border-color: #00b627 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #00b627;
    border-color: #00b627;
}


/*** Footer ***/
/* .footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
} */

.footer-section {
  background: linear-gradient(180deg, #001f3f, #000814);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}
.footer-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.footer-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}


.spot::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.spot::after {
  content: "";
  position: absolute;
  bottom: -170px;
  right: -170px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.btn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-social:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #000 !important;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: green;
  padding-left: 5px;
}
.designed {
  color: #182633;
 
}
.designed:hover{
  color: rgb(250, 187, 71)
}
.newsletter-box input {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
}
.newsletter-box input::placeholder {
  color: rgba(255,255,255,0.6);
}
.newsletter-box button {
  border: none;
  color: #000;
}