/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
    --primary: #655a01;
    --light: #fff;
    --dark: #000;
	--button: linear-gradient(176deg, var(--primary), #000);
	--secondary: #6e4224;
}
body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Marcellus', serif;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    position: absolute;
    left: 0;
    z-index: 10;
    background: #ffffffba !important;
    width: 90%;
    margin: 20px auto;
    right: 0;
    border-radius: 50px;
    padding: 5px 10px;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
	margin: 0;
    background: #fff !important;
    padding: 12px 0; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
	width: 100%;
	border-radius: 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.btn-primary ,
.wpcf7-submit{
    position: relative;
    z-index: 1;
    color: #fff;
    background: var(--button);
    border: none;
    padding: 10px 40px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 0;
    display: inline-block;
}
.btn-primary:hover ,
.wpcf7-submit:hover{
    color: #fff;
}
.btn-primary::after ,
.wpcf7-submit::after{
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 4px;
}
.btn-primary:hover::after ,
.wpcf7-submit:hover::after{
    transform: scale(1);
    transform-origin: top left;
}
.site-header .nav > li > a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  display: inline-block;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--secondary); 
}
/* Dropdowns */
.site-header .nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 9999;
	border-radius: 4px;
	border-top: 4px solid var(--primary);
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: var(--secondary);
  display: block;
  font-weight: 400;
  text-decoration: none;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--secondary);
  color: #fff;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://fidex.co.ke/wp-content/uploads/2026/04/bread-crumb.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
    z-index: 1;
}
.breadcrumb-item.active {
    color: #fff !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff !important;
}
.breadcrumb-title h2 {
    color: #fff !important;
}
li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
/*==========================
     FOOTER SECTION CSS 
==============================*/
/* FOOTER SECTION CSS */
footer {
    position: relative;
    background: url("https://fidex.co.ke/wp-content/uploads/2026/03/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    padding-top: 5rem;
    background-position: center;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f7f7f7cf 33.19%, #f7f7f78f 100%);
}
footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url(https://fidex.co.ke/wp-content/uploads/2026/03/background-shape.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 2;
}
footer .container{
    position:relative;
    z-index:2;
}
.footer_menu h3 {
    font-weight: 700;
    color: var(--primary);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin:0;
}
footer a{
	color: #000;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
.box1{
	padding: 20px;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 250px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.footer-icon {
    height: 30px;
    width: 30px;
    background: var(--violate);
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    align-items: center;
}
ul.footer-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
#mobileMenuBtn i {
    color: #fff;
    font-size: 40px;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
.menu ,.footer-details,.footer-payment{
    margin-top: 25px;
}
footer p {
    margin-bottom: 25px;
    line-height: 30px;
    margin-top: 25px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}

footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
	color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}
.copyright p a {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
.footer-payment {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.payment-box {
    background: #fff;
    display: flex;
    align-items: center;
    width: 65%;
    height: 90px;
    flex-direction: column;
    justify-content: center;
}
/* Scroll To Top Button */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#GoToTop i{
	color: #fff;
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 45px;
    position: relative;
    left: -6px;
    top: -2px;
    filter: invert(1);
}
/*=========================
       Hero Section 
============================*/
.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
	padding: 0;
	max-width: 100%;
	margin: 0;
}
.video-section video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 2;
}
.carousel-content {
    position: relative;
    z-index: 3;
    height: 100%;
}
.carousel-inner {
    height: 100%;
}
.carousel-item {
    height: 100%;
}
.slide-content {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
	width: 65%;
}
h1.split-text {
    font-size: 71px;
    color: #fff;
}
.split-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}
.carousel-item.active .split-text span {
    animation: letterUp 0.6s forwards;
}
@keyframes letterUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-content .btn {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
}
.carousel-item.active .btn {
    animation: fadeUp 1s forwards;
    animation-delay: 1s;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.word {
    display: inline-block;
    white-space: nowrap; 
    margin-right: 12px; 
}
.letter {
    display: inline-block;
}
.carousel-controls {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.carousel-controls button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--button);
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.carousel-controls button:hover {
    background: linear-gradient(176deg,  #000, var(--primary));
}
/*=======================
    About Section
=======================*/
Section{
	padding: 80px 0 0;
}
.sub-heading {
    color: var(--secondary);
    display: flex;
    justify-content: center;
}
.sub-heading img {
    height: auto;
    width: 35px;
    margin-right: 5px;
}
.heading-section {
    text-align: center;
}
.heading {
    font-size: 60px;
    text-align: center;
    color: #6e422447;
    line-height: 1.4;
}
.heading span {
    color: #6e422447;
    transition: color 0.3s ease;
}
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
   line-height: 40px;
}
.check-list li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}
.about-img img {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #8080804f;
}
.second-box{
	position: relative;
}
img.img-fluid.learn {
    box-shadow: none;
    position: absolute;
    left: -15%;
    bottom: -20%;
    width: 60%;
    background: #fff;
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite;
}
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Safari Section */
section.safari-section {
    padding: 80px 0;
    background: #6e42241c;
    margin: 100px 0 0;
}
.safari-section .sub-heading {
    justify-content: flex-start;
}
.safari-section .heading {
    text-align: left;
    font-size: 40px;
}
.safari-section .heading-section{
	text-align: left;
}
.safari-image{
    overflow: hidden; 
    border-radius: 5px;
}
.safari-image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.safari-image:hover img {
    transform: scale(1.1);
}
/*========================
     Tour Section
============================*/
.nav-width {
    display: flex;
    gap: 10px;
    width: 25%;
    background: #655a0145;
    border-radius: 47px;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
}
.tour-section{
    position:relative;
}
.tour-section .sub-heading {
    justify-content: flex-start;
}
.tour-section .heading{
	text-align: left;
}
.tour-section .custom-nav {
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: flex-end;
}
.tour-section .nav-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:0.3s;
}
.tour-section .nav-btn i{
    font-size:14px;
    color:#000;
}
.tour-section .nav-btn:hover{
    background:#6e4224;
    transform:translateY(-3px);
}
.tour-section .nav-btn:hover i{
    color:#fff;
}
/* CARD */
.tour-section .tour-card{
    background:#fff;
    border-radius:18px;
    padding:15px;
    transition:0.3s;
    border:1px solid #eee;
}
.tour-section .tour-top {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--secondary);
    align-items: center;
    margin-bottom: 20px;
}
.tour-section .tour-img{
    width:100%;
    height: 300px;
    border-radius:12px;
    overflow:hidden; 
}
.tour-section .tour-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}
.tour-section .tour-card:hover .tour-img img{
    transform:scale(1.1);
}
.tour-section .tour-content {
    background: #6e422414;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 12px;
}
.tour-section .tour-content h5{
    font-weight:600;
    margin-bottom:8px;
}
.tour-section .tour-content p{
    font-size:14px;
    color:#555;
}
.tour-section .explore{
    color: var(--secondary);
    text-decoration:none;
    font-weight:500;
    margin-top:10px;
    display:inline-block;
    transition:0.3s;
}
.tour-section .explore:hover{
    letter-spacing:1px;
}
.tour-section .explore i{
    margin-left:5px;
}
.tour-section .heart {
    background: #6e422447;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(
    --primary);
}
.tour-section .swiper-pagination-bullet-active{
    background:#000;
}
/* Why Choose us */
section.why-number {
    background: url(https://fidex.co.ke/wp-content/uploads/2026/03/choose-bg.jpg);
    padding: 80px 0 120px;
    margin: 80px 0 0;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.why-number::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}
section.why-number::before{
    content: ""; 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url(https://fidex.co.ke/wp-content/uploads/2026/03/background-shape.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 2;
}
section.why-number .container{
    position: relative;
    z-index: 3;
}
section.why-number .heading1{
	margin-bottom: 3rem;
	font-size: 60px;
    text-align: center;
    color: #fff;
    line-height: 1.4;
}
.num-card {
    position: relative;
    background: #ffffff;
    padding: 65px 25px 25px;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    border: 1px dashed var(--primary);
}
.num-card .big-num{
    position:absolute;
    top:-20px;
    right:10px;
    font-size:100px;
    font-weight:700;
    color:rgba(0,0,0,0.05);
    z-index:0;
}
.num-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.num-card h5{
    font-weight:600;
    position:relative;
    z-index:2;
}
.num-card p{
    font-size:14px;
    color:#666;
    position:relative;
    z-index:2;
}
.num-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.num-card:hover .big-num{
    color:#655a0157;
}
/* Partner Section */
.partner-box {
    height: 100%;
    background: #655a011c;
    border-radius: 13px;
    box-shadow: 0 0 10px 0 #80808057;
    padding: 21px;
    border: 1px solid var(--primary);
}
section.partner-section {
    padding: 80px 0;
}
/* ===========================
     Gallery Section 
==============================*/
.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.gallery-section .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-section .sub-heading{
	justify-content: flex-start;
}
.gallery-section .heading {
    text-align: left;
}
.gallery-section .gallery-overlay i {
    font-size: 30px;
    color: #fff;
}
.gallery-section .nav-width {
    display: flex;
    gap: 25px;
    width: 25%;
    background: #655a0145;
    border-radius: 47px;
    padding: 16px 10px;
    align-items: center;
    justify-content: center;
}
.gallery-section .custom-nav {
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: flex-end;
}
.gallery-section .nav-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:0.3s;
	position: relative;
	z-index: 1;
}
 .gallery-section .nav-btn i{
    font-size:14px;
    color:#000 !important;
}
.gallery-section .nav-btn:hover{
    background: var(--secondary) !important;
    transform:translateY(-3px);
}
.gallery-section .nav-btn:hover i{
    color:#fff !important;
}
.gallery-section .custom-nav .swiper-button-next:after,
.gallery-section .custom-nav .swiper-button-prev:after {
    font-size: 16px;
	display: none;
} 
/* ================================
  Contact Page Css
================================ */
.contact-page-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form-control {
   background: #f9f9f9;
   border: 1px solid #ddd;
   color: #000;
}
.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
} 
.info-card {
   padding: 35px 25px;
   background: #fff;
   border-radius: 10px;
   border: 1px solid #ececec;
   box-shadow: 0 4px 15px rgba(0,0,0,0.04);
   transition: 0.3s;
   display: flex;
   gap: 30px;
}
.info-card a{ 
  color: #000 !important;
  text-decoration: none;		
}
.info-card:hover {
   border-color: var(--primary);
   transform: translateY(-4px);
}
.info-card i{
	font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}
