
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

:root {
    --bs-primary: #846220; /* your new brand color */
  }

.btn.btn-primary {
    background: var(--bs-primary);
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: #553c08; /* slightly darker for hover */
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.owl-animated-out {
    animation-duration: 3.5s !important;
}

.owl-animated-in {
    animation-duration: 3.5s !important;
}

.header-carousel .header-carousel-item img {
    object-fit: cover;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}
    25% {width: 115%; height: 115%;}
    50% {width: 130%; height: 130%;}
    75% {width: 120%; height: 120%;}
    100% {width: 100%; height: 100%;}
}

@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

/* Mobile carousel text fix */
@media (max-width: 768px) {
    .header-carousel .carousel-caption {
      position: absolute;
      top: 0%;                  /* start a bit from the top */
      left: 0;
      right: 0;
      bottom: auto;
      padding: 10px 15px;
      text-align: left;
      max-height: 90%;          /* allow more vertical space */
      overflow-y: auto;         /* scroll if text too long */
    }
  
    .header-carousel .carousel-caption h1 {
      font-size: 1.4rem;
      line-height: 1.3;
      margin-bottom: 10px;
    }
  
    .header-carousel .carousel-caption h4 {
      font-size: 1rem;
      margin-bottom: 8px;
    }
  
    .header-carousel .carousel-caption p {
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 12px;
    }
  
    .header-carousel .btn {
      font-size: 0.9rem;
      padding: 8px 18px;
    }
  }
  

/* Hide carousel arrows */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next,
.header-carousel .owl-nav .owl-next i,
.attractions .owl-nav .owl-prev,
.attractions .owl-nav .owl-next {
    display: none !important;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*** Carousel Wrapper ***/
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Default: Desktop overlay positioning */
.foreground-carousel-wrapper {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 58vw;
    z-index: 20;
    padding-left: 20px;
    box-sizing: border-box;
}

/* When screen width is below 1024px, keep it aligned but not cropped */
@media (max-width: 1024px) {
    .foreground-carousel-wrapper {
        width: 100%;
        right: auto;
        padding-left: 0;
        bottom: 10px;
    }
}

/* Mobile: Move it below the main carousel */
@media (max-width: 768px) {
    .foreground-carousel-wrapper {
        position: static; /* remove absolute positioning */
        width: 100%;
        padding: 0;
        margin-top: 15px;
        z-index: 1; /* normal stacking */
    }

    .attractions-carousel {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 10px;
    }

    .attractions-item {
        width: 48%; /* 2 items per row */
    }

    .attractions-item img {
        width: 100%;
        height: auto;
    }
}


/*** Attractions Carousel inside wrapper ***/
.attractions-carousel {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 15px;
    width: 100% !important;
}

.attractions-carousel .owl-stage {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0px;
}

.attractions-carousel .owl-item {
    margin-right: 15px;
    flex-shrink: 0;
}

.attractions-carousel .owl-item:last-child {
    margin-right: 0;
}

/*** Each attraction item ***/
.attractions-item {
    width: 200px; /* adjust as needed */
}

.attractions-item img {
    width: 300px;
    height: 255px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(100, 99, 99, 0.7);
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(100, 99, 99, 0.069), rgba(100, 99, 99, 0.04)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(100, 99, 99, 0.069), rgba(100, 99, 99, 0.04)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/




/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-light);
    overflow: hidden; /* keeps rounded corners clean */
}

.feature-item img {
    width: 100%;
    border-radius: 10px 10px 0 0; /* only round top corners */
    display: block;
    transition: transform 0.4s ease; /* smooth zoom */
}

.feature-item:hover img {
    transform: scale(1.05); /* zoom in */
}

.feature-item .feature-content {
    position: relative; /* remove absolute positioning */
    width: 100%; 
    background: rgba(109, 109, 109, 0.344);
    border-radius: 0 0 10px 10px; /* round bottom corners */
    padding: 15px;
    box-sizing: border-box;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 1;
}


/*** Feature End ***/

/* Package Cards Styling */
/* Package Card Container */
.package-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px; /* fixed card height */
}

/* Image as background, covering the card */
.package-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fills the card without distortion */
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.package-item:hover img {
    transform: scale(1.05); /* zoom effect on hover */
}