.info-card h6 {
   font-size: 18px;
   margin-bottom: 5px;
   font-weight: 600;
}
.map-section iframe {
    width: 100%;
    height: 450px;
	border: 0;
    border-radius: 12px;
	margin-top: 80px;
}
section.contact-inner-section {
    padding: 80px 0;
}
.contact-page-box .heading {
    font-size: 40px;
    margin-bottom: 30px;
}
/*======================
   Transform Page Css
=========================*/
.modal {
  backdrop-filter: blur(5px);
}
.modal-content {
  border-radius: 15px;
  border: none;
  padding: 10px;
}
.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.modal-title {
  font-weight: 600;
  font-size: 22px;
}
.btn-close {
  box-shadow: none;
}
.transform-contain{
	text-align: center;
}
.transfers-section .nav {
    display: flex;
    gap: 20px;
	border: none;
	margin-bottom: 2rem;
}
.transfers-section .nav-item button {
    background: transparent;
    color: var(--primary) !important;
	border: 1px solid var(--primary);
    border-radius: 20px;
}
.transfers-section .nav-tabs .nav-link:hover{
	background: transparent;
    color: var(--primary) !important;
	border: 1px solid var(--primary);
    border-radius: 20px;
}
.transfers-section .nav-tabs .nav-link.active{
	background: var(--primary);
    color: #fff !important;
}
.transform-gallery .custom-nav {
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: center;
    margin-top: 2rem;
}
table td, 
   table th{
    text-align: left;
    line-height: 35px;
   }
   .section-title th {
    background: #655a0124;
	}