/* Foreground text overlay */
.package-content {
    position: absolute;
    top: 50%;
    left: -30px; /* partially outside left */
    transform: translateY(-50%);
    width: 45%; /* half-width card text */
    background: rgba(50, 50, 50, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    z-index: 2;
    height: auto; /* adaptive height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
}

/* Inner content */
.package-content-inner h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-content-inner p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Button below each card */
.package-item + a.btn {
    margin-top: 10px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .package-content {
        left: 10px;
        width: 55%;
        transform: translateY(0);
        top: auto;
    }
}

@media (max-width: 576px) {
    .package-item {
        height: auto; /* let height adapt */
    }
    .package-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: -5px;
        border-radius: 0 0 10px 10px;
        padding: 15px;
        background: rgba(50,50,50,0.6);
    }
    .package-item + a.btn {
        width: 100%;
    }
}


/* Zoom on hover */
.package-item:hover img {
    transform: scale(1.05);
}

/* Text overlay */
.package-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%; /* Half width */
    height: 50%; /* Half height */
    background: rgba(109, 109, 109, 0.6); /* Semi-transparent gray */
    padding: 15px;
    border-radius: 0 10px 0 0; /* Round top-right corner */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.package-content-inner h4,
.package-content-inner p {
    margin: 0;
    color: #fff;
}

/* Ensure overlay text stays readable on mobile */
@media (max-width: 768px) {
    .package-content {
        width: 100%; /* Full width on mobile */
        height: auto;
        border-radius: 0;
        padding: 10px;
    }
}



/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.475), rgba(0, 0, 0, 0.514)), url(../img/2025/08/Ngorongoro-Crater-in-Tanzania.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.atttractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 130, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/tree.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.atractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 130, 0), rgba(130, 130, 130, .0)), url(../img/2025/08/climbing-mount-kilimanjaro-at-sunset.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

/*** WhatsApp Start ***/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}
/*** WhatsApp End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

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

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Testimonial End ***/

/*** Trip Advisor Start ***/
.tripadvisor-link {
    display: flex;
    justify-content: center;  /* Horizontally center */
    align-items: center;      /* Vertically center if needed */
    text-decoration: none;
  }
  
  .tripadvisor-icon {
    width: 100px;   /* Adjust size */
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .tripadvisor-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }
/*** TripAdvisor End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}

.footer .newsletter-container {
    max-width: 500px;
    margin: 40px auto 0;
    padding: 25px;
    background: var(--bs-dark);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Open Sans', sans-serif;
    color: var(--bs-body);
  }
  
  .footer .newsletter-container h2 {
    color: var(--bs-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .footer .newsletter-container p {
    color: var(--bs-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .footer .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .footer .newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 12px 15px;
    border: 2px solid var(--bs-body);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
    background: transparent;
    color: var(--bs-white);
  }
  
  .footer .newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer .newsletter-form input[type="email"]:focus {
    border-color: var(--bs-primary);
    background: var(--bs-dark);
  }
  
  .footer .newsletter-form button {
    padding: 12px 20px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .footer .newsletter-form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
  }
  
  .footer .newsletter-message {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--bs-white);
  }
  
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/




























/*** plays Start ***/
.plays {
    position: relative;
    overflow: hidden;
}

.plays::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(110, 110, 110, 0), rgba(137, 137, 137, 0)), url(../img/2025/08/Lion-Cubs.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.plays .plays-section {
    position: relative;
    z-index: 03;
}

.plays .plays-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.plays .plays-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.plays .plays-item:hover:after {
    height: 100%;
}

.plays .plays-item .plays-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.plays .plays-item:hover .plays-name {
    opacity: 1;
}

.plays-carousel .owl-stage-outer {
    margin-top: 58px;
}

.plays .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.plays .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.plays .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.plays .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

/* Center the Overview section content */
.safari-section {
    text-align: center;
   
}

.safari-section h4 {
    text-align: left !important;
    margin-left: -120px;
    margin-top: 30px;
}

.safari-section p {
    text-align: justify; /* keeps paragraphs nicely formatted */
    margin-left: -60px;
}

/* Center the bullet list container */
.safari-features {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 800px; /* keeps it from stretching too wide */
    text-align: center;
}
.safari-features h4 {
    text-align: left !important;
    margin-left: -10px;
    margin-top: 30px;
}
/* Style and center each bullet */
.safari-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    text-align: left; /* keeps bullets aligned left but whole block centered */
}

.safari-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #846220; /* gold bullet */
    font-size: 20px;
}

/*** plays End ***/


/*** Itinerary Start ***/
.accordion-button::after {
    content: '';
    display: none; /* Remove Bootstrap's default arrow */
}

.accordion-button span {
    font-weight: bold;
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed) span {
    content: '-';
    transform: rotate(0deg);
}
/*** Itinerary End ***/




/*** atdays Start ***/
.atdays {
    position: relative;
    overflow: hidden;
}

.atdays::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/2025/08/Zebra-Drinking.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** atdays End ***/



/*** attdays Start ***/
.attdays {
    position: relative;
    overflow: hidden;
}

.attdays::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/2025/08/Tarangire-Photos-elephant.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

/*** attdays End ***/


/*** attdlys Start ***/
.attdlys {
    position: relative;
    overflow: hidden;
}

.attdlys::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/2025/08/Serengeti-Serena-Lodge.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

/*** attdlys End ***/


/*** attradll Start ***/
.attradll {
    position: relative;
    overflow: hidden;
}

.attradll::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/2025/08/hoiday-family-tour.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

/*** attradll End ***/

/*** atrdays Start ***/
.atrdays {
    position: relative;
    overflow: hidden;
}

.atrdays::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/wildebeests-are-crossing-mara-river-great-migration-kenya-tanzania-masai-mara-national-park.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

/*** atrdays End ***/


/*** machame Start ***/
.machame {
    position: relative;
    overflow: hidden;
}

.machame::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/Mountain-Trekking-Kilimanjaro-Machame-route.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** machame End ***/

/*** lemosho Start ***/
.lemosho {
    position: relative;
    overflow: hidden;
}

.lemosho::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/Lemosho.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** lemosho End ***/

/*** marangu Start ***/
.marangu {
    position: relative;
    overflow: hidden;
}

.marangu::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/marangu.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** marangu End ***/

/*** rongai Start ***/
.rongai {
    position: relative;
    overflow: hidden;
}

.rongai::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/Kilimanjaro-trekking.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** rongai End ***/

/*** meru Start ***/
.meru {
    position: relative;
    overflow: hidden;
}

.meru::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/meru.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** meru End ***/

/*** oldoinyo Start ***/
.oldoinyo {
    position: relative;
    overflow: hidden;
}

.oldoinyo::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(130, 130, 130, .0)), url(../img/2025/08/Mt-Oldoinyo-Lengai.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** oldoinyo End ***/

/*** zanzibar Start ***/
.zanzibar {
    position: relative;
    overflow: hidden;
}

.zanzibar::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(176, 175, 175, 0)), url(../img/2025/08/zanzibar-beach-aerial.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** zanzibar End ***/

/*** stone Start ***/
.stone {
    position: relative;
    overflow: hidden;
}

.stone::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(176, 175, 175, 0)), url(../img/2025/08/Zanzibar-street.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** stone End ***/

/*** sand Start ***/
.sand {
    position: relative;
    overflow: hidden;
}

.sand::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(176, 175, 175, 0)), url(../img/2025/08/Safaris-Zanzibar.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** sand End ***/

/*** comp Start ***/
.comp {
    position: relative;
    overflow: hidden;
}

.comp::after {
    content: "";
    width: 100%;
    height: 700px;
    margin-top: 15px;
    margin-bottom: 35px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(130, 130, 1300, .0), rgba(176, 175, 175, 0)), url(../img/2025/08/Island-of-Zanzibar-1024x682.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}



/*** comp End ***/



/* CTA Card Styles */
.cta-card {
    background: rgba(50, 50, 50, 0.85); /* semi-transparent dark background */
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-btn {
    font-size: 1rem;
}



/* Thumbnail styling */
.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    max-width: 560px;
  }

  .video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('https://img.icons8.com/ios-filled/100/ffffff/play--v1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.85;
  }
  .video-thumbnail:hover .play-button {
    opacity: 1;
  }

  /* Popup overlay */
  .video-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
  }

  .video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 5% auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
  }

  .video-popup iframe {
    width: 100%;
    height: 500px;
    border: none;
  }

  .video-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
  }

  /* Responsive for mobile */
  @media (max-width: 768px) {
    .video-popup iframe {
      height: 250px;
    }
  }


  .checklist {
    list-style: none;
    padding: 0;
  }
  .checklist li::before {
    content: "✔";
    color: grey;
    font-weight: bold;
    margin-right: 8px;
  }