table .main-row th{
  background: var(--primary);
  color: #fff;
}
section.transfers-section .heading {
    font-size: 35px;
    text-align: left;
    margin-bottom: 20px;
}
section.transfers-section {
    padding: 80px 0;
}
section.transfers-section h6 {
    font-size: 20px;
	color: var(--secondary);
}
section.transfers-section h6 {
    font-size: 20px;
    color: var(--secondary);
    margin: 15px 0;
}
.check-list a{
	color: var(--primary);
	text-decoration: none;
	font-size: 20px;
}
/*=======================
    Resources Page Css 
===============================*/
section.resource-section .heading {
    text-align: left;
}
section.resource-section a {
    color: var(--primary);
    text-decoration: none;
    font-size: 20px;
}
section.resource-section .check-list {
    margin-left: 30px;
}
section.resource-section .list-heading {
    padding: 15px 0;
    color: var(--primary);
}
section.resource-section {
    padding: 80px 0;
}
.inner-list {
    list-style: none;
    padding: 0;
}
.inner-list li {
    position: relative;
    padding-left: 28px;
   line-height: 40px;
}
.inner-list li::before {
    content: "\f101"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}
/*========================
  Itinerary page Css 
=============================*/
.itinerary-section .page-title {
    font-size: 34px;
    letter-spacing: 2px;
    margin: 35px 0 25px;
    font-weight: 700;
}
.itinerary-section .tour-tabs {
    border: 1px solid #cfcfcf;
    background: #d8dbde;
}
.itinerary-section .tour-tabs .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px dashed #999;
    border-radius: 0;
    background: var(--secondary);
}
.itinerary-section .tour-tabs .nav-link.active {
    background: var(--primary);
	color: #fff;
}
.itinerary-section .section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.itinerary-section .section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 8px;
}
.itinerary-section .map-box {
    margin-top: 25px;
    overflow: hidden;
}
.itinerary-section .sidebar-card {
    background: #655a013d;
    padding: 25px;
}
.itinerary-section .sidebar-card h3 a {
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 20px;
    color: var(--secondary);
    text-decoration: none;
    display: block;
}
.itinerary-section .table-responsive th {
    background: var(--primary);
    color: #fff;
}
ul#includeExcludeTab {
    border: none;
    display: flex;
    gap: 19px;
    margin-bottom: 2rem;
}
.include-section button.nav-link.active {
    background: var(--primary);
    color: #fff !important;
}
section.itinerary-section .heading {
    font-size: 45px;
    text-align: left;
	margin-bottom: 2rem;
}
.include-section .nav-item button {
    border: 1px solid var(--primary);
    border-radius: 20px 0;
    color: var(--primary) !important;
    padding: 7px 30px;
}
@media(max-width:991px) {
   .itinerary-section  .trip-info {
        justify-content: center;
    }
   .itinerary-section  .map-box img {
        height: 300px;
    }
}
.itinerary-section div#itinerary {
    padding: 50px 0;
}
.itinerary-section .itinerary-wrap {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.itinerary-section .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}
.itinerary-section .accordion-button {
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    font-family: none;
}
.itinerary-section .accordion-button:not(.collapsed) {
    color: var(--secondary);
    background-color: #6e42241a;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    z-index: 0;
}
.itinerary-section .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.itinerary-section .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}
.itinerary-section .accordion-body {
    background: #655a0112;
    padding: 25px 30px;
}
.itinerary-section .accordion-body h4 {
    color: var(--primary);
}
.itinerary-section .accordion-body ul {
    margin-bottom: 0;
    padding-left: 20px;
}
.itinerary-section .accordion-body li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 16px;
}
.itinerary-section .accordion-body b {
    color: #000;
}
.itinerary-section .sticky-right {
    position: sticky;
    top: 150px;
    padding-bottom: 50px;
}
section.itinerary-section {
    position: relative;
    padding: 80px 0;
}
.itinerary-section div#overview p {
    text-align: left;
}
a.btn-download {
    background: var(--primary);
    padding: 10px 20px;
    color: #fff;
    margin-top: 20px;
    display: inline-block;
}
.sidebar-card ul li a {
    text-decoration: none;
    color: #000;
}
#cost {
    padding-bottom: 50px;
}
.itinerary-section .cost ul li {
    position: relative;
    padding-left: 30px;
}
.itinerary-section .cost ul li:before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    left: 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);  
}
#overview,
#itinerary,
#dates,
#cost,
div{
    scroll-margin-top: 200px;
}
.itinerary-section .enquiry-form{
	margin-bottom: 40px;	
}
.itinerary-section .gallery-item{
    border-radius:14px;
    overflow:hidden;
}
.itinerary-section .gallery-item img{
    width:100%;
    object-fit:cover;
    transition:.4s ease;
	border-radius: 15px;
	height: 250px !important;
}
.itinerary-section .swiper-button-next,
.itinerary-section .swiper-button-prev{
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border:1px solid rgba(255,255,255,0.3);
    border-radius:50%;
    transition:.3s ease;
}
.itinerary-section .swiper-button-next:hover,
.itinerary-section .swiper-button-prev:hover{
    background:#fff;
}
.itinerary-section .swiper-button-next:after,
.itinerary-section .swiper-button-prev:after{
    font-size:18px !important;
    color:#fff;
    font-weight:bold;
}
.itinerary-section .swiper-button-next:hover:after,
.itinerary-section .swiper-button-prev:hover:after{
    color:var(--primary);
} 
.itinerary-section .map-box svg {
    height: 20px !important;
    width: 20px !important;
    filter: invert(1);
}
/* About Page CSS */
.about-inner .about-img{
	overflow: hidden;
	border-radius: 20px;
}
.about-inner .about-img img {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #8080804f;
    height: 100%;
    object-fit: cover;
	transition: 0.4s ease;
}
.about-inner .about-img img:hover{
	transform: scale(1.1);
	border-radius: 20px;
}
.about-right-contain .heading {
    text-align: left;
    font-size: 40px;
}
.do-box {
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 20px;
	margin-bottom: 20px;
}
.do-img{
	overflow: hidden;
	border-radius: 20px;
}
.do-img img {
    border-radius: 20px;
	transition: 0.4s ease;
}
.do-img img:hover{
	transform: scale(1.1);
	border-radius: 20px;
}
.do-contain .heading {
    text-align: left;
    font-size: 25px;
}
.do-contain .check-list li {
    line-height: 32px;
}
section.do-section {
    padding: 80px 0;
}
/*============================
       Team Page CSS 
=============================*/
.team-overview {
    text-align: center;
    background: #655a011c;
    padding: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
}
.team-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.team-card:hover {
    transform: translateY(-8px);
}
.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
.team-card h5 {
    font-weight: 600;
	padding-bottom: 10px;
}
.team-card-contain {
    padding: 20px 0;
}
.bio-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.bio-panel.active {
    display: flex;
}

.bio-panel > div {
    background: #fff;
    width: 70%;
    height: 500px;
    max-width: 90%;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
    overflow-y: scroll;
}
body.modal-open {
    overflow: hidden;
}
span.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
}
@keyframes fadeIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
.bio-panel .heading {
    font-size: 45px;
}
.bio-panel p {
    line-height: 1.7;
}
.guide-contain .heading {
    text-align: left;
    font-size: 40px;
}
section.guide-section {
    padding: 80px 0;
}
section.team-section .heading {
    margin-bottom: 3rem;
}
/*====================================
      Gallery Page Css
=======================================*/
.gallery-inner-section .nav-tabs {
    justify-content: center;
    border: none;
}
.gallery-inner-section .nav-tabs .nav-link {
    border: none;
    background: #655a013d;
    margin: 5px;
    border-radius: 20px;
    padding: 8px 20px;
    color: #000;
}
.gallery-inner-section .nav-tabs .nav-link.active {
    background: var(--secondary);
    color: #fff;
}
.gallery-inner-section.swiper {
    padding: 30px 10px;
}
.gallery-inner-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.gallery-inner-section .gallery-item img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
    height: 300px;
    object-fit: cover;
}
.gallery-inner-section .gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-inner-section .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    opacity: 0;
    transition: 0.3s;
    text-align: center;
    font-size: 20px;
}
.gallery-inner-section .gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-inner-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 40px;
    color: white;
}
.gallery-inner-section .swiper-button-prev,
.gallery-inner-section .swiper-button-next {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.gallery-inner-section .swiper-button-prev::after,
.gallery-inner-section .swiper-button-next::after {
    font-size: 16px;
    color: #fff;
}
.gallery-inner-section .swiper-button-prev:hover,
.gallery-inner-section .swiper-button-next:hover {
    background: var(--secondary);
}
section.video-inner-section video {
    height: 50vh !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 15px;
}
section.video-inner-section {
    background: #655a011f;
    padding: 80px 0;
    margin-top: 80px;
}
.gallery2 {
    padding-bottom: 80px;
}
/* Excursions Page Css */
.mombasa .heading {
    font-size: 40px;
    text-align: left;
}
section.mombasa-section {
    padding: 80px 0;
}
.excursion-item {
    margin-bottom: 2rem;
}
/*==============================
    Responsive Code 
===================================*/
@media(max-width: 1200px){
	
}
@media(max-width: 1024px){
	.payment-box {
		background: #ffffffc2;
		height: auto;
		padding: 10px;
	}
	.team-card img{
		height: 250px;
	}
}
@media(max-width: 991px){
	.gallery-section .nav-width{
		width: 35%;
	}
}
@media(max-width: 767px){
	section.contact-inner-section {
		padding: 50px 0;
	}
	section.itinerary-section .heading{
		margin-bottom: 1rem;
	}
	section.video-inner-section {
		padding: 50px 0;
		margin-top: 50px;
	}
	.gallery2 {
		padding-bottom: 50px;
	}
	section.mombasa-section {
		padding: 50px 0;
	}
	section{
		padding: 50px 0 0;
	}
	section.resource-section {
		padding: 50px 0;
	}
	.video-section{
		height: 80vh;
	}
	h1.split-text {
		font-size: 45px;
	}
	.about-img img {
		width: 100%;
	}
	img.img-fluid.learn{
		display: none;
	}
	section.safari-section {
		padding: 50px 0;
		margin: 50px 0 0;
	}
	.safari-image img{
		height: auto;
	}
	.tour-section .custom-nav,
	.gallery-section .custom-nav{
		justify-content: flex-start;
	}
	.gallerySwiper{
		margin-top: 1rem;
	}
	.tour-section .tour-img{
		height: auto;
	}
	.heading{
		font-size: 40px;
	}
	section.why-number .heading1{
		font-size: 50px;
	}
	section.partner-section {
		padding: 50px 0;
	}
	section.why-number {
		padding: 50px 0 80px;
		margin: 50px 0 0;
	}
	section.itinerary-section {
		position: relative;
		padding: 50px 0;
	}
	section.transfers-section {
		padding: 50px 0;
	}
	section.do-section {
		padding: 50px 0;
	}
	.itinerary-section .sticky-right{
		padding-bottom: 0;
	}
	section.team-section .heading{
		margin-bottom: 1rem;
	}
	.bio-panel .heading {
		font-size: 30px;
	}
}
@media(max-width: 667px){
	.safari-section .heading {
		text-align: left;
		font-size: 35px;
	}
	.mombasa .heading {
		font-size: 32px;
		text-align: left;
	}
	section.itinerary-section .heading{
		font-size: 35px;
	}
}
@media(max-width: 568px){
	.carousel-controls {
		left: 30px;
		top: 80%;
		flex-direction: row;
	}
	.bio-panel > div{
		width: 90%;
	}
	.slide-content{
		width: 100%;
	}
	#cost {
		padding-bottom: 25px;
	}
	.team-card img {
		height: auto;
	}
}
@media(max-width: 479px){
	.contact-page-box .heading {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.contact-page-box{
		padding: 20px;
	}
	.mombasa .heading {
		font-size: 22px;
		text-align: left;
	}
	.gallery-section .nav-width,
	.nav-width{
		width: 40%;
	}
	.guide-contain .heading {
		text-align: left;
		font-size: 35px;
	}
	.heading {
		font-size: 32px;
	}
	section.why-number .heading1 {
		font-size: 36px;
		margin-bottom: 2rem;
	}
	section.transfers-section .heading{
		font-size: 30px;
	}
	section.resource-section .list-heading {
		padding: 5px 0;
		font-size: 20px;
	}
	section.resource-section .check-list {
		margin-left: 12px;
	}
}
@media(max-width: 414px){
	.safari-section .heading {
		text-align: left;
		font-size: 24px;
	}
	.bio-panel > div{
		padding: 20px;
	}
	.bio-panel .heading {
		font-size: 24px;
	}
	section.itinerary-section .heading {
		font-size: 24px;
	}
}
@media(max-width: 375px){
	.heading {
		font-size: 28px;
	}
	.gallery-section .nav-width, .nav-width {
		width: 55%;
	}
}
@media(max-width: 360px){
	.guide-contain .heading {
		text-align: left;
		font-size: 28px;
	}
}
@media(max-width: 325px){
	.heading {
		font-size: 24px;
	}
}

/* Testimonial */

.testimonial-section {
    padding: 80px 0;
    background: #fff;
}
.testi-card {
    background: #f6f7fc;
    border-radius: 18px;
    padding: 60px 35px 35px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-6px);
}
.quote-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 30px;
    font-size: 22px;
}
.testi-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.testi-user h6 {
    margin: 0;
    font-weight: 600;
    color: var(--secondary);
}
.testi-user small {
    color: #777;
}
.stars i {
    color: var(--primary);
    font-size: 14px;
}

/* Blogs Section */

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px);
}
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}
.blog-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-content h5 a {
    color: #000;
    text-decoration: none;
}
.blog-content p {
    font-size: 14px;
    color: #666;
}
.read-more {
	color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
    transition: 0.3s;
}
section#comments {
    display: none;
}
section.blg-inner
 {
    padding: 80px 0;
